.gnc-news,
.gnc-article,
.gnc-ticker {
    box-sizing: border-box;
    color: #292d33;
    font-family: 'Roboto', Arial, sans-serif;
}

.gnc-news *,
.gnc-article *,
.gnc-ticker * {
    box-sizing: border-box;
}

.gnc-news {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 28px 0 40px;
}

.gnc-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid #d7d9dc;
    margin-bottom: 22px;
    padding-bottom: 12px;
}

.gnc-kicker,
.gnc-category,
.gnc-article-category {
    color: #289DCC;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-decoration: none;
    text-transform: uppercase;
}

.gnc-kicker {
    margin: 0 0 4px;
}

.gnc-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 900;
    line-height: 1;
}

.gnc-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    max-width: 70%;
}

.gnc-tab {
    min-width: max-content;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: #50555c;
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    padding: 9px 10px;
}

.gnc-tab.is-active {
    border-color: #278c51;
    color: #1f7b45;
}

.gnc-panel {
    display: none;
}

.gnc-panel.is-active {
    display: block;
}

.gnc-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.05fr) minmax(300px, 1fr);
    gap: 20px;
}

.gnc-primary-column,
.gnc-side-column {
    display: grid;
    align-content: start;
    gap: 20px;
}

.gnc-story {
    min-width: 0;
    border-bottom: 1px solid #d7d9dc;
    padding-bottom: 18px;
}

.gnc-story-image {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #e8eeea;
}

.gnc-story.is-main .gnc-story-image {
    aspect-ratio: 16 / 6.2;
}

.gnc-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.gnc-story-image:hover img {
    transform: scale(1.02);
}

.gnc-story-image.has-no-image {
    display: grid;
    place-items: center;
    color: #6b7e73;
    font-weight: 900;
    text-decoration: none;
}

.gnc-story-body {
    min-width: 0;
    padding-top: 10px;
}

.gnc-story h3,
.gnc-related-side h3,
.gnc-related-card h3 {
    margin: 0;
    letter-spacing: 0;
}

.gnc-story h3 a,
.gnc-related-side h3 a,
.gnc-related-card h3 a {
    color: #30343a;
    text-decoration: none;
}

.gnc-story h3 a:hover,
.gnc-related-side h3 a:hover,
.gnc-related-card h3 a:hover {
    color: #289DCC;
}

.gnc-story.is-main h3 {
    font-size: clamp(30px, 3.7vw, 48px);
    line-height: 1.02;
}

.gnc-story.is-visual h3 {
    font-size: 24px;
    line-height: 1.08;
}

.gnc-story.is-horizontal,
.gnc-story.is-horizontal-large {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 14px;
}

.gnc-story.is-horizontal-large {
    grid-template-columns: minmax(180px, 245px) minmax(0, 1fr);
}

.gnc-story.is-horizontal .gnc-story-body,
.gnc-story.is-horizontal-large .gnc-story-body {
    padding-top: 0;
}

.gnc-story.is-horizontal h3 {
    font-size: 20px;
    line-height: 1.1;
}

.gnc-story.is-horizontal-large h3 {
    font-size: clamp(24px, 2.5vw, 34px);
    line-height: 1.08;
}

.gnc-byline {
    margin: 10px 0 0;
    color: #666b72;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.gnc-excerpt {
    margin: 12px 0 0;
    color: #50555c;
    font-size: 15px;
    line-height: 1.45;
}

.gnc-empty {
    border: 1px dashed #b9c8c0;
    border-radius: 8px;
    padding: 18px;
}

/* Top news ticker */
.gnc-ticker {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    width: 100%;
    min-height: 40px;
    overflow: hidden;
    border-bottom: 1px solid #d7d9dc;
    background: #fff;
}

.gnc-ticker-label {
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 2;
    background: #F402C8;
    color: #fff;
    font-size: 12px;
    padding: 0 14px;
    text-transform: uppercase;
    white-space: nowrap;
}

.gnc-ticker-window {
    min-width: 0;
    overflow: hidden;
}

.gnc-ticker-track {
    display: flex;
    width: max-content;
    animation: gnc-ticker-scroll var(--gnc-ticker-speed, 36s) linear infinite;
}

.gnc-ticker:hover .gnc-ticker-track,
.gnc-ticker:focus-within .gnc-ticker-track {
    animation-play-state: paused;
}

.gnc-ticker-set {
    display: flex;
    align-items: center;
}

.gnc-ticker-set a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    color: #30333a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.gnc-ticker-set a::after {
    width: 5px;
    height: 5px;
    margin: 0 18px;
    border-radius: 50%;
    background: #278c51;
    content: '';
}

.gnc-ticker-set time {
    margin-right: 8px;
    color: #278c51;
    font-size: 11px;
    font-weight: 900;
}

@keyframes gnc-ticker-scroll {
    to {
        transform: translateX(-50%);
    }
}

/* Individual article */
.gnc-template-main {
    width: 100%;
}

.gnc-article {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 64px;
}

.gnc-article-header {
    max-width: 1020px;
    margin: 0 auto 26px;
}

.gnc-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 34px;
    color: #777c82;
    font-size: 12px;
}

.gnc-breadcrumbs a {
    color: #535960;
    text-decoration: none;
}

.gnc-breadcrumbs a:hover {
    color: #1f7b45;
}

.gnc-article-header h1 {
    max-width: 980px;
    margin: 10px 0 0;
    color: #24272d;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

.gnc-article-deck {
    max-width: 920px;
    margin: 18px 0 0;
    color: #42474e;
    font-size: clamp(19px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.4;
}

.gnc-article-meta {
    margin-top: 24px;
}

.gnc-article-meta a,
.gnc-article-meta span {
    display: block;
}

.gnc-article-meta a {
    color: #289DCC;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.gnc-article-meta span {
    margin-top: 6px;
    color: #555b62;
    font-size: 12px;
}

.gnc-share-inline,
.gnc-share-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.gnc-share-inline a,
.gnc-share-footer a {
    border: 1px solid #cfd3d6;
    border-radius: 50px;
    color: #3c4248;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 11px;
    text-decoration: none;
}

.gnc-share-inline a:hover,
.gnc-share-footer a:hover {
    border-color: #278c51;
    color: #1f7b45;
}

.gnc-article-hero {
    max-width: 1020px;
    margin: 0 auto 34px;
}

.gnc-article-hero img {
    display: block;
    width: 100%;
    max-height: 650px;
    object-fit: cover;
}

.gnc-article-hero figcaption {
    margin-top: 8px;
    color: #777c82;
    font-size: 12px;
}

.gnc-article-layout {
    display: grid;
    grid-template-columns: minmax(0, 700px) minmax(240px, 300px);
    justify-content: center;
    gap: 48px;
    align-items: start;
}

.gnc-article-content {
    min-width: 0;
    color: #30343a;
    font-size: 17px;
    line-height: 1.72;
}

.gnc-article-content > :first-child {
    margin-top: 0;
}

.gnc-article-content h2,
.gnc-article-content h3 {
    margin: 1.6em 0 .55em;
    color: #24272d;
    line-height: 1.15;
}

.gnc-article-content img,
.gnc-article-content iframe,
.gnc-article-content video {
    max-width: 100%;
}

.gnc-article-content blockquote {
    border-left: 5px solid #278c51;
    margin: 1.5em 0;
    padding: 4px 0 4px 22px;
    color: #3e5146;
    font-size: 22px;
    font-weight: 700;
}

.gnc-related-side {
    border-top: 5px solid #289DCC;
    background: #f4f7f5;
    padding: 16px;
}

.gnc-article-topics {
    border-top: 1px solid #d7d9dc;
    margin-top: 34px;
    padding-top: 18px;
}

.gnc-article-topics > strong,
.gnc-share-footer > strong {
    display: block;
    width: 100%;
    color: #3d4248;
    font-size: 12px;
    text-transform: uppercase;
}

.gnc-article-topics > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.gnc-article-topics a {
    border-bottom: 2px solid #289DCC;
    color: #30343a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.gnc-share-footer {
    border-top: 1px solid #d7d9dc;
    margin-top: 24px;
    padding-top: 18px;
}

.gnc-related-side > h2,
.gnc-related-bottom > h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.gnc-related-compact {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid #d7ded9;
    padding: 12px 0;
}

.gnc-related-compact img {
    width: 82px;
    height: 66px;
    object-fit: cover;
}

.gnc-related-compact h3 {
    font-size: 14px;
    line-height: 1.2;
}

.gnc-related-bottom {
    border-top: 1px solid #d7d9dc;
    margin-top: 48px;
    padding-top: 26px;
}

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

.gnc-related-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gnc-related-card h3 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.2;
}

.gnc-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #d7d9dc;
    margin-top: 40px;
    padding-top: 20px;
}

.gnc-post-nav > div:last-child {
    text-align: right;
}

.gnc-post-nav a {
    color: #30343a;
    font-weight: 800;
    text-decoration: none;
}

.gnc-post-nav span {
    display: block;
    margin-bottom: 4px;
    color: #289DCC;
    font-size: 11px;
    text-transform: uppercase;
}

.gnc-comments {
    max-width: 720px;
    margin: 42px auto 0;
}

/* Category archive */
.gnc-category-archive {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 64px;
    color: #292d33;
    font-family: 'Roboto', Arial, sans-serif;
}

.gnc-category-header {
    border-bottom: 1px solid #d7d9dc;
    margin-bottom: 8px;
    padding-bottom: 24px;
}

.gnc-category-header .gnc-breadcrumbs {
    margin-bottom: 30px;
}

.gnc-category-header h1 {
    margin: 6px 0 0;
    color: #24272d;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.gnc-category-description {
    max-width: 760px;
    margin-top: 16px;
    color: #575d64;
    font-size: 17px;
    line-height: 1.5;
}

.gnc-category-description p {
    margin: 0;
}

.gnc-category-feed {
    display: grid;
}

.gnc-archive-story {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 24px;
    border-bottom: 1px solid #d7d9dc;
    padding: 24px 0;
}

.gnc-archive-story.is-featured {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    padding: 30px 0;
}

.gnc-archive-image {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #e8eeea;
}

.gnc-archive-story.is-featured .gnc-archive-image {
    aspect-ratio: 16 / 9;
}

.gnc-archive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.gnc-archive-image:hover img {
    transform: scale(1.02);
}

.gnc-archive-body {
    align-self: center;
    min-width: 0;
}

.gnc-archive-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.gnc-archive-meta span {
    color: #289DCC;
}

.gnc-archive-meta time {
    color: #70757c;
}

.gnc-archive-story h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.08;
    letter-spacing: 0;
}

.gnc-archive-story.is-featured h2 {
    font-size: clamp(31px, 4vw, 46px);
}

.gnc-archive-story h2 a {
    color: #292d33;
    text-decoration: none;
}

.gnc-archive-story h2 a:hover {
    color: #1f7b45;
}

.gnc-archive-story p {
    margin: 12px 0 0;
    color: #555b62;
    font-size: 15px;
    line-height: 1.5;
}

.gnc-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 32px;
}

.gnc-pagination .page-numbers {
    display: inline-flex;
    min-width: 40px;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d7d9dc;
    border-radius: 5px;
    color: #30343a;
    font-size: 13px;
    font-weight: 800;
    padding: 8px 12px;
    text-decoration: none;
}

.gnc-pagination .page-numbers.current,
.gnc-pagination .page-numbers:hover {
    border-color: #278c51;
    background: #278c51;
    color: #fff;
}

@media (max-width: 980px) {
    .gnc-article-layout {
        grid-template-columns: minmax(0, 760px);
    }

    .gnc-related-side {
        display: none;
    }

    .gnc-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .gnc-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .gnc-tabs {
        width: 100%;
        max-width: 100%;
    }

    .gnc-layout,
    .gnc-article-layout {
        grid-template-columns: 1fr;
    }

    .gnc-story.is-main .gnc-story-image {
        aspect-ratio: 16 / 9;
    }

    .gnc-archive-story,
    .gnc-archive-story.is-featured {
        grid-template-columns: 220px minmax(0, 1fr);
    }

}

@media (max-width: 540px) {
    .gnc-ticker {
        grid-template-columns: 1fr;
    }

    .gnc-ticker-label {
        min-height: 30px;
    }

    .gnc-story.is-horizontal,
    .gnc-story.is-horizontal-large {
        grid-template-columns: 112px minmax(0, 1fr);
    }

    .gnc-story.is-horizontal h3,
    .gnc-story.is-horizontal-large h3 {
        font-size: 18px;
    }

    .gnc-story.is-horizontal-large .gnc-excerpt {
        display: none;
    }

    .gnc-article {
        width: min(100% - 22px, 1240px);
        padding-top: 28px;
    }

    .gnc-article-header h1 {
        font-size: 37px;
    }

    .gnc-article-content {
        font-size: 17px;
    }

    .gnc-related-grid,
    .gnc-post-nav {
        grid-template-columns: 1fr;
    }

    .gnc-category-archive {
        width: min(100% - 22px, 1120px);
        padding-top: 26px;
    }

    .gnc-category-header h1 {
        font-size: 42px;
    }

    .gnc-archive-story,
    .gnc-archive-story.is-featured {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gnc-archive-story:not(.is-featured) {
        grid-template-columns: 120px minmax(0, 1fr);
    }

    .gnc-archive-story h2,
    .gnc-archive-story.is-featured h2 {
        font-size: 23px;
    }

    .gnc-archive-story:not(.is-featured) p {
        display: none;
    }

    .gnc-post-nav > div:last-child {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gnc-ticker-track {
        animation: none;
    }

    .gnc-ticker-window {
        overflow-x: auto;
    }
}
