.expertise-detail_content img {
    max-width: 100%;
    height: auto;
}

.full-width-gallery {
    margin-top: 50px;
}

.full-width-gallery_title {
    margin-bottom: 20px;
}

.full-width-gallery_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.full-width-gallery_item {
    margin: 0;
}

.full-width-gallery_media {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #f4f6f8;
    aspect-ratio: 4 / 3;
}

.full-width-gallery_media img {
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.full-width-gallery_media:hover img {
    transform: scale(1.04);
}

.full-width-gallery_caption {
    margin: 10px 0 0;
    font-size: 14px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

.full-width-gallery_empty {
    margin: 0;
    grid-column: 1 / -1;
    text-align: center;
    color: #6b7280;
}

@media (max-width: 991px) {
    .full-width-gallery_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 575px) {
    .full-width-gallery_grid {
        grid-template-columns: 1fr;
    }
}
