/*
 * Rede Social 5º Ofício Manaus — versão 1.8
 * Atualizações em texto, uma abaixo da outra.
 */

.social5-feed,
.social5-feed * {
    box-sizing: border-box;
}

.social5-feed {
    --social5-navy: #153d5b;
    --social5-blue: #1f648f;
    --social5-gold: #b79a5d;
    --social5-text: #334a5b;
    --social5-muted: #71808c;
    --social5-line: #dfe7ec;
    --social5-soft: #f5f8fa;
    width: min(900px, calc(100% - 24px));
    margin: 0 auto;
    padding: 42px 0;
    color: var(--social5-text);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.social5-feed__head {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.social5-feed__label {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 6px 11px;
    border: 1px solid rgba(183, 154, 93, .35);
    border-radius: 999px;
    background: #fbf8f2;
    color: #8a6a31;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.social5-feed__head h2 {
    margin: 0;
    color: var(--social5-navy);
    font-size: clamp(27px, 4vw, 40px);
    line-height: 1.13;
    letter-spacing: -.03em;
}

.social5-feed__sub {
    margin: 12px 0 0;
    color: var(--social5-muted);
    font-size: 14px;
    line-height: 1.65;
}

.social5-updates {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.social5-update {
    position: relative;
    width: 100%;
    padding: 24px 26px;
    overflow: hidden;
    border: 1px solid var(--social5-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 9px 28px rgba(21, 61, 91, .055);
}

.social5-update::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--social5-gold), var(--social5-blue));
    content: "";
}

.social5-update__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 10px;
}

.social5-update__meta span {
    color: var(--social5-blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.social5-update__meta time {
    color: var(--social5-muted);
    font-size: 11px;
    white-space: nowrap;
}

.social5-update__title {
    margin: 0;
    color: var(--social5-navy);
    font-size: clamp(18px, 2.6vw, 23px);
    line-height: 1.3;
    letter-spacing: -.015em;
}

.social5-update__content {
    margin-top: 12px;
    color: #435968;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.social5-update__content > :first-child {
    margin-top: 0;
}

.social5-update__content > :last-child {
    margin-bottom: 0;
}

.social5-update__content p {
    margin: 0 0 12px;
}

.social5-update__content ul,
.social5-update__content ol {
    margin: 12px 0;
    padding-left: 22px;
}

.social5-update__content a {
    color: var(--social5-blue);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.social5-empty {
    padding: 28px;
    border: 1px dashed #c8d5dd;
    border-radius: 14px;
    background: var(--social5-soft);
    color: var(--social5-muted);
    text-align: center;
}

@media (max-width: 620px) {
    .social5-feed {
        width: calc(100% - 18px);
        padding: 28px 0;
    }

    .social5-feed__head {
        margin-bottom: 21px;
    }

    .social5-update {
        padding: 20px 18px 20px 21px;
        border-radius: 12px;
    }

    .social5-update__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .social5-update__meta time {
        white-space: normal;
    }

    .social5-update__content {
        font-size: 14.5px;
        line-height: 1.7;
    }
}
