/** Galerie images de la fiche Haneda WiFi */

.haneda-info-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}

.haneda-info-gallery figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--card-bg, rgba(255, 255, 255, 0.04));
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.haneda-info-gallery img {
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    object-fit: cover;
    display: block;
    background: rgba(255, 255, 255, 0.04);
    cursor: zoom-in;
}

.haneda-info-gallery figcaption {
    padding: 18px;
    display: block;
    line-height: 1.65;
    font-size: 0.98rem;
}

.haneda-info-gallery figcaption strong {
    display: inline;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

@media (max-width: 1100px) {
    .haneda-info-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .haneda-info-gallery {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .haneda-info-gallery img {
        aspect-ratio: 16 / 9;
    }

    .haneda-info-gallery figcaption {
        font-size: 0.96rem;
    }

    .haneda-info-gallery figcaption strong {
        font-size: 1rem;
    }
}
