/* Shared landing, article and pagination styles for the news section. */
:root {
    --news-ink: #211e24;
    --news-muted: #736b77;
    --news-line: #ded8e1;
    --news-soft: #f8f5fa;
    --news-accent: #64119a;
    --news-accent-dark: #4a0d72;
}

.news-index,
.news-article-shell {
    color: var(--news-ink);
    font-family: GillSansC, Arial, sans-serif;
}

.news-index {
    padding: 22px 0 64px;
}

.news-kicker {
    margin: 0 0 12px;
    color: var(--news-accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1.3;
    text-transform: uppercase;
}

.news-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 44px;
    align-items: end;
    padding: 24px 0 34px;
    border-bottom: 1px solid var(--news-line);
}

.news-hero__content {
    max-width: 760px;
}

.news-hero h1 {
    margin: 0;
    color: var(--news-ink);
    font-family: GillSansC, Arial, sans-serif;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.08;
}

.news-hero__lead {
    max-width: 680px;
    margin: 16px 0 0;
    color: var(--news-muted);
    font-family: GillSansLightC, GillSansC, Arial, sans-serif;
    font-size: 19px;
    line-height: 1.5;
}

.news-hero__stat {
    padding-left: 20px;
    border-left: 2px solid var(--news-accent);
}

.news-hero__stat strong {
    display: block;
    color: var(--news-ink);
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
}

.news-hero__stat span {
    display: block;
    margin-top: 7px;
    color: var(--news-muted);
    font-size: 11px;
    letter-spacing: .06em;
    line-height: 1.35;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 28px 32px 30px 0;
    border-bottom: 1px solid var(--news-line);
}

.news-card:nth-child(even) {
    padding-right: 0;
    padding-left: 32px;
    border-left: 1px solid var(--news-line);
}

.news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    align-items: center;
    margin-bottom: 14px;
    color: var(--news-muted);
    font-size: 12px;
    letter-spacing: .045em;
    line-height: 1.35;
    text-transform: uppercase;
}

.news-card__meta > * + *::before {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 10px 2px 0;
    border-radius: 50%;
    background: var(--news-accent);
    content: "";
}

.news-card__meta a {
    color: var(--news-muted);
    text-decoration: none;
}

.news-card__meta a:hover {
    color: var(--news-accent);
}

.news-card h3 {
    margin: 0;
    font-family: GillSansC, Arial, sans-serif;
    font-size: 27px;
    font-weight: 400;
    letter-spacing: -.018em;
    line-height: 1.18;
}

.news-card h3 a {
    color: var(--news-ink);
    text-decoration: none;
}

.news-card h3 a:hover {
    color: var(--news-accent-dark);
}

.news-card__excerpt {
    margin: 15px 0 20px;
    color: var(--news-muted);
    font-family: GillSansLightC, GillSansC, Arial, sans-serif;
    font-size: 17px;
    line-height: 1.5;
}

.news-card__more {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 11px;
    margin-top: auto;
    color: var(--news-accent-dark);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .025em;
    text-decoration: none;
}

.news-card__more span {
    transition: transform .2s ease;
}

.news-card__more:hover {
    color: var(--news-accent);
    text-decoration: none;
}

.news-card__more:hover span {
    transform: translateX(3px);
}

.news-empty {
    padding: 50px 0;
    border-bottom: 1px solid var(--news-line);
    text-align: center;
}

.news-empty h2 {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 400;
}

.news-empty p {
    margin: 0;
    color: var(--news-muted);
}

.news-pagination {
    display: flex;
    justify-content: center;
    padding-top: 34px;
}

.news-pagination nav {
    margin: 0;
}

.news-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.news-pagination .pagination li {
    min-width: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    list-style: none;
    text-decoration: none !important;
}

.news-pagination .pagination li a,
.news-pagination .pagination li span {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: 1px solid var(--news-line) !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: var(--news-ink) !important;
    font-family: GillSansC, Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: none !important;
    transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}

.news-pagination .pagination li:not(.active) a:hover,
.news-pagination .pagination li:not(.active) span:hover {
    border-color: var(--news-accent) !important;
    background: var(--news-soft) !important;
    color: var(--news-accent) !important;
}

.news-pagination .pagination li.active a,
.news-pagination .pagination li.active span {
    border-color: var(--news-accent) !important;
    background: var(--news-accent) !important;
    color: #fff !important;
    cursor: default;
}

.news-pagination .pagination li a:focus-visible {
    outline: 2px solid var(--news-accent);
    outline-offset: 3px;
}

.news-pagination .pagination li.disabled a,
.news-pagination .pagination li.disabled span {
    border-color: var(--news-line) !important;
    color: #b5afb7 !important;
    pointer-events: none;
}

.news-article-shell {
    width: 100%;
    padding: 18px 0 64px;
}

.news-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 28px;
    color: var(--news-muted);
    font-size: 13px;
}

.news-breadcrumbs a {
    color: var(--news-muted);
    text-decoration: none;
}

.news-breadcrumbs a:hover {
    color: var(--news-accent);
}

.news-article__header {
    padding-bottom: 26px;
    border-bottom: 1px solid var(--news-line);
}

.news-article__header h1 {
    margin: 0;
    color: var(--news-ink);
    font-family: GillSansC, Arial, sans-serif;
    font-size: 42px;
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: 1.12;
}

.news-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
    margin-top: 20px;
    color: var(--news-muted);
    font-size: 13px;
    letter-spacing: .025em;
}

.news-article__meta-divider {
    width: 22px;
    height: 1px;
    background: var(--news-line);
}

.news-article__meta a {
    color: var(--news-accent-dark);
    text-decoration: none;
}

.news-article__meta a:hover {
    color: var(--news-accent);
}

.news-article__body {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 32px 0 24px;
    color: #38323b;
    font-family: GillSansLightC, GillSansC, Arial, sans-serif;
    font-size: 19px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

.news-article__body > *:first-child {
    margin-top: 0;
}

.news-article__body > *:last-child {
    margin-bottom: 0;
}

.news-article__body p {
    margin: 0 0 1.15em;
}

.news-article__body h2,
.news-article__body h3,
.news-article__body h4 {
    color: var(--news-ink);
    font-family: GillSansC, Arial, sans-serif;
    font-weight: 400;
    letter-spacing: -.015em;
    line-height: 1.22;
}

.news-article__body h2 {
    margin: 1.45em 0 .55em;
    font-size: 30px;
}

.news-article__body h3 {
    margin: 1.35em 0 .5em;
    font-size: 25px;
}

.news-article__body h4 {
    margin: 1.25em 0 .45em;
    font-size: 21px;
}

.news-article__body a {
    color: var(--news-accent-dark);
    text-decoration-color: rgba(100, 17, 154, .4);
    text-underline-offset: 3px;
}

.news-article__body ul,
.news-article__body ol {
    margin: 0 0 1.25em;
    padding-left: 1.4em;
}

.news-article__body li {
    margin-bottom: .4em;
}

.news-article__body blockquote {
    margin: 1.5em 0;
    padding: 4px 0 4px 22px;
    border-left: 3px solid var(--news-accent);
    color: var(--news-ink);
    font-family: GillSansC, Arial, sans-serif;
    font-size: 22px;
    line-height: 1.45;
}

.news-article__body img,
.news-article__body figure,
.news-article__body video,
.news-article__body iframe {
    max-width: 100%;
}

.news-article__body img {
    height: auto;
}

.news-article__body figure {
    margin: 1.5em 0;
}

.news-article__body figcaption {
    margin-top: 8px;
    color: var(--news-muted);
    font-size: 13px;
    line-height: 1.4;
}

.news-article__body table {
    display: block;
    width: 100%;
    margin: 1.5em 0;
    border-collapse: collapse;
    overflow-x: auto;
    font-size: 16px;
    line-height: 1.45;
}

.news-article__body th,
.news-article__body td {
    min-width: 140px;
    padding: 10px 12px;
    border: 1px solid var(--news-line);
    text-align: left;
    vertical-align: top;
}

.news-article__body th {
    background: var(--news-soft);
    font-family: GillSansC, Arial, sans-serif;
}

.news-source {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--news-line);
    border-bottom: 1px solid var(--news-line);
}

.news-source__label {
    display: block;
    margin-bottom: 4px;
    color: var(--news-muted);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.news-source strong {
    font-size: 17px;
    font-weight: 400;
}

.news-source > a {
    flex: 0 0 auto;
    color: var(--news-accent-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.news-source > a:hover {
    color: var(--news-accent);
}

.news-comments {
    width: 100%;
    margin-top: 52px;
    padding-top: 30px;
    border-top: 1px solid var(--news-line);
}

.news-comments__heading {
    margin-bottom: 22px;
}

.news-comments__heading .news-kicker {
    margin-bottom: 7px;
}

.news-comments__heading h2 {
    margin: 0;
    color: var(--news-ink);
    font-size: 29px;
    font-weight: 400;
}

.news-comments .comment-form,
.news-comments .comment-section {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.news-comments .form-control {
    border: 1px solid var(--news-line);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    font-family: GillSansC, Arial, sans-serif;
}

.news-comments textarea.form-control {
    min-height: 112px;
    padding: 14px;
    resize: vertical;
}

.news-comments .btn-dark {
    min-height: 42px;
    padding: 9px 20px;
    border: 1px solid var(--news-accent);
    border-radius: 0;
    background: var(--news-accent);
}

.news-comments .comment-list-loop {
    padding: 18px 0;
    border-color: var(--news-line);
}

.news-comments .profile-title {
    margin-top: 28px;
    font-size: 22px;
}

.news-publishing-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding: 28px 0;
    border-top: 2px solid var(--news-accent);
    border-bottom: 1px solid var(--news-line);
}

.news-publishing-note .news-kicker {
    margin-bottom: 8px;
}

.news-publishing-note h2 {
    max-width: 640px;
    margin: 0;
    color: var(--news-ink);
    font-size: 29px;
    font-weight: 400;
    line-height: 1.2;
}

.news-publishing-note > a {
    flex: 0 0 auto;
    color: var(--news-accent-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.news-card a:focus-visible,
.news-breadcrumbs a:focus-visible,
.news-article a:focus-visible,
.news-publishing-note a:focus-visible {
    outline: 2px solid var(--news-accent);
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .news-index {
        padding-top: 8px;
    }

    .news-hero {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 18px 0 26px;
    }

    .news-hero h1 {
        font-size: 34px;
    }

    .news-hero__lead {
        font-size: 17px;
    }

    .news-hero__stat {
        max-width: 160px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card,
    .news-card:nth-child(even) {
        padding: 24px 0 26px;
        border-left: 0;
    }

    .news-card h3 {
        font-size: 24px;
    }

    .news-card__excerpt {
        font-size: 16px;
    }

    .news-article-shell {
        padding-top: 8px;
    }

    .news-breadcrumbs {
        margin-bottom: 22px;
    }

    .news-article__header {
        padding-bottom: 22px;
    }

    .news-article__header h1 {
        font-size: 32px;
        line-height: 1.15;
    }

    .news-article__meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
        margin-top: 17px;
    }

    .news-article__meta-divider {
        display: none;
    }

    .news-article__body {
        padding-top: 26px;
        font-size: 17px;
        line-height: 1.62;
    }

    .news-article__body h2 {
        font-size: 27px;
    }

    .news-article__body h3 {
        font-size: 23px;
    }

    .news-article__body blockquote {
        padding-left: 17px;
        font-size: 20px;
    }

    .news-source {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .news-comments {
        margin-top: 42px;
    }

    .news-publishing-note {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 42px;
    }

    .news-publishing-note h2 {
        font-size: 26px;
    }
}
