/* Footer Gallery Grid */
.tdiah-gallery-container {
    width: 100%;
    padding: 20px 0;
}

.tdiah-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 columns */
    gap: 15px;
    max-width: 800px; /* Optional: controls maximum width */
    margin: 0 auto;
    padding: 10px;
}

.tdiah-gallery figure {
    margin: 0;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
	 width: 100%;
}

.tdiah-gallery figure:hover {
    transform: scale(1.05);
}

.tdiah-gallery img {
    max-width: 90%; /* Gives a little breathing room */
    height: auto;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tdiah-gallery figcaption {
    margin-top: 6px;
    font-size: 0.75em; /* Reduced from 0.9em */
    color: #666;
    text-transform: lowercase; /* Optional: makes mission names consistent */
}


/* Ensure image links don't break the layout */
.tdiah-gallery .image-location-link {
    display: block;
    width: 100%;
}

.tdiah-gallery .image-location-link img {
    display: block;
    margin: 0 auto;
}

/* Custom hover effect for gallery images */
.tdiah-gallery .image-location-link::after {
    font-size: 12px;
    padding: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.tdiah-gallery figure:hover .image-location-link::after {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .tdiah-gallery {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
    }
}