.rl-social-feed {
    --rl-social-ink: #173a3b;
    --rl-social-muted: #657575;
    --rl-social-line: rgba(23, 58, 59, 0.16);
    --rl-social-accent: #168780;
    background: #f4f7f6;
    color: var(--rl-social-ink);
    padding: 72px 0;
    scroll-margin-top: 140px;
}

.rl-social-feed__inner {
    width: min(calc(100% - 40px), 1180px);
    margin: 0 auto;
}

.rl-social-feed__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.rl-social-feed__eyebrow {
    margin: 0 0 8px;
    color: var(--rl-social-accent);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rl-social-feed h2 {
    margin: 0;
    color: var(--rl-social-ink);
    font-family: var(--font-display, inherit);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: 0;
}

.rl-social-feed__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.rl-social-feed__links a,
.rl-social-feed__fallback {
    border: 1px solid var(--rl-social-line);
    border-radius: 6px;
    background: #fff;
    color: var(--rl-social-ink);
    padding: 9px 12px;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.rl-social-feed__links a:hover,
.rl-social-feed__fallback:hover {
    border-color: var(--rl-social-accent);
    color: var(--rl-social-accent);
}

.rl-social-feed__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.rl-social-feed__item {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 6px;
    background: #dfe8e7;
}

.rl-social-feed__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.rl-social-feed__item:hover img {
    transform: scale(1.035);
}

.rl-social-feed__item span {
    position: absolute;
    right: 8px;
    top: 8px;
    border-radius: 4px;
    background: rgba(17, 24, 24, 0.78);
    color: #fff;
    padding: 4px 6px;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.rl-social-feed__status {
    grid-column: 1 / -1;
    min-height: 120px;
    display: grid;
    place-items: center;
    border-top: 1px solid var(--rl-social-line);
    border-bottom: 1px solid var(--rl-social-line);
    color: var(--rl-social-muted);
    text-align: center;
}

@media (max-width: 760px) {
    .rl-social-feed {
        padding: 54px 0;
    }

    .rl-social-feed__head {
        align-items: flex-start;
        flex-direction: column;
    }

    .rl-social-feed__links {
        justify-content: flex-start;
    }

    .rl-social-feed__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
}
