/* ── Rehan Social Gallery ── */

.rsg-gallery {
    width: 100%;
    box-sizing: border-box;
}

.rsg-item {
    position: relative;
}

.rsg-link {
    display: block;
    text-decoration: none;
}

.rsg-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.rsg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rsg-item:hover .rsg-img {
    transform: scale(1.08);
}

.rsg-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.rsg-item:hover .rsg-overlay {
    opacity: 1;
}

.rsg-overlay i {
    color: #ffffff;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
    transform: scale(0.8);
    transition: transform 0.35s ease;
}

.rsg-item:hover .rsg-overlay i {
    transform: scale(1);
}

/* ── Focus accessibility ── */
.rsg-link:focus-visible .rsg-img-wrap {
    outline: 3px solid #D4AF37;
    outline-offset: 2px;
}
