:root {
    --bg: #0b0b0c;
    --bg-soft: #111214;
    --surface: #151619;
    --surface-2: #191a1e;
    --ink: #f3f3f1;
    --muted: #9b9ba0;
    --dim: #68686d;
    --red: #ef3340;
    --red-dark: #bd1f2d;
    --rule: #323338;
    --rule-light: #45464b;
    --page: 1500px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 35% -10%, rgba(255,255,255,.045), transparent 30%),
        #0b0b0c;
    color: var(--ink);
    font-family:
        Inter,
        "Helvetica Neue",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

img {
    display: block;
    width: 100%;
}

button,
input {
    font: inherit;
}

.bx-shell {
    width: min(var(--page), calc(100% - 56px));
    margin: 0 auto;
}

/* ===============================
   TOP UTILITY BAR
================================ */

.bx-topline {
    height: 45px;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
}

.bx-topline-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.bx-topline-copy {
    color: #aaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.bx-social {
    display: flex;
    align-items: center;
    gap: 17px;
}

.bx-social a {
    color: #9b9b9f;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
}

.bx-social a:hover {
    color: #fff;
}

/* ===============================
   HEADER
================================ */

.bx-header {
    border-bottom: 1px solid var(--rule);
}

.bx-header-row {
    min-height: 117px;
    display: grid;
    grid-template-columns: 390px 1fr auto;
    align-items: center;
    gap: 38px;
}

.bx-brand {
    min-width: 0;
}

.bx-brand img {
    width: 370px;
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
    object-position: left center;
}

.bx-brand-text {
    display: inline-flex;
    align-items: baseline;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(30px, 3vw, 51px);
    font-weight: 1000;
    line-height: .88;
    letter-spacing: -.06em;
    transform: skew(-7deg);
}

.bx-brand-text span {
    color: var(--red);
}

.bx-tagline {
    margin-top: 8px;
    color: #aaa;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .25em;
    text-transform: uppercase;
}

.bx-mainnav {
    align-self: stretch;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
}

.bx-mainnav a {
    position: relative;
    min-width: 62px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d6d6d7;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .025em;
    text-transform: uppercase;
}

.bx-mainnav a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 25px;
    height: 3px;
    background: transparent;
}

.bx-mainnav a:hover,
.bx-mainnav a.active {
    color: #fff;
}

.bx-mainnav a.active {
    color: var(--red);
}

.bx-mainnav a.active::after,
.bx-mainnav a:hover::after {
    background: var(--red);
}

.bx-search-toggle {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border: 0;
    border-left: 1px solid var(--rule);
    background: transparent;
    color: white;
    cursor: pointer;
}

.bx-search-icon {
    width: 22px;
    height: 22px;
    border: 2px solid currentColor;
    border-radius: 999px;
    position: relative;
}

.bx-search-icon::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 2px;
    right: -7px;
    bottom: -4px;
    background: currentColor;
    transform: rotate(45deg);
}

.bx-search-panel {
    display: none;
    border-top: 1px solid var(--rule);
    padding: 16px 0;
}

.bx-search-panel.open {
    display: block;
}

.bx-search-form {
    display: flex;
    gap: 10px;
}

.bx-search-form input {
    flex: 1;
    min-width: 0;
    height: 47px;
    padding: 0 15px;
    background: #151619;
    color: white;
    border: 1px solid var(--rule-light);
    outline: none;
}

.bx-search-form input:focus {
    border-color: var(--red);
}

.bx-search-form button {
    height: 47px;
    padding: 0 22px;
    border: 0;
    background: var(--red);
    color: white;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

/* ===============================
   HOMEPAGE GRID
================================ */

.bx-main {
    padding: 21px 0 0;
}

.bx-lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.25fr) minmax(310px, .78fr);
    gap: 24px;
}

/* ===============================
   HERO
================================ */

.bx-hero {
    position: relative;
    min-height: 550px;
    overflow: hidden;
    border: 1px solid var(--rule);
    background:
        linear-gradient(135deg, #242428, #0e0e10);
}

.bx-hero-bg {
    position: absolute;
    inset: 0;
}

.bx-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bx-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5,5,6,.98) 1%,
            rgba(5,5,6,.82) 27%,
            rgba(5,5,6,.2) 62%,
            rgba(5,5,6,.04) 100%
        );
}

.bx-hero-content {
    position: absolute;
    z-index: 2;
    left: 27px;
    right: 27px;
    bottom: 28px;
    max-width: 830px;
}

.bx-kicker {
    display: inline-flex;
    align-items: center;
    background: var(--red);
    color: #fff;
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.bx-hero h1 {
    max-width: 900px;
    margin: 12px 0 9px;
    color: #fff;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: clamp(38px, 4.2vw, 68px);
    line-height: .97;
    letter-spacing: -.015em;
    text-transform: uppercase;
    text-wrap: balance;
}

.bx-hero p {
    max-width: 690px;
    margin: 0;
    color: #e1e1e2;
    font-size: 17px;
    line-height: 1.55;
}

.bx-read-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 20px;
    padding: 0 21px;
    background: var(--red);
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bx-read-button:hover {
    background: #ff4050;
}

/* ===============================
   LATEST RAIL
================================ */

.bx-latest {
    border-left: 1px solid var(--rule);
    padding-left: 22px;
}

.bx-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    min-height: 43px;
    border-bottom: 3px solid #eeeeee;
    margin-bottom: 0;
}

.bx-section-heading h2 {
    margin: 0 0 7px;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.bx-section-heading a {
    margin-bottom: 9px;
    color: var(--red);
    text-decoration: none;
    font-size: 11px;
    font-weight: 1000;
    text-transform: uppercase;
}

.bx-latest-item {
    display: grid;
    grid-template-columns: 110px minmax(0,1fr);
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--rule);
    text-decoration: none;
}

.bx-latest-thumb {
    height: 86px;
    background:
        linear-gradient(135deg,#26272b,#151518);
    overflow: hidden;
}

.bx-latest-thumb img {
    height: 100%;
    object-fit: cover;
}

.bx-category {
    color: var(--red);
    font-size: 11px;
    line-height: 1;
    font-weight: 1000;
    text-transform: uppercase;
}

.bx-latest-title {
    margin: 7px 0 6px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.bx-date {
    color: #8b8b90;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bx-latest-item:hover .bx-latest-title {
    color: var(--red);
}

.bx-brand-box {
    min-height: 238px;
    margin-top: 17px;
    border: 1px solid var(--rule-light);
    padding: 26px 29px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}

.bx-brand-box::before {
    content: "◯";
    position: absolute;
    right: 13px;
    top: 14px;
    color: #44454a;
    font-size: 138px;
    line-height: 1;
}

.bx-brand-box-copy {
    position: relative;
    z-index: 1;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 35px;
    line-height: .95;
    text-transform: uppercase;
}

.bx-brand-box-copy strong {
    color: var(--red);
}

/* ===============================
   FOUR EDITORIAL CARDS
================================ */

.bx-story-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bx-story-card {
    min-width: 0;
    min-height: 315px;
    position: relative;
    border: 1px solid var(--rule);
    overflow: hidden;
    background: var(--surface);
    text-decoration: none;
}

.bx-story-image {
    position: absolute;
    inset: 0;
}

.bx-story-image img {
    height: 100%;
    object-fit: cover;
}

.bx-story-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(5,5,6,.97) 0,
            rgba(5,5,6,.8) 38%,
            rgba(5,5,6,.08) 75%
        );
}

.bx-story-info {
    position: absolute;
    z-index: 2;
    left: 16px;
    right: 16px;
    bottom: 17px;
}

.bx-story-title {
    margin: 8px 0 10px;
    color: white;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.bx-story-card:hover .bx-story-title {
    color: #ff5d68;
}

/* ===============================
   ABOUT MAGAZINE SPREAD
================================ */

.bx-about {
    margin-top: 25px;
    padding: 0;
    border-top: 1px solid var(--rule-light);
    border-bottom: 1px solid var(--rule-light);
    display: grid;
    grid-template-columns: 315px minmax(0,1fr) 190px;
    min-height: 300px;
}

.bx-about-art {
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--rule-light);
    min-height: 300px;
    background:
        radial-gradient(circle at 58% 30%, #37383d 0, #1c1d20 38%, #101012 76%);
}

.bx-about-controller {
    position: absolute;
    width: 240px;
    height: 135px;
    left: 34px;
    top: 46px;
    border-radius: 70px 70px 45px 45px;
    border: 8px solid rgba(255,255,255,.15);
    transform: rotate(-14deg);
}

.bx-about-controller::before,
.bx-about-controller::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,.13);
}

.bx-about-controller::before {
    width: 32px;
    height: 32px;
    left: 45px;
    top: 45px;
}

.bx-about-controller::after {
    width: 22px;
    height: 22px;
    right: 47px;
    top: 54px;
}

.bx-real-talk {
    position: absolute;
    left: 30px;
    bottom: 26px;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 28px;
    line-height: .95;
    text-transform: uppercase;
}

.bx-real-talk::before {
    content: "";
    display: block;
    width: 42px;
    height: 5px;
    background: var(--red);
    margin-bottom: 10px;
}

.bx-about-copy {
    padding: 30px 36px;
    align-self: center;
}

.bx-about-label {
    color: var(--red);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bx-about-copy h2 {
    margin: 9px 0 16px;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: clamp(35px,4vw,48px);
    line-height: 1;
    text-transform: uppercase;
}

.bx-about-copy h2::after {
    content: "";
    display: block;
    width: 37px;
    height: 5px;
    background: #777;
    margin-top: 12px;
}

.bx-about-copy p {
    margin: 0;
    max-width: 790px;
    color: #d0d0d1;
    font-size: 15px;
    line-height: 1.68;
}

.bx-about-signoff {
    margin-top: 23px;
    color: var(--red);
    font-weight: 900;
}

.bx-about-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
}

.bx-about-side div {
    color: #66676c;
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 40px;
    line-height: .92;
    text-transform: uppercase;
}

.bx-about-side div::after {
    content: "";
    display: block;
    width: 39px;
    height: 5px;
    margin-top: 11px;
    background: var(--red);
}

/* ===============================
   FOOTER
================================ */

.bx-footer {
    margin-top: 32px;
    border-top: 1px solid var(--rule);
}

.bx-footer-main {
    min-height: 111px;
    display: grid;
    grid-template-columns: 280px 1fr auto;
    align-items: center;
    gap: 30px;
}

.bx-footer-logo {
    font-family: Impact, "Arial Narrow", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    transform: skew(-6deg);
}

.bx-footer-logo span {
    color: var(--red);
}

.bx-footer-tag {
    margin-top: 3px;
    color: #77777c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.bx-footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.bx-footer-nav a {
    color: #b9b9bc;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.bx-footer-nav a:hover {
    color: white;
}

.bx-admin {
    min-height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0 20px;
    border: 2px solid var(--red);
    color: #eee;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.bx-admin:hover {
    background: var(--red);
    color: white;
}

.bx-footer-bottom {
    min-height: 60px;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #77777b;
    font-size: 10px;
}

/* ===============================
   EMPTY PLACEHOLDERS
================================ */

.bx-placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg,#27282d,#111215);
    color: #666;
    font-family: Impact, sans-serif;
    font-size: 25px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bx-empty {
    padding: 25px 0;
    color: #777;
    font-size: 13px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1160px) {
    .bx-header-row {
        grid-template-columns: 310px 1fr auto;
        gap: 15px;
    }

    .bx-mainnav a {
        padding: 0 9px;
        font-size: 11px;
    }

    .bx-lead-grid {
        grid-template-columns: 1.8fr .85fr;
    }

    .bx-story-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 880px) {
    .bx-shell {
        width: min(100% - 30px, var(--page));
    }

    .bx-topline-copy {
        display: none;
    }

    .bx-topline-inner {
        justify-content: flex-end;
    }

    .bx-header-row {
        min-height: auto;
        padding: 20px 0 0;
        display: grid;
        grid-template-columns: 1fr auto;
    }

    .bx-brand {
        grid-column: 1;
    }

    .bx-mainnav {
        grid-row: 2;
        grid-column: 1 / -1;
        overflow-x: auto;
        justify-content: flex-start;
        border-top: 1px solid var(--rule);
        margin-top: 17px;
    }

    .bx-mainnav a {
        min-height: 55px;
        white-space: nowrap;
    }

    .bx-mainnav a::after {
        bottom: 8px;
    }

    .bx-search-toggle {
        grid-column: 2;
        grid-row: 1;
    }

    .bx-lead-grid {
        grid-template-columns: 1fr;
    }

    .bx-latest {
        border-left: 0;
        padding-left: 0;
        margin-top: 5px;
    }

    .bx-about {
        grid-template-columns: 230px 1fr;
    }

    .bx-about-side {
        display: none;
    }

    .bx-footer-main {
        grid-template-columns: 1fr auto;
        padding: 25px 0;
    }

    .bx-footer-nav {
        grid-row: 2;
        grid-column: 1 / -1;
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .bx-shell {
        width: min(100% - 22px, var(--page));
    }

    .bx-social {
        gap: 11px;
    }

    .bx-header-row {
        grid-template-columns: 1fr 48px;
    }

    .bx-search-toggle {
        width: 48px;
        height: 48px;
    }

    .bx-hero {
        min-height: 480px;
    }

    .bx-hero-content {
        left: 18px;
        right: 18px;
        bottom: 20px;
    }

    .bx-hero h1 {
        font-size: 38px;
    }

    .bx-hero p {
        font-size: 14px;
    }

    .bx-story-grid {
        grid-template-columns: 1fr;
    }

    .bx-story-card {
        min-height: 330px;
    }

    .bx-latest-item {
        grid-template-columns: 92px 1fr;
    }

    .bx-about {
        grid-template-columns: 1fr;
    }

    .bx-about-art {
        min-height: 210px;
        border-right: 0;
        border-bottom: 1px solid var(--rule);
    }

    .bx-about-copy {
        padding: 26px 20px 31px;
    }

    .bx-footer-main {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bx-footer-nav {
        grid-row: auto;
        grid-column: auto;
        justify-content: flex-start;
        gap: 17px;
    }

    .bx-admin {
        justify-self: start;
    }

    .bx-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
}

/* ==================================================
   BOXXHEAD HOMEPAGE ALIGNMENT CORRECTION
================================================== */

.bx-shell{
    width:min(1480px, calc(100% - 56px)) !important;
    margin-left:auto !important;
    margin-right:auto !important;
}

/* ---------- header alignment ---------- */

.bx-header-row{
    grid-template-columns: 360px minmax(0,1fr) 64px !important;
    gap:24px !important;
}

.bx-brand{
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    align-items:flex-start !important;
}

.bx-brand img{
    width:350px !important;
    max-width:100% !important;
}

.bx-mainnav{
    justify-content:flex-end !important;
    gap:0 !important;
}

.bx-mainnav a{
    padding-left:10px !important;
    padding-right:10px !important;
}

/* ---------- main section ---------- */

.bx-main{
    padding-top:24px !important;
}

.bx-lead-grid{
    display:grid !important;
    grid-template-columns:minmax(0, 2.15fr) minmax(320px, .85fr) !important;
    gap:26px !important;
    align-items:start !important;
}

.bx-hero{
    min-height:555px !important;
    width:100% !important;
}

.bx-latest{
    padding-left:24px !important;
    height:100% !important;
}

/* ---------- latest heading ---------- */

.bx-section-heading{
    min-height:48px !important;
    align-items:flex-end !important;
}

.bx-section-heading h2{
    margin-bottom:8px !important;
}

.bx-section-heading a{
    margin-bottom:10px !important;
}

/* ---------- latest rows ---------- */

.bx-latest-item{
    grid-template-columns:108px minmax(0,1fr) !important;
    gap:14px !important;
    align-items:start !important;
}

.bx-latest-thumb{
    width:108px !important;
    height:82px !important;
}

/* ---------- four cards ---------- */

.bx-story-grid{
    display:grid !important;
    grid-template-columns:repeat(4, minmax(0,1fr)) !important;
    gap:16px !important;
    align-items:stretch !important;
}

.bx-story-card{
    min-height:320px !important;
    width:100% !important;
}

.bx-story-info{
    left:17px !important;
    right:17px !important;
    bottom:18px !important;
}

/* ---------- about section ---------- */

.bx-about{
    grid-template-columns:300px minmax(0,1fr) 190px !important;
    align-items:stretch !important;
}

.bx-about-art,
.bx-about-copy,
.bx-about-side{
    min-height:300px !important;
}

.bx-about-copy{
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
}

/* ---------- footer ---------- */

.bx-footer-main{
    grid-template-columns:280px minmax(0,1fr) auto !important;
    gap:28px !important;
}

.bx-footer-nav{
    justify-content:center !important;
    align-items:center !important;
}

.bx-admin{
    justify-self:end !important;
}

/* ---------- spacing cleanup ---------- */

.bx-hero h1,
.bx-hero p,
.bx-latest-title,
.bx-story-title{
    overflow-wrap:anywhere;
}

.bx-hero-content{
    left:28px !important;
    right:28px !important;
    bottom:28px !important;
}

/* ---------- medium screens ---------- */

@media (max-width:1180px){

    .bx-header-row{
        grid-template-columns:300px minmax(0,1fr) 58px !important;
        gap:14px !important;
    }

    .bx-brand img{
        width:290px !important;
    }

    .bx-mainnav a{
        font-size:10px !important;
        padding-left:7px !important;
        padding-right:7px !important;
    }

    .bx-lead-grid{
        grid-template-columns:minmax(0,1.75fr) minmax(300px,.85fr) !important;
        gap:22px !important;
    }
}

/* ---------- tablet ---------- */

@media (max-width:900px){

    .bx-shell{
        width:calc(100% - 30px) !important;
    }

    .bx-header-row{
        grid-template-columns:minmax(0,1fr) 52px !important;
    }

    .bx-brand img{
        width:300px !important;
    }

    .bx-mainnav{
        justify-content:flex-start !important;
    }

    .bx-lead-grid{
        grid-template-columns:1fr !important;
    }

    .bx-latest{
        padding-left:0 !important;
        border-left:0 !important;
    }

    .bx-story-grid{
        grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    }

    .bx-about{
        grid-template-columns:230px minmax(0,1fr) !important;
    }

    .bx-about-side{
        display:none !important;
    }

    .bx-footer-main{
        grid-template-columns:1fr auto !important;
    }

    .bx-footer-nav{
        grid-column:1 / -1 !important;
        justify-content:flex-start !important;
    }
}

/* ---------- mobile ---------- */

@media (max-width:620px){

    .bx-shell{
        width:calc(100% - 22px) !important;
    }

    .bx-brand img{
        width:250px !important;
    }

    .bx-hero{
        min-height:475px !important;
    }

    .bx-story-grid{
        grid-template-columns:1fr !important;
    }

    .bx-about{
        grid-template-columns:1fr !important;
    }

    .bx-footer-main{
        grid-template-columns:1fr !important;
    }

    .bx-admin{
        justify-self:start !important;
    }
}


/* ==========================================================
   BOXXHEAD — TRUE HOMEPAGE MOBILE HEADER FIX
   ========================================================== */

@media (max-width: 700px) {

    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        background: #090909 !important;
    }


    /* TOP STRIP */

    .bx-topline {
        height: 36px !important;
        min-height: 36px !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #090909 !important;

        border-bottom: 1px solid #262626 !important;
    }

    .bx-topline-inner {
        width: 100% !important;
        max-width: none !important;

        height: 36px !important;
        min-height: 36px !important;

        margin: 0 !important;
        padding: 0 14px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        gap: 18px !important;
    }

    .bx-topline-copy {
        display: none !important;
    }

    .bx-social {
        display: flex !important;
        align-items: center !important;

        gap: 18px !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .bx-social span {
        display: none !important;
    }

    .bx-social a {
        color: #aaa !important;

        font-size: 11px !important;
        font-weight: 800 !important;

        letter-spacing: .16em !important;

        text-decoration: none !important;
    }


    /* MAIN HEADER */

    .bx-header {
        width: 100% !important;

        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #090909 !important;

        overflow: visible !important;
    }


    .bx-header-row {
        width: 100% !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 12px 14px 0 !important;

        display: grid !important;

        grid-template-columns:
            minmax(0, 1fr)
            48px !important;

        grid-template-rows:
            auto
            46px !important;

        column-gap: 10px !important;
        row-gap: 8px !important;

        align-items: center !important;

        background: #090909 !important;
    }


    /* LOGO */

    .bx-brand {
        grid-column: 1 !important;
        grid-row: 1 !important;

        width: auto !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: flex-start !important;
        justify-content: center !important;

        gap: 5px !important;
    }

    #bxImageLogo,
    .bx-brand img {
        display: block !important;

        width: 130px !important;
        max-width: 42vw !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .bx-tagline {
        margin: 0 !important;
        padding: 0 !important;

        color: #999 !important;

        font-size: 9px !important;
        line-height: 1 !important;

        font-weight: 800 !important;

        letter-spacing: .20em !important;

        white-space: nowrap !important;
    }


    /* SEARCH */

    .bx-search-toggle {
        grid-column: 2 !important;
        grid-row: 1 !important;

        width: 46px !important;
        min-width: 46px !important;

        height: 46px !important;
        min-height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;

        justify-self: end !important;

        background: transparent !important;

        border: 0 !important;
        border-left: 1px solid #333 !important;

        border-radius: 0 !important;
    }


    /* ===============================================
       REAL HOMEPAGE NAV
       =============================================== */

    .bx-mainnav {
        grid-column: 1 / -1 !important;
        grid-row: 2 !important;

        width: 100% !important;
        max-width: 100% !important;

        height: 46px !important;
        min-height: 46px !important;
        max-height: 46px !important;

        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;

        flex-direction: row !important;
        flex-wrap: nowrap !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 0 !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        white-space: nowrap !important;

        background: #090909 !important;
        background-color: #090909 !important;

        border: 0 !important;

        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .bx-mainnav::-webkit-scrollbar {
        display: none !important;
    }

    .bx-mainnav a {
        flex: 0 0 auto !important;

        width: auto !important;
        min-width: 0 !important;

        height: 46px !important;
        min-height: 46px !important;

        margin: 0 !important;

        padding: 0 13px !important;

        display: inline-flex !important;

        align-items: center !important;
        justify-content: center !important;

        background: transparent !important;
        background-color: transparent !important;

        color: #c8c8c8 !important;

        border: 0 !important;

        font-size: 11px !important;
        line-height: 1 !important;

        font-weight: 800 !important;

        letter-spacing: .04em !important;

        text-decoration: none !important;

        white-space: nowrap !important;
    }

    .bx-mainnav a::after {
        display: none !important;
        content: none !important;
    }

    .bx-mainnav a.active {
        color: #fff !important;

        box-shadow:
            inset 0 -2px 0 #e31d2b !important;
    }


    /* SEARCH PANEL */

    .bx-search-panel {
        width: 100% !important;

        background: #111 !important;
    }

    .bx-search-panel .bx-shell {
        width: 100% !important;
        max-width: none !important;

        padding: 10px 14px !important;
    }


    /* REMOVE THE HUGE EMPTY GAP */

    .bx-main {
        margin-top: 0 !important;
        padding-top: 14px !important;
    }


    /* MAIN CONTENT WIDTH */

    .bx-shell {
        width: calc(100% - 20px) !important;
        max-width: none !important;

        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* HERO */

    .bx-lead-grid {
        display: block !important;
    }

    .bx-hero {
        width: 100% !important;

        min-height: 360px !important;

        margin: 0 !important;
    }

    .bx-hero-content {
        left: 16px !important;
        right: 16px !important;
        bottom: 18px !important;
    }

    .bx-hero h1 {
        font-size: 36px !important;
        line-height: .98 !important;
    }


    /* LATEST */

    .bx-latest {
        width: 100% !important;

        margin-top: 24px !important;
        padding-left: 0 !important;

        border-left: 0 !important;
    }


    /* STORY CARDS */

    .bx-story-grid {
        display: grid !important;

        grid-template-columns: 1fr !important;

        gap: 14px !important;
    }

}


/* SMALL IPHONE */

@media (max-width: 390px) {

    #bxImageLogo,
    .bx-brand img {
        width: 118px !important;
    }

    .bx-mainnav a {
        padding-left: 11px !important;
        padding-right: 11px !important;

        font-size: 10px !important;
    }

}
