/* BalkansNetwork homepage restoration — alpha.28 */
:root {
    --bnee-navy: #062d50;
    --bnee-navy-deep: #03233d;
    --bnee-blue: #1477c9;
    --bnee-blue-soft: #eaf4fb;
    --bnee-orange: #f28a2b;
    --bnee-gold: #e3ad3d;
    --bnee-ink: #112238;
    --bnee-muted: #5d6d7e;
    --bnee-line: #dfe7ee;
    --bnee-surface: #ffffff;
    --bnee-page: #f4f7f9;
    --bnee-shadow: 0 12px 32px rgba(10, 45, 76, .08);
    --bnee-shadow-hover: 0 18px 42px rgba(10, 45, 76, .14);
    --bnee-radius: 13px;
}

html {
    scroll-behavior: smooth;
}

body.bnee-homepage-template {
    margin: 0;
    background: var(--bnee-page);
    color: var(--bnee-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.bnee-homepage-template *,
body.bnee-homepage-template *::before,
body.bnee-homepage-template *::after {
    box-sizing: border-box;
}

body.bnee-homepage-template a {
    color: inherit;
    text-decoration: none;
}

body.bnee-homepage-template img {
    display: block;
    max-width: 100%;
}

body.bnee-homepage-template button,
body.bnee-homepage-template input {
    font: inherit;
}

.bnee-site-shell {
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(6, 45, 80, .025) 1px, transparent 1px),
        linear-gradient(rgba(6, 45, 80, .02) 1px, transparent 1px),
        var(--bnee-page);
    background-size: 28px 28px;
}

.bnee-container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.bnee-skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 999999;
    padding: 10px 14px;
    background: #fff;
    color: var(--bnee-navy);
    border-radius: 6px;
    transform: translateY(-140%);
    transition: transform .2s ease;
}

.bnee-skip-link:focus {
    transform: translateY(0);
}

/* Utility bar */
.bnee-topbar {
    position: relative;
    z-index: 20;
    background: var(--bnee-navy-deep);
    color: rgba(255, 255, 255, .88);
    font-size: 12px;
    letter-spacing: .02em;
}

.bnee-topbar-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.bnee-topbar nav,
.bnee-topbar-meta {
    display: flex;
    align-items: center;
    gap: 19px;
}

.bnee-topbar a {
    transition: color .2s ease;
}

.bnee-topbar a:hover,
.bnee-topbar a:focus-visible {
    color: #fff;
}

.bnee-language {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 31px;
    height: 22px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    font-weight: 700;
    font-size: 10px;
}

/* Hero */
.bnee-hero {
    position: relative;
    z-index: 10;
    min-height: 250px;
    display: flex;
    align-items: stretch;
    background-image: var(--bnee-hero-image);
    background-size: cover;
    background-position: center 54%;
    border-bottom: 1px solid rgba(6, 45, 80, .2);
}

.bnee-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(247, 252, 255, .98) 0%, rgba(247, 252, 255, .92) 31%, rgba(247, 252, 255, .57) 58%, rgba(6, 45, 80, .12) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, .2), rgba(3, 35, 61, .1));
}

.bnee-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 250px;
    display: grid;
    grid-template-columns: minmax(270px, .9fr) minmax(320px, 1.45fr) minmax(280px, 1fr);
    gap: 34px;
    align-items: center;
}

.bnee-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    color: var(--bnee-navy-deep);
}

.bnee-logo-mark {
    position: relative;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border: 5px solid var(--bnee-blue);
    border-right-color: transparent;
    border-radius: 3px;
    transform: rotate(0deg);
}

.bnee-logo-mark::before,
.bnee-logo-mark::after,
.bnee-logo-mark > span {
    content: "";
    position: absolute;
    display: block;
}

.bnee-logo-mark::before {
    width: 18px;
    height: 5px;
    right: -6px;
    top: 2px;
    background: var(--bnee-orange);
    transform: rotate(-34deg);
    transform-origin: right center;
}

.bnee-logo-mark::after {
    width: 18px;
    height: 5px;
    right: -6px;
    bottom: 2px;
    background: var(--bnee-orange);
    transform: rotate(34deg);
    transform-origin: right center;
}

.bnee-logo-mark > span {
    inset: 8px;
    background: rgba(20, 119, 201, .12);
}

.bnee-logo-type {
    display: flex;
    align-items: baseline;
    line-height: 1;
    letter-spacing: -.048em;
    white-space: nowrap;
}

.bnee-logo-type strong,
.bnee-logo-type span {
    font-size: clamp(25px, 2.25vw, 37px);
    font-weight: 800;
}

.bnee-logo-type strong {
    color: var(--bnee-navy-deep);
}

.bnee-logo-type span {
    color: #2b4e70;
    font-weight: 500;
}

.bnee-hero-copy {
    position: relative;
    padding-left: 28px;
}

.bnee-hero-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(var(--bnee-orange), var(--bnee-gold));
}

.bnee-hero-kicker {
    margin: 0 0 8px;
    color: var(--bnee-navy-deep);
    font-size: clamp(23px, 2.25vw, 35px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.bnee-hero-subtitle {
    max-width: 570px;
    margin: 0;
    color: #3c5871;
    font-size: 14px;
    font-weight: 500;
}

.bnee-search {
    position: relative;
    display: flex;
    align-items: center;
    height: 52px;
    padding-left: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 30px rgba(5, 42, 74, .15);
    overflow: hidden;
    border-right: 3px solid var(--bnee-orange);
    backdrop-filter: blur(10px);
}

.bnee-search svg {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #6f8495;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.bnee-search input {
    min-width: 0;
    flex: 1 1 auto;
    height: 100%;
    padding: 0 10px 0 0;
    border: 0;
    outline: 0;
    color: var(--bnee-ink);
    background: transparent;
    font-size: 13px;
}

.bnee-search input::placeholder {
    color: #7d8f9e;
}

.bnee-search button {
    align-self: stretch;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: var(--bnee-navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
    cursor: pointer;
}

/* Navigation */
.bnee-primary-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bnee-navy-deep);
    box-shadow: 0 5px 18px rgba(3, 35, 61, .2);
}

.admin-bar .bnee-primary-nav {
    top: 32px;
}

.bnee-nav-inner {
    min-height: 52px;
    display: flex;
    align-items: center;
}

.bnee-primary-nav ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 6px;
    list-style: none;
}

.bnee-primary-nav li {
    display: flex;
    align-items: stretch;
}

.bnee-primary-nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    color: rgba(255, 255, 255, .9);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
    transition: color .2s ease, background-color .2s ease;
}

.bnee-primary-nav li.is-current a,
.bnee-primary-nav a:hover,
.bnee-primary-nav a:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, .035);
}

.bnee-primary-nav li.is-current a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 3px;
    background: var(--bnee-orange);
}

.bnee-nav-toggle {
    display: none;
}

/* Main */
.bnee-main {
    padding: 36px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(244, 247, 249, .98));
}

.bnee-section,
.bnee-featured {
    margin-bottom: 48px;
}

.bnee-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.bnee-section-heading-compact {
    margin-bottom: 10px;
}

.bnee-section-heading h2 {
    margin: 3px 0 0;
    color: var(--bnee-navy-deep);
    font-size: clamp(27px, 3vw, 39px);
    line-height: 1.04;
    letter-spacing: -.04em;
}

.bnee-section-kicker,
.bnee-card-eyebrow {
    display: block;
    color: var(--bnee-blue);
    font-size: 10px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.bnee-section-heading > a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 5px;
    color: var(--bnee-blue);
    font-size: 12px;
    font-weight: 800;
}

.bnee-section-heading > a span,
.bnee-read-more span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 999px;
    background: var(--bnee-blue-soft);
    color: var(--bnee-blue);
    transition: transform .2s ease, background-color .2s ease;
}

.bnee-section-heading > a:hover span,
.bnee-read-more:hover span {
    transform: translateX(3px);
    background: #d8ecfa;
}

.bnee-grid {
    display: grid;
    gap: 22px;
}

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

.bnee-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bnee-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards */
.bnee-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--bnee-line);
    border-radius: var(--bnee-radius);
    background: var(--bnee-surface);
    box-shadow: 0 6px 19px rgba(10, 45, 76, .045);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bnee-card:hover {
    transform: translateY(-3px);
    border-color: #cddce8;
    box-shadow: var(--bnee-shadow-hover);
}

.bnee-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    background: #d9e6ef;
    aspect-ratio: 16 / 9;
}

.bnee-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 62%, rgba(3, 35, 61, .16));
    pointer-events: none;
}

.bnee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.bnee-card:hover .bnee-card-image img {
    transform: scale(1.035);
}

.bnee-card-body {
    min-height: 0;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 19px 20px 18px;
}

.bnee-card-meta {
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--bnee-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.bnee-card-meta time {
    color: #8a98a4;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 500;
}

.bnee-card h2,
.bnee-card h3,
.bnee-leader-card h3,
.bnee-expo-card h3 {
    margin: 0;
    color: var(--bnee-ink);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -.025em;
}

.bnee-card h2 {
    font-size: clamp(20px, 1.9vw, 27px);
}

.bnee-card h3,
.bnee-leader-card h3,
.bnee-expo-card h3 {
    font-size: 19px;
}

.bnee-card h2 a,
.bnee-card h3 a {
    transition: color .2s ease;
}

.bnee-card h2 a:hover,
.bnee-card h3 a:hover {
    color: var(--bnee-blue);
}

.bnee-card p,
.bnee-leader-card p,
.bnee-expo-card p {
    margin: 11px 0 17px;
    color: var(--bnee-muted);
    font-size: 13px;
    line-height: 1.55;
}

.bnee-card .bnee-read-more {
    margin-top: auto;
}

.bnee-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--bnee-blue);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.bnee-card-featured .bnee-card-image {
    aspect-ratio: 16 / 8.5;
}

.bnee-card-featured .bnee-card-body {
    padding: 21px 22px 20px;
}

.bnee-card-small .bnee-card-body {
    padding: 16px 17px 16px;
}

.bnee-card-small h3 {
    margin-top: 7px;
    font-size: 17px;
}

.bnee-card-small p {
    font-size: 12px;
}

.bnee-card-wide .bnee-card-image {
    aspect-ratio: 16 / 7.25;
}

.bnee-card-wide h3 {
    font-size: 23px;
}

/* Mission */
.bnee-mission {
    position: relative;
    margin: 10px 0 48px;
    padding: 28px 70px 27px 30px;
    border: 1px solid #d8e6f1;
    border-left: 3px solid var(--bnee-orange);
    border-radius: 12px;
    background:
        radial-gradient(circle at 92% 20%, rgba(20, 119, 201, .1), transparent 27%),
        linear-gradient(110deg, #f9fcfe, #edf6fc);
    box-shadow: 0 7px 20px rgba(10, 45, 76, .045);
}

.bnee-mission h2 {
    margin: 5px 0 8px;
    color: var(--bnee-navy-deep);
    font-size: clamp(25px, 2.6vw, 35px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.bnee-mission p {
    max-width: 900px;
    margin: 0 0 16px;
    color: #506577;
    font-size: 14px;
}

.bnee-mission-copy > a {
    color: var(--bnee-blue);
    font-size: 12px;
    font-weight: 800;
}

.bnee-mission-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--bnee-blue);
    box-shadow: 0 5px 16px rgba(10, 45, 76, .1);
    transform: translateY(-50%);
}

/* Leaders */
.bnee-leader-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    padding: 23px;
    border: 1px solid var(--bnee-line);
    border-radius: var(--bnee-radius);
    background: #fff;
    box-shadow: 0 6px 19px rgba(10, 45, 76, .045);
    transition: transform .22s ease, box-shadow .22s ease;
}

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

.bnee-leader-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19px;
    border-radius: 15px;
    background: linear-gradient(145deg, var(--bnee-navy), var(--bnee-blue));
    color: #fff;
    font-size: 27px;
    font-weight: 850;
    box-shadow: 0 10px 24px rgba(20, 119, 201, .2);
}

.bnee-leader-card h3 {
    margin-top: 7px;
}

.bnee-leader-card .bnee-read-more {
    margin-top: auto;
}

/* Expo */
.bnee-expo-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 22px;
}

.bnee-expo-card {
    min-height: 265px;
    border: 1px solid var(--bnee-line);
    border-radius: var(--bnee-radius);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 6px 19px rgba(10, 45, 76, .045);
}

.bnee-expo-primary {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 27px;
    align-items: center;
    padding: 28px;
    background:
        radial-gradient(circle at 8% 20%, rgba(242, 138, 43, .13), transparent 24%),
        linear-gradient(135deg, #fff, #f2f8fc);
}

.bnee-expo-badge {
    width: 165px;
    height: 165px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 28px;
    background: linear-gradient(145deg, var(--bnee-navy-deep), #0d5a91);
    color: #fff;
    box-shadow: 0 18px 38px rgba(3, 35, 61, .25);
    transform: rotate(-2deg);
}

.bnee-expo-badge span,
.bnee-expo-badge em {
    font-style: normal;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .18em;
}

.bnee-expo-badge strong {
    margin: -2px 0;
    color: var(--bnee-orange);
    font-size: 50px;
    line-height: 1;
    letter-spacing: -.06em;
}

.bnee-expo-primary h3 {
    margin-top: 7px;
    font-size: 26px;
}

.bnee-expo-image-card {
    display: grid;
    grid-template-columns: 43% 57%;
}

.bnee-expo-image-card img {
    width: 100%;
    height: 100%;
    min-height: 265px;
    object-fit: cover;
}

.bnee-expo-image-card > div {
    padding: 27px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bnee-expo-image-card h3 {
    margin-top: 7px;
    font-size: 22px;
}

/* Newsletter */
.bnee-newsletter {
    position: relative;
    margin: 10px 0 0;
    min-height: 128px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 23px;
    padding: 25px 30px;
    border-radius: 15px 15px 0 0;
    background:
        radial-gradient(circle at 84% 0, rgba(20, 119, 201, .65), transparent 32%),
        linear-gradient(112deg, var(--bnee-navy-deep), #07558e 72%, #157ac9);
    color: #fff;
    overflow: hidden;
}

.bnee-newsletter::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: -120px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
}

.bnee-newsletter-icon {
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .1);
    font-size: 28px;
}

.bnee-newsletter .bnee-section-kicker {
    color: #9fd2f4;
}

.bnee-newsletter h2 {
    margin: 3px 0 3px;
    font-size: clamp(22px, 2.4vw, 31px);
    line-height: 1.1;
    letter-spacing: -.035em;
}

.bnee-newsletter p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
}

.bnee-newsletter-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 8px;
    background: var(--bnee-orange);
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 10px 24px rgba(3, 35, 61, .18);
    transition: transform .2s ease, background-color .2s ease;
}

.bnee-newsletter-button:hover {
    transform: translateY(-2px);
    background: #f49a47;
}

/* Footer */
.bnee-footer {
    position: relative;
    background: var(--bnee-navy-deep);
    color: rgba(255, 255, 255, .76);
}

.bnee-footer-accent {
    height: 3px;
    background: linear-gradient(90deg, var(--bnee-blue), #28b8db 48%, var(--bnee-orange));
}

.bnee-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 70px;
    padding-top: 45px;
    padding-bottom: 43px;
}

.bnee-logo-footer {
    color: #fff;
}

.bnee-logo-footer .bnee-logo-type strong,
.bnee-logo-footer .bnee-logo-type span {
    color: #fff;
    font-size: 27px;
}

.bnee-logo-footer .bnee-logo-type span {
    color: #79c4f1;
}

.bnee-logo-footer .bnee-logo-mark {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    border-width: 4px;
}

.bnee-footer-brand p {
    max-width: 420px;
    margin: 19px 0 0;
    font-size: 13px;
    line-height: 1.65;
}

.bnee-footer h2 {
    margin: 5px 0 16px;
    color: #fff;
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bnee-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bnee-footer li + li {
    margin-top: 9px;
}

.bnee-footer nav a {
    font-size: 12px;
    transition: color .2s ease;
}

.bnee-footer nav a:hover,
.bnee-footer nav a:focus-visible {
    color: #fff;
}

.bnee-footer-bottom {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

.bnee-footer-bottom p {
    margin: 0;
}

.bnee-footer-bottom > div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.bnee-footer-bottom a {
    color: #fff;
    font-weight: 700;
}

.bnee-image-credit {
    color: rgba(255, 255, 255, .43);
    font-size: 9px;
}

/* Accessibility */
.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body.bnee-homepage-template :focus-visible {
    outline: 3px solid rgba(242, 138, 43, .7);
    outline-offset: 3px;
}

/* Tablet */
@media (max-width: 1080px) {
    .bnee-hero-inner {
        grid-template-columns: minmax(240px, .85fr) minmax(300px, 1.35fr);
        gap: 28px;
    }

    .bnee-search {
        grid-column: 1 / -1;
        width: min(620px, 100%);
        margin-bottom: 25px;
    }

    .bnee-primary-nav a {
        padding-inline: 11px;
        font-size: 11px;
    }

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

    .bnee-expo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .bnee-container {
        width: min(100% - 30px, 720px);
    }

    .bnee-topbar nav a:nth-child(4),
    .bnee-topbar-meta span:first-child {
        display: none;
    }

    .bnee-hero,
    .bnee-hero-inner {
        min-height: 320px;
    }

    .bnee-hero-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        align-content: center;
        padding-block: 28px;
    }

    .bnee-hero-overlay {
        background: linear-gradient(90deg, rgba(247, 252, 255, .97), rgba(247, 252, 255, .78));
    }

    .bnee-logo-type strong,
    .bnee-logo-type span {
        font-size: 31px;
    }

    .bnee-hero-copy {
        padding-left: 22px;
    }

    .bnee-search {
        grid-column: auto;
        width: 100%;
        margin: 3px 0 0;
    }

    .bnee-nav-inner {
        min-height: 54px;
        position: relative;
    }

    .bnee-nav-toggle {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .bnee-nav-toggle span {
        width: 20px;
        height: 2px;
        background: #fff;
    }

    .bnee-nav-toggle span:nth-child(2),
    .bnee-nav-toggle span:nth-child(3) {
        margin-left: -25px;
        transform: translateY(6px);
    }

    .bnee-nav-toggle span:nth-child(3) {
        transform: translateY(-6px);
    }

    .bnee-nav-toggle em {
        margin-left: 9px;
        font-style: normal;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    .bnee-primary-nav ul {
        position: absolute;
        left: 0;
        right: 0;
        top: 54px;
        display: none;
        padding: 10px 15px 16px;
        background: var(--bnee-navy-deep);
        box-shadow: 0 16px 25px rgba(3, 35, 61, .25);
    }

    .bnee-primary-nav ul.is-open {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .bnee-primary-nav a {
        min-height: 43px;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .bnee-primary-nav li.is-current a::after {
        left: 10px;
        right: auto;
        width: 28px;
    }

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

    .bnee-featured-grid article:last-child,
    .bnee-grid-3 article:last-child {
        grid-column: 1 / -1;
    }

    .bnee-expo-primary {
        grid-template-columns: 145px 1fr;
    }

    .bnee-expo-badge {
        width: 140px;
        height: 140px;
    }

    .bnee-expo-image-card {
        grid-template-columns: 45% 55%;
    }

    .bnee-newsletter {
        grid-template-columns: auto 1fr;
    }

    .bnee-newsletter-button {
        grid-column: 2;
        width: fit-content;
    }

    .bnee-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .bnee-footer-brand {
        grid-column: 1 / -1;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .admin-bar .bnee-primary-nav {
        top: 46px;
    }

    .bnee-container {
        width: min(100% - 22px, 520px);
    }

    .bnee-topbar-inner {
        min-height: 34px;
    }

    .bnee-topbar nav {
        gap: 12px;
    }

    .bnee-topbar nav a:nth-child(3) {
        display: none;
    }

    .bnee-hero,
    .bnee-hero-inner {
        min-height: 340px;
    }

    .bnee-logo-mark {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
        border-width: 4px;
    }

    .bnee-logo-type strong,
    .bnee-logo-type span {
        font-size: 26px;
    }

    .bnee-hero-kicker {
        font-size: 27px;
    }

    .bnee-search {
        height: 48px;
    }

    .bnee-search button {
        display: none;
    }

    .bnee-main {
        padding-top: 24px;
    }

    .bnee-section,
    .bnee-featured {
        margin-bottom: 37px;
    }

    .bnee-section-heading {
        align-items: flex-start;
    }

    .bnee-section-heading h2 {
        font-size: 29px;
    }

    .bnee-section-heading > a {
        font-size: 0;
    }

    .bnee-section-heading > a span {
        font-size: 12px;
    }

    .bnee-grid-2,
    .bnee-grid-3,
    .bnee-grid-4 {
        grid-template-columns: 1fr;
    }

    .bnee-featured-grid article:last-child,
    .bnee-grid-3 article:last-child {
        grid-column: auto;
    }

    .bnee-card-featured .bnee-card-image,
    .bnee-card-wide .bnee-card-image,
    .bnee-card-image {
        aspect-ratio: 16 / 9;
    }

    .bnee-mission {
        padding: 24px 25px;
    }

    .bnee-mission-arrow {
        display: none;
    }

    .bnee-leader-card {
        min-height: 230px;
    }

    .bnee-expo-primary,
    .bnee-expo-image-card {
        grid-template-columns: 1fr;
    }

    .bnee-expo-badge {
        width: 128px;
        height: 128px;
    }

    .bnee-expo-image-card img {
        min-height: 205px;
    }

    .bnee-newsletter {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 27px 24px;
        border-radius: 13px 13px 0 0;
    }

    .bnee-newsletter-icon {
        width: 52px;
        height: 52px;
    }

    .bnee-newsletter-button {
        grid-column: auto;
    }

    .bnee-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 38px;
    }

    .bnee-footer-brand {
        grid-column: auto;
    }

    .bnee-footer-bottom,
    .bnee-footer-bottom > div {
        align-items: flex-start;
        flex-direction: column;
    }

    .bnee-footer-bottom {
        padding-block: 20px;
    }

    .bnee-image-credit {
        max-width: 290px;
    }
}

/* BNEE EN-SR LANGUAGE SWITCHER */
.bnee-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 12px;
    white-space: nowrap;
}
.bnee-language-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: inherit;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    line-height: 1;
    opacity: .7;
    transition: opacity .18s ease;
}
.bnee-language-link:hover,
.bnee-language-link:focus-visible,
.bnee-language-link.is-active {
    opacity: 1;
}
.bnee-language-flag {
    display: block;
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255,255,255,.28);
}
.bnee-language-emoji {
    font-size: 17px;
    line-height: 1;
}
.bnee-language-divider {
    opacity: .35;
}
@media (max-width: 680px) {
    .bnee-topbar-meta > span:first-child { display: none; }
    .bnee-language-switcher { margin-left: 0; gap: 5px; }
    .bnee-language-code { font-size: 11px; }
}
/* BNEE_REAL_FOOTER_LANGUAGE_SELECTOR_140 */
.bnee-footer-bottom .bnee-footer-language-switcher{display:inline-flex;align-items:center;justify-content:center;flex:0 0 auto;flex-flow:row nowrap;gap:7px;margin:0 18px;padding:0;white-space:nowrap;visibility:visible;opacity:1}
.bnee-footer-bottom .bnee-footer-language-link{display:inline-flex;align-items:center;gap:5px;color:#fff;text-decoration:none;font-size:12px;font-weight:700;letter-spacing:.05em;line-height:1;white-space:nowrap}
.bnee-footer-bottom .bnee-footer-language-link:hover,.bnee-footer-bottom .bnee-footer-language-link:focus-visible,.bnee-footer-bottom .bnee-footer-language-link.is-active{color:#f28a2b;text-decoration:none}
.bnee-footer-bottom .bnee-footer-language-flag{display:block;width:20px;height:14px;max-width:20px;max-height:14px;object-fit:cover;margin:0;border:0}
.bnee-footer-bottom .bnee-footer-language-divider{display:inline-block;color:rgba(255,255,255,.42);line-height:1}
@media(max-width:782px){.bnee-footer-bottom{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px 16px}.bnee-footer-bottom>p{order:1}.bnee-footer-bottom .bnee-footer-language-switcher{order:2;margin:0}.bnee-footer-bottom>div{order:3;flex-basis:100%}}