/* UI 01T — Social / Editorial Gallery real-photo fix */

.ds7-social__gallery {
    gap: 8px;
}

.ds7-social__tile {
    aspect-ratio: 4 / 5;
    background: #e7dfd5;
    overflow: hidden;
}

.ds7-social__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: none;
}

.ds7-social__tile:hover img {
    transform: scale(1.018);
}

.ds7-social__tile::after {
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, .38) 0%,
        rgba(0, 0, 0, .08) 45%,
        transparent 72%
    );
}

.ds7-social__tile span {
    bottom: 12px;
    color: #fff;
    font-size: 8px;
    line-height: 1.3;
}

@media (max-width: 700px) {
    .ds7-social__gallery {
        gap: 6px;
    }

    .ds7-social__tile {
        aspect-ratio: 3 / 4;
    }
}
