:root {
    --gbn-green: #073f2c;
    --gbn-green-dark: #032e20;
    --gbn-ink: #171b18;
    --gbn-muted: #626761;
    --gbn-line: #dedbd2;
    --gbn-paper: #f7f4ee;
    --gbn-card: #fffdf9;
    --gbn-sand: #ece6dc;
    --gbn-radius: 12px;
    --gbn-shadow: 0 10px 30px rgba(29, 34, 30, 0.08);
}

.gbn-newsroom,
.gbn-newsroom * {
    box-sizing: border-box;
}

.gbn-newsroom {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--gbn-paper);
    color: var(--gbn-ink);
    padding: clamp(28px, 4vw, 64px) 0 clamp(56px, 7vw, 96px);
    font-family: inherit;
}

.gbn-shell {
    width: min(1440px, calc(100% - 40px));
    margin: 0 auto;
}

.gbn-page-intro {
    max-width: 850px;
    margin-bottom: 30px;
}

.gbn-breadcrumb {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    color: #7b7f7a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gbn-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.gbn-page-intro h1,
.gbn-featured h2,
.gbn-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--gbn-ink);
}

.gbn-page-intro h1 {
    margin: 0 0 12px;
    font-size: clamp(42px, 5.2vw, 72px);
    line-height: .98;
    font-weight: 500;
    letter-spacing: -.035em;
}

.gbn-page-intro p {
    max-width: 820px;
    margin: 0;
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
    color: var(--gbn-muted);
}

.gbn-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
    gap: clamp(22px, 3vw, 38px);
    align-items: start;
}

.gbn-layout--no-sidebar {
    grid-template-columns: 1fr;
}

.gbn-featured {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    min-height: 420px;
    margin-bottom: 24px;
    background: var(--gbn-card);
    border: 1px solid var(--gbn-line);
    border-radius: var(--gbn-radius);
    overflow: hidden;
    box-shadow: var(--gbn-shadow);
}

.gbn-featured__media,
.gbn-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #d8ded8;
}

.gbn-featured__media img,
.gbn-card__media img,
.gbn-latest-item__image img,
.gbn-image-placeholder {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gbn-featured__media img,
.gbn-card__media img {
    transition: transform .45s ease;
}

.gbn-featured:hover .gbn-featured__media img,
.gbn-card:hover .gbn-card__media img {
    transform: scale(1.035);
}

.gbn-featured__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 54px);
}

.gbn-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gbn-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.gbn-featured h2 {
    margin: 0 0 18px;
    font-size: clamp(31px, 3vw, 47px);
    line-height: 1.04;
    font-weight: 500;
    letter-spacing: -.025em;
}

.gbn-featured h2 a,
.gbn-card h3 a,
.gbn-latest-item h3 a,
.gbn-popular-list a {
    color: inherit;
    text-decoration: none;
}

.gbn-featured__content > p {
    margin: 0 0 28px;
    color: var(--gbn-muted);
    font-size: 16px;
    line-height: 1.65;
}

.gbn-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: auto;
}

.gbn-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: #6c716d;
    font-size: 12px;
}

.gbn-meta__dot {
    opacity: .55;
}

.gbn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 46px;
    padding: 0 20px;
    border-radius: 6px;
    background: var(--gbn-green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background .2s ease, transform .2s ease;
}

.gbn-button:hover {
    background: var(--gbn-green-dark);
    color: #fff;
    transform: translateY(-1px);
}

.gbn-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--gbn-green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

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

.gbn-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    background: var(--gbn-card);
    border: 1px solid var(--gbn-line);
    border-radius: var(--gbn-radius);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gbn-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--gbn-shadow);
}

.gbn-card--compact {
    grid-column: span 3;
}

.gbn-card__media {
    aspect-ratio: 16 / 9;
}

.gbn-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 19px 19px 17px;
}

.gbn-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.13;
    font-weight: 500;
    letter-spacing: -.015em;
}

.gbn-card--compact h3 {
    font-size: 18px;
}

.gbn-card__body > p {
    margin: 0 0 18px;
    color: var(--gbn-muted);
    font-size: 13px;
    line-height: 1.55;
}

.gbn-card .gbn-meta {
    margin-top: auto;
}

.gbn-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 18px;
}

.gbn-widget {
    padding: 22px;
    border: 1px solid var(--gbn-line);
    border-radius: var(--gbn-radius);
    background: rgba(255, 253, 249, .92);
}

.gbn-widget > h2 {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.gbn-latest-list {
    display: grid;
    gap: 14px;
}

.gbn-latest-item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
}

.gbn-latest-item__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 7px;
    background: #d8ded8;
}

.gbn-latest-item h3 {
    margin: 1px 0 7px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
}

.gbn-latest-item time {
    color: #7a7f7a;
    font-size: 11px;
}

.gbn-widget-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 19px;
    color: var(--gbn-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.gbn-popular-list,
.gbn-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gbn-popular-list {
    display: grid;
    gap: 13px;
}

.gbn-popular-list li {
    display: grid;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    font-size: 13px;
    line-height: 1.35;
}

.gbn-popular-list li > span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: var(--gbn-green);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.gbn-category-list li + li {
    border-top: 1px solid rgba(222, 219, 210, .7);
}

.gbn-category-list a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
    color: var(--gbn-ink);
    font-size: 13px;
    text-decoration: none;
}

.gbn-category-list small {
    color: #7b807b;
}

.gbn-sidebar > .klaviyo-form-WPJJ5A {
    min-width: 0;
}

.gbn-load-more-wrap {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding-top: 30px;
}

.gbn-load-more {
    display: inline-flex;
    min-width: 260px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid #70756f;
    border-radius: 6px;
    background: transparent;
    color: var(--gbn-ink);
    cursor: pointer;
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.gbn-load-more svg {
    width: 18px;
    height: 18px;
}

.gbn-load-more.is-loading svg {
    animation: gbn-spin .9s linear infinite;
}

.gbn-load-more:disabled {
    cursor: wait;
    opacity: .65;
}

.gbn-load-status,
.gbn-empty {
    color: var(--gbn-muted);
    font-size: 13px;
}

.gbn-image-placeholder {
    display: grid;
    place-items: center;
    min-height: 100%;
    background: linear-gradient(135deg, #0c4a35, #bdad8c);
    color: rgba(255, 255, 255, .85);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
}

@keyframes gbn-spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 1180px) {
    .gbn-layout {
        grid-template-columns: minmax(0, 1fr) 290px;
    }

    .gbn-card--compact {
        grid-column: span 4;
    }
}

@media (max-width: 960px) {
    .gbn-layout {
        grid-template-columns: 1fr;
    }

    .gbn-sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gbn-sidebar > .klaviyo-form-WPJJ5A {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .gbn-shell {
        width: min(100% - 24px, 1440px);
    }

    .gbn-newsroom {
        padding-top: 24px;
    }

    .gbn-featured {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .gbn-featured__media {
        aspect-ratio: 16 / 10;
    }

    .gbn-featured__content {
        padding: 25px 22px;
    }

    .gbn-featured__footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .gbn-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gbn-card,
    .gbn-card--compact {
        grid-column: span 1;
    }

    .gbn-sidebar {
        grid-template-columns: 1fr;
    }

    .gbn-sidebar > .klaviyo-form-WPJJ5A {
        grid-column: span 1;
    }
}

@media (max-width: 540px) {
    .gbn-page-intro h1 {
        font-size: 42px;
    }

    .gbn-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gbn-card h3,
    .gbn-card--compact h3 {
        font-size: 22px;
    }

    .gbn-card__body {
        padding: 18px;
    }

    .gbn-featured h2 {
        font-size: 31px;
    }

    .gbn-button {
        width: 100%;
    }
}

/* Article view — version 1.1.0 */
.gbn-main {
    position: relative;
    min-width: 0;
}

.gbn-main.is-loading {
    min-height: 420px;
    pointer-events: none;
}

.gbn-main.is-loading::before {
    content: '';
    position: absolute;
    z-index: 30;
    inset: 0;
    border-radius: var(--gbn-radius);
    background: rgba(247, 244, 238, .78);
    backdrop-filter: blur(2px);
}

.gbn-main.is-loading::after {
    content: '';
    position: absolute;
    z-index: 31;
    top: 90px;
    left: 50%;
    width: 34px;
    height: 34px;
    margin-left: -17px;
    border: 3px solid rgba(7, 63, 44, .2);
    border-top-color: var(--gbn-green);
    border-radius: 50%;
    animation: gbn-spin .75s linear infinite;
}

.gbn-breadcrumb a:last-of-type {
    color: inherit;
    text-decoration: none;
}

.gbn-article-view {
    overflow: hidden;
    border: 1px solid var(--gbn-line);
    border-radius: var(--gbn-radius);
    background: var(--gbn-card);
    box-shadow: var(--gbn-shadow);
}

.gbn-back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 24px 28px 0;
    color: var(--gbn-green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.gbn-back-link:hover {
    color: var(--gbn-green-dark);
}

.gbn-article-header {
    max-width: 900px;
    padding: clamp(28px, 4vw, 54px) clamp(24px, 5vw, 70px) clamp(24px, 3vw, 38px);
}

.gbn-article-category {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    margin-bottom: 18px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--gbn-green);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.gbn-article-header h2 {
    margin: 0 0 20px;
    color: var(--gbn-ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 5vw, 66px);
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.02;
}

.gbn-article-hero {
    margin: 0;
    aspect-ratio: 16 / 8.5;
    background: #d8ded8;
}

.gbn-article-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gbn-article-content {
    max-width: 850px;
    margin: 0 auto;
    padding: clamp(36px, 5vw, 68px) clamp(24px, 5vw, 70px) clamp(48px, 6vw, 78px);
    color: #303630;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.78;
}

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

.gbn-article-content > *:last-child {
    margin-bottom: 0;
}

.gbn-article-content h2,
.gbn-article-content h3,
.gbn-article-content h4 {
    margin: 1.45em 0 .55em;
    color: var(--gbn-ink);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 500;
    line-height: 1.15;
}

.gbn-article-content h2 {
    font-size: clamp(29px, 3vw, 42px);
}

.gbn-article-content h3 {
    font-size: clamp(24px, 2.4vw, 32px);
}

.gbn-article-content p,
.gbn-article-content ul,
.gbn-article-content ol,
.gbn-article-content blockquote,
.gbn-article-content figure,
.gbn-article-content .wp-block-image {
    margin-top: 0;
    margin-bottom: 1.35em;
}

.gbn-article-content a {
    color: var(--gbn-green);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

.gbn-article-content img {
    height: auto;
    border-radius: 8px;
}

.gbn-article-content blockquote {
    margin-left: 0;
    padding: 8px 0 8px 25px;
    border-left: 3px solid var(--gbn-green);
    color: #4e564f;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.18em;
    font-style: italic;
}

.gbn-article-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    border-collapse: collapse;
}

.gbn-article-content th,
.gbn-article-content td {
    padding: 12px;
    border: 1px solid var(--gbn-line);
    text-align: left;
}

.gbn-article-navigation {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border-top: 1px solid var(--gbn-line);
    background: var(--gbn-line);
}

.gbn-article-navigation__item {
    display: flex;
    min-height: 128px;
    flex-direction: column;
    justify-content: center;
    padding: 26px 32px;
    background: var(--gbn-card);
    color: var(--gbn-ink);
    text-decoration: none;
    transition: background .2s ease;
}

.gbn-article-navigation__item:hover {
    background: #f2eee7;
    color: var(--gbn-ink);
}

.gbn-article-navigation__item--next {
    text-align: right;
}

.gbn-article-navigation__item:only-child.gbn-article-navigation__item--next {
    grid-column: 2;
}

.gbn-article-navigation__item small {
    margin-bottom: 8px;
    color: var(--gbn-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.gbn-article-navigation__item strong {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.25;
}

@media (max-width: 760px) {
    .gbn-back-link {
        margin: 20px 20px 0;
    }

    .gbn-article-header {
        padding-right: 22px;
        padding-left: 22px;
    }

    .gbn-article-hero {
        aspect-ratio: 16 / 10;
    }

    .gbn-article-content {
        padding-right: 22px;
        padding-left: 22px;
    }
}

@media (max-width: 540px) {
    .gbn-article-header h2 {
        font-size: 36px;
    }

    .gbn-article-navigation {
        grid-template-columns: 1fr;
    }

    .gbn-article-navigation__item,
    .gbn-article-navigation__item:only-child.gbn-article-navigation__item--next {
        grid-column: 1;
        min-height: 110px;
        padding: 22px;
        text-align: left;
    }
}
