@charset "UTF-8";

.social-page {
    max-width: 1200px;
    margin: 28px auto 48px;
    padding: 0 20px;
}

.social-page-hero {
    padding: 28px 30px;
    color: var(--bright-white);
    background: linear-gradient(120deg, var(--navy), #064a7e);
    border-radius: 6px;
    border-bottom: 4px solid var(--lake-blue);
}

.social-page-kicker {
    display: block;
    margin-bottom: 7px;
    color: var(--lake-blue);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.social-page-hero h1 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: 1px;
}

.social-page-hero p {
    max-width: 640px;
    margin: 8px 0 0;
    color: #e9f5fd;
}

/* 

.social-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 22px 0;
}

.social-filter {
    padding: 8px 12px;
    border: 1px solid #d5dce1;
    border-radius: 4px;
    background: var(--bright-white);
    color: var(--navy);
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.social-filter:hover,
.social-filter.is-active {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--bright-white);
}
*/

/* ========================================================================================== SOCIAL FILTER NAV */

.social-filter-bar {
    margin-bottom: 20px;
}

.social-filter.is-active {
    color: var(--lake-blue);
    text-decoration: underline;
}


.social-feed-status {
    margin: -8px 0 16px;
    color: var(--industrial-gray);
    font-size: 0.8rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.social-grid .social-post {
    display: flex;
    flex-direction: column;
    min-height: 190px;
    padding: 18px;
    background: var(--bright-white);
    border: 1px solid #dce2e5;
    border-radius: 6px;
    box-shadow: 0 2px 7px rgba(0, 40, 85, 0.06);
}

.social-grid .social-post.is-official {
    border-top: 4px solid var(--lake-blue);
    background: linear-gradient(180deg, #f3faff 0, var(--bright-white) 58%);
}

.social-grid .social-post.is-team {
    border-top: 4px solid var(--navy);
}

.social-post .social-post-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 8px 0 14px;
}

.social-account {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-avatar {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--soft-gray, #f3f3f3);
    color: var(--navy);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.is-official .social-avatar {
    background: var(--lake-blue);
    color: var(--bright-white);
}

.is-team .social-avatar {
    background: var(--navy);
    color: var(--bright-white);
}

.social-account-name {
    display: flex;
    gap: 5px;
    align-items: baseline;
    min-width: 0;
}

.social-account-name strong {
    color: var(--navy);
    font-size: 0.9rem;
}

.social-handle,
.social-grid .social-bureau,
.social-grid .social-time {
    color: var(--industrial-gray);
    font-size: 0.72rem;
}

.social-grid .social-bureau {
    margin: 1px 0 0 48px;
}

.social-grid .social-type {
    margin-top: 18px;
    color: var(--lake-blue);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.55px;
}

.social-grid .social-post p {
    margin: 8px 0 16px;
    color: #41494e;
    font-size: 0.92rem;
    line-height: 1.5;
}

.social-grid .social-time {
    margin-top: auto;
}

.social-article-link {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
}

.social-article-link:hover { color: #176da8; }

.social-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 28px;
    border: 1px dashed #c9d1d5;
    border-radius: 6px;
    color: var(--industrial-gray);
    text-align: center;
}

@media (max-width: 900px) {
    .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .social-page { margin-top: 18px; padding: 0 15px; }
    .social-page-hero { padding: 22px 20px; }
    .social-filter { padding: 8px 10px; font-size: 0.68rem; }
    .social-grid { grid-template-columns: 1fr; gap: 14px; }
    .social-grid .social-post { min-height: 0; }
}

/* Shared social details, including the compact homepage feed. */
.social-post { min-width: 0; overflow-wrap: anywhere; }
.social-avatar { position: relative; overflow: hidden; }
.social-avatar img {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; background: var(--bright-white, #fff);
}
.is-team > .social-account .social-avatar img,
.is-official > .social-account .social-avatar img {
    object-fit: contain; padding: 3px; box-sizing: border-box;
}
.social-account-name { flex-wrap: wrap; column-gap: 5px; row-gap: 2px; }
.social-account-name .social-handle { flex-basis: 100%; }
.social-account-badge {
    font-size: 0.55rem; font-weight: 700; text-transform: uppercase;
    color: var(--navy); background: #e7f3fb; border-radius: 3px; padding: 2px 4px;
}
.social-engagement {
    display: flex; gap: 20px; margin-top: 9px; color: #667680;
    font-size: 0.72rem; font-variant-numeric: tabular-nums;
}
.social-quote {
    margin: 0 0 14px; padding: 11px; border: 1px solid #d5dfe6;
    border-radius: 5px; background: #f7fafc;
}
.social-quote .social-avatar { width: 28px; height: 28px; flex-basis: 28px; font-size: 0.55rem; }
.social-quote .social-account-name strong { font-size: 0.76rem; }
.social-quote .social-handle { font-size: 0.65rem; }
.social-post .social-quote p { font-size: 0.78rem; margin: 8px 0; line-height: 1.45; }
.social-widget .social-post.is-official { border-left: 3px solid var(--lake-blue); background: #f3faff; }
.social-widget .social-post.is-team { border-left: 3px solid var(--navy); }
.social-widget .social-account-name strong { font-size: 0.8rem; }
.social-widget .social-avatar { width: 32px; height: 32px; flex-basis: 32px; }
.social-widget .social-bureau { margin-left: 42px; }
.social-widget .social-type { margin-top: 10px; }
.social-widget .social-quote { margin-top: 9px; padding: 9px; }
