:root {
    --page: #f4f4f4;
    --white: #ffffff;

    --ink: #151515;
    --ink2: #262626;

    --muted: #6f6f6f;
    --muted2: #9b9b9b;

    --line: #dedede;
    --line2: #cfcfcf;

    --red: #e30613;
    --red-dark: #b9000c;

    --soft: #ededed;
    --soft2: #e4e4e4;

    --content: 1480px;
}


/* ======================================================
   RESET
====================================================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--page);

    color: var(--ink);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}


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

.topbar {
    height: 78px;

    position: sticky;
    top: 0;

    z-index: 100;

    display: grid;

    grid-template-columns:
        315px
        1fr
        auto;

    align-items: center;

    background: #ffffff;

    border-bottom: 1px solid var(--line);

    box-shadow:
        0 2px 8px rgba(0,0,0,.04);
}


.brand {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 0 24px;
}


.uploaded-logo {
    max-width: 82px;
    max-height: 58px;

    object-fit: contain;
}


.crown {
    color: var(--red);

    font-family: Georgia, serif;

    font-size: 43px;

    line-height: 1;
}


.brand-main {
    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 28px;

    font-style: italic;

    letter-spacing: -.7px;

    color: #111;

    white-space: nowrap;
}


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


.brand-sub {
    margin-top: 2px;

    color: #777;

    font-size: 8px;

    letter-spacing: 1.4px;
}


/* NAV */

nav {
    height: 100%;

    display: flex;

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

    gap: 27px;
}


nav a {
    height: 100%;

    position: relative;

    display: flex;

    align-items: center;

    color: #3d3d3d;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .15px;
}


nav a:hover {
    color: var(--red);
}


nav a.active {
    color: #111;
}


nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background: var(--red);
}


/* HEADER ACTIONS */

.header-actions {
    height: 100%;

    display: flex;

    align-items: center;

    gap: 10px;

    padding-right: 22px;
}


.search-btn {
    width: 42px;
    height: 42px;

    border: 1px solid #d4d4d4;

    background: #fff;

    color: #161616;

    font-size: 23px;
}


.search-btn:hover {
    background: #f1f1f1;
}


.join-btn {
    height: 42px;

    padding: 0 22px;

    border: 0;

    background: var(--red);

    color: white;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .4px;
}


.join-btn:hover {
    background: var(--red-dark);
}


.header-mantra {
    display: none;
}


.mobile-menu {
    display: none;
}


/* ======================================================
   PAGE
====================================================== */

.page-shell {
    width: min(var(--content), calc(100% - 40px));

    margin: auto;

    padding: 20px 0 42px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        330px;

    gap: 22px;
}


.main-column {
    min-width: 0;
}


/* ======================================================
   PANELS / EDITORIAL SECTIONS
====================================================== */

.panel,
.side-panel {
    background: #fff;

    border: 1px solid var(--line);

    border-radius: 0;

    box-shadow: none;
}


.panel {
    padding: 19px;

    margin-bottom: 20px;
}


.side-panel {
    padding: 17px;

    margin-bottom: 18px;
}


/* SECTION HEADINGS */

.section-title {
    min-height: 32px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 15px;

    padding-bottom: 10px;

    border-bottom: 3px solid #111;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 20px;

    font-weight: 400;

    letter-spacing: .3px;

    text-transform: uppercase;
}


.section-title > div:first-child {
    display: flex;

    align-items: center;

    gap: 9px;
}


.section-title small {
    display: block;

    margin-top: 2px;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: #969696;

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1px;
}


.section-icon {
    width: 7px;
    min-width: 7px;

    height: 24px;

    background: var(--red);

    font-size: 0;
}


/* ======================================================
   HERO / COVER STORY
====================================================== */

.hero {
    height: 455px;

    position: relative;

    overflow: hidden;

    margin-bottom: 20px;

    border: 0;

    background-color: #222;

    background-size: cover;

    background-position: center;
}


.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.92) 0%,
            rgba(0,0,0,.73) 31%,
            rgba(0,0,0,.24) 63%,
            rgba(0,0,0,.08) 100%
        );
}


.hero::after {
    content: "FEATURED";

    position: absolute;

    left: 32px;
    top: 28px;

    z-index: 5;

    padding: 6px 9px;

    background: var(--red);

    color: white;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.2px;
}


.hero-content {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    padding: 55px 40px 42px;
}


.hero-copy {
    max-width: 660px;
}


.hero-copy h1 {
    margin: 0;

    color: white;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(64px, 7.3vw, 98px);

    font-weight: 400;

    line-height: .8;

    text-transform: uppercase;

    letter-spacing: -.8px;
}


.hero-copy h1 small {
    display: block;

    margin-top: 20px;

    color: #e2e2e2;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 8px;
}


.scribble {
    margin: 21px 0 27px;

    color: var(--red);

    font-family:
        Georgia,
        serif;

    font-size: 27px;

    font-style: italic;

    font-weight: bold;
}


.primary-btn,
.outline-btn {
    min-height: 45px;

    display: inline-flex;

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

    padding: 0 24px;

    border-radius: 0;

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: .5px;
}


.primary-btn {
    border: 1px solid var(--red);

    background: var(--red);

    color: #fff;
}


.primary-btn:hover {
    background: var(--red-dark);
}


.outline-btn {
    margin-left: 7px;

    border: 1px solid rgba(255,255,255,.75);

    background: rgba(0,0,0,.35);

    color: #fff;
}


.outline-btn:hover {
    background: #fff;

    color: #111;
}


/* HERO SIDE BRANDING */

.hero-side-logo {
    width: 205px;

    color: white;

    text-align: right;
}


.round-logo {
    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    text-align: right;
}


.round-logo strong {
    display: block;

    font-size: 31px;
}


.round-logo span {
    display: block;

    color: var(--red);

    font-size: 24px;
}


.round-logo small,
.mini-crown {
    display: none;
}


.hero-list {
    margin-top: 18px;

    color: #d2d2d2;

    font-size: 9px;

    line-height: 1.9;

    letter-spacing: 1.4px;
}


.hero-tagline {
    margin-top: 14px;

    color: white;

    font-family:
        Georgia,
        serif;

    font-size: 16px;

    font-style: italic;

    font-weight: bold;
}


.hero-dots {
    display: none;
}


/* ======================================================
   VIDEO GRID
====================================================== */

.video-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.video-card {
    min-width: 0;
}


.video-thumb {
    height: 150px;

    position: relative;

    overflow: hidden;

    background: #d9d9d9;

    background-size: cover;

    background-position: center;
}


.video-thumb::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 45%;

    background:
        linear-gradient(
            transparent,
            rgba(0,0,0,.65)
        );
}


.fallback-art {
    height: 100%;

    display: grid;

    place-items: center;

    background: #e2e2e2;

    color: #777;

    font-family: Impact, sans-serif;

    font-size: 30px;
}


.video-card h3 {
    margin: 10px 0 5px;

    color: #171717;

    font-size: 14px;

    line-height: 1.28;

    font-weight: 800;
}


.video-card p {
    margin: 0;

    color: #8a8a8a;

    font-size: 10px;
}


.video-card:hover h3 {
    color: var(--red);
}


.play-circle {
    position: absolute;

    z-index: 4;

    left: 0;
    bottom: 0;

    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 0;

    background: var(--red);

    color: white;

    font-size: 14px;
}


.play-circle:hover {
    background: #111;
}


.duration {
    position: absolute;

    z-index: 3;

    right: 7px;
    bottom: 7px;

    padding: 3px 5px;

    background: rgba(0,0,0,.84);

    color: white;

    font-size: 9px;
}


.category-tag {
    display: inline-block;

    margin-top: 8px;

    padding-left: 6px;

    border-left: 3px solid var(--red);

    color: #8a8a8a;

    font-size: 8px;

    font-weight: bold;

    text-transform: uppercase;
}


/* ======================================================
   LOWER GRID
====================================================== */

.lower-grid {
    display: grid;

    grid-template-columns:
        1.08fr
        .95fr
        .88fr;

    gap: 20px;
}


/* ======================================================
   GAME HUBS
====================================================== */

.game-hubs {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 13px;
}


.hub-card {
    display: block;
}


.hub-art {
    height: 155px;

    overflow: hidden;

    border: 0;

    border-bottom:
        5px solid var(--game-accent);

    background: #e3e3e3;

    background-size: cover;

    background-position: center;
}


.game-placeholder {
    height: 100%;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #d8d8d8,
            #efefef
        );

    color: #777;

    font-family:
        Impact,
        sans-serif;

    font-size: 52px;
}


.hub-card strong {
    display: block;

    margin-top: 8px;

    color: #161616;

    font-size: 14px;

    font-weight: 800;
}


.hub-card:hover strong {
    color: var(--red);
}


.hub-card small {
    display: block;

    margin-top: 4px;

    color: #888;

    font-size: 9px;

    line-height: 1.35;
}


/* ======================================================
   NEWS
====================================================== */

.news-row {
    display: grid;

    grid-template-columns:
        88px
        1fr;

    gap: 11px;

    align-items: center;

    padding: 11px 0;

    border-bottom: 1px solid #e4e4e4;
}


.news-row:last-child {
    border-bottom: 0;
}


.news-thumb {
    height: 59px;

    overflow: hidden;

    background: #dedede;

    background-size: cover;

    background-position: center;

    color: transparent;

    font-size: 0;
}


.news-row h4 {
    margin: 0;

    color: #1b1b1b;

    font-size: 12px;

    font-weight: 800;

    line-height: 1.3;
}


.news-row:hover h4 {
    color: var(--red);
}


.news-row span {
    display: block;

    margin-top: 5px;

    color: #999;

    font-size: 8px;

    font-weight: bold;

    text-transform: uppercase;

    letter-spacing: .3px;
}


/* ======================================================
   REVIEWS
====================================================== */

.review-card {
    display: block;
}


.review-art {
    min-height: 130px;

    padding: 17px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.82),
            rgba(0,0,0,.18)
        ),
        #333;

    background-size: cover;

    background-position: center;

    color: white;
}


.review-art > div {
    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;
}


.review-art strong {
    display: block;

    margin-top: 39px;

    color: white;

    font-family:
        Impact,
        sans-serif;

    font-size: 32px;

    font-weight: 400;
}


.review-art small {
    display: inline-block;

    margin-top: 3px;

    padding: 4px 6px;

    background: var(--red);

    color: white;

    font-size: 8px;

    font-weight: 900;

    text-transform: uppercase;
}


.review-card blockquote {
    margin: 13px 0;

    color: #4b4b4b;

    font-family:
        Georgia,
        serif;

    font-size: 12px;

    line-height: 1.5;
}


.review-link {
    padding-top: 9px;

    border-top: 1px solid #ddd;

    color: var(--red);

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;
}


/* ======================================================
   CLIPS
====================================================== */

.clip-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}


.clip-screen {
    height: 128px;

    position: relative;

    overflow: hidden;

    background: #ddd;

    background-size: cover;

    background-position: center;

    color: transparent;

    font-size: 0;
}


.clip strong {
    display: block;

    margin-top: 8px;

    color: #191919;

    font-size: 12px;
}


.clip:hover strong {
    color: var(--red);
}


.clip span {
    color: #999;

    font-size: 9px;
}


/* ======================================================
   ABOUT
====================================================== */

.about-copy {
    display: grid;

    grid-template-columns:
        95px
        1fr;

    gap: 24px;

    align-items: center;

    padding: 22px 8px;
}


.about-logo {
    color: var(--red);

    font-family:
        Georgia,
        serif;

    font-size: 68px;

    text-align: center;
}


.about-copy h2 {
    margin: 0;

    color: #111;

    font-family:
        Impact,
        sans-serif;

    font-size: 29px;

    font-weight: 400;
}


.about-copy p {
    max-width: 760px;

    margin-bottom: 0;

    color: #696969;

    font-size: 13px;

    line-height: 1.65;
}


/* ======================================================
   SIDEBAR
====================================================== */

.sidebar {
    min-width: 0;
}


/* UPCOMING */

.upcoming article {
    display: grid;

    grid-template-columns:
        76px
        1fr;

    gap: 11px;

    padding: 11px 0;

    margin: 0;

    border-bottom: 1px solid #e4e4e4;
}


.upcoming article:last-child {
    border-bottom: 0;
}


.upcoming-thumb {
    height: 58px;

    overflow: hidden;

    background: #ddd;

    background-size: cover;

    background-position: center;

    color: transparent;

    font-size: 0;
}


.upcoming strong {
    color: #222;

    font-size: 11px;

    font-weight: 800;

    line-height: 1.3;
}


.upcoming span {
    display: block;

    margin-top: 5px;

    color: #999;

    font-size: 9px;
}


/* ======================================================
   POLL
====================================================== */

.poll h3 {
    margin: 8px 0 15px;

    color: #222;

    font-size: 13px;
}


.poll label {
    display: block;

    margin: 12px 0;

    color: #555;

    font-size: 11px;
}


.poll input {
    accent-color: var(--red);
}


.vote-button {
    width: 100%;

    margin-top: 8px;

    padding: 11px;

    border: 0;

    background: var(--red);

    color: white;

    font-size: 10px;

    font-weight: 900;

    text-transform: uppercase;
}


.vote-button:hover {
    background: var(--red-dark);
}


/* ======================================================
   CREW / EMAIL
====================================================== */

.crew-copy {
    color: #6d6d6d;

    font-size: 11px;

    line-height: 1.55;
}


.subscribe {
    display: flex;
}


.subscribe input {
    min-width: 0;

    flex: 1;

    padding: 11px;

    border: 1px solid #d5d5d5;

    border-right: 0;

    background: #fafafa;

    color: #222;

    font-size: 10px;

    outline: none;
}


.subscribe input:focus {
    border-color: #aaa;
}


.subscribe button {
    border: 0;

    background: var(--red);

    color: white;

    padding: 0 14px;

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;
}


.message {
    min-height: 15px;

    margin-top: 7px;

    color: #888;

    font-size: 9px;
}


/* ======================================================
   GTA VI HUB
====================================================== */

.gta-callout {
    display: grid;

    grid-template-columns:
        70px
        1fr;

    gap: 14px;

    align-items: center;

    border: 1px solid #d7d7d7;

    border-top: 5px solid #df477f;

    background:
        linear-gradient(
            135deg,
            #f8e4ec,
            #fff
        );
}


.gta-six {
    color: #d72d70;

    font-family:
        Impact,
        sans-serif;

    font-size: 57px;

    font-style: italic;
}


.gta-callout small {
    color: #8a7180;

    font-size: 8px;

    font-weight: bold;

    letter-spacing: 1px;
}


.gta-callout h2 {
    margin: 2px 0;

    color: #171717;

    font-family:
        Impact,
        sans-serif;

    font-size: 24px;

    font-weight: 400;
}


.gta-callout p {
    margin: 5px 0 9px;

    color: #777;

    font-size: 9px;
}


.gta-callout a {
    color: #cc2363;

    font-size: 9px;

    font-weight: 900;
}


/* ======================================================
   QUOTE
====================================================== */

.quote-panel {
    border-left: 5px solid var(--red);
}


.quote-crown {
    display: none;
}


.quote-panel blockquote {
    margin: 0;

    color: #242424;

    font-family:
        Georgia,
        serif;

    font-size: 15px;

    font-style: italic;

    line-height: 1.5;
}


.quote-panel small {
    display: block;

    margin-top: 12px;

    color: #999;

    font-size: 8px;

    font-weight: bold;
}


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

footer {
    width: min(var(--content), calc(100% - 40px));

    min-height: 76px;

    margin: auto;

    padding: 0;

    display: grid;

    grid-template-columns:
        1fr
        1.4fr
        1fr
        1fr;

    align-items: center;

    border-top: 4px solid #151515;

    color: #777;

    font-size: 9px;
}


.footer-brand {
    color: var(--red);

    font-weight: 900;
}


.socials {
    display: flex;

    justify-content: center;

    gap: 15px;

    color: #333;

    font-size: 16px;
}


/* ======================================================
   VIDEO MODAL
====================================================== */

.video-modal,
.search-overlay {
    display: none;

    position: fixed;

    z-index: 500;

    inset: 0;

    background: rgba(0,0,0,.95);
}


.video-modal.open {
    display: flex;

    align-items: center;
    justify-content: center;
}


.video-modal-inner {
    width: min(1050px,92vw);

    color: white;
}


.video-modal-inner h2 {
    font-size: 17px;
}


.video-close,
.close-search {
    position: absolute;

    top: 24px;
    right: 35px;

    border: 0;

    background: transparent;

    color: white;

    font-size: 40px;
}


.video-frame-wrap {
    aspect-ratio: 16/9;

    background: black;
}


.video-frame-wrap iframe {
    width: 100%;
    height: 100%;

    border: 0;
}


/* ======================================================
   SEARCH
====================================================== */

.search-overlay.open {
    display: flex;

    justify-content: center;

    padding-top: 120px;
}


.search-box {
    width: min(720px,90%);

    color: white;
}


.search-box h2 {
    font-family:
        Impact,
        sans-serif;

    font-size: 34px;

    font-weight: 400;
}


.search-box input {
    width: 100%;

    padding: 16px;

    border: 1px solid #555;

    background: white;

    color: #111;

    outline: none;
}


.search-result {
    padding: 13px;

    border-bottom: 1px solid #333;

    background: #151515;

    color: #eee;

    font-size: 12px;
}


/* ======================================================
   GAME PAGES
====================================================== */

.simple-header {
    height: 72px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 0 6vw;

    background: white;

    border-bottom: 1px solid #ddd;

    color: #111;
}


.simple-brand {
    font-family:
        Impact,
        sans-serif;

    font-size: 25px;
}


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


.article-shell {
    max-width: 1100px;

    margin: 32px auto;

    padding: 0 20px;
}


.game-page-hero {
    min-height: 400px;

    display: flex;

    align-items: flex-end;

    padding: 50px;

    border: 0;

    border-bottom:
        7px solid var(--accent);

    background-color: #222;

    background-size: cover;

    background-position: center;

    color: white;
}


.game-page-hero small {
    color: #ccc;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: 2px;
}


.game-page-hero h1 {
    margin: 7px 0;

    font-family:
        Impact,
        sans-serif;

    font-size: 75px;

    font-weight: 400;
}


.game-page-hero p {
    max-width: 600px;

    color: #dedede;

    line-height: 1.5;
}


/* ======================================================
   ARTICLE / REVIEW PAGES
====================================================== */

.article-page {
    padding: 38px;

    border: 1px solid #ddd;

    background: white;
}


.article-image {
    width: 100%;

    max-height: 520px;

    object-fit: cover;
}


.article-meta {
    margin-top: 23px;

    color: #999;

    font-size: 9px;

    font-weight: bold;

    text-transform: uppercase;
}


.article-page h1 {
    margin: 10px 0 22px;

    color: #111;

    font-family:
        Impact,
        sans-serif;

    font-size: 52px;

    font-weight: 400;

    line-height: 1;
}


.article-page h2 {
    color: #494949;
}


.article-body {
    color: #444;

    font-family:
        Georgia,
        serif;

    font-size: 16px;

    line-height: 1.9;

    white-space: pre-wrap;
}


.source-button {
    display: inline-block;

    margin-top: 30px;

    padding: 12px 18px;

    background: var(--red);

    color: white;

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;
}


.review-score-big {
    color: var(--red);

    font-family:
        Impact,
        sans-serif;

    font-size: 40px;

    font-weight: 400;
}


/* ======================================================
   EMPTY CONTENT
====================================================== */

.empty-state {
    padding: 25px;

    border-left: 4px solid var(--red);

    background: #f4f4f4;

    color: #777;

    font-size: 11px;
}


/* ======================================================
   RESPONSIVE — LAPTOP
====================================================== */

@media (max-width: 1120px) {

    .topbar {
        grid-template-columns:
            270px
            1fr
            auto;
    }


    nav {
        gap: 13px;
    }


    nav a {
        font-size: 10px;
    }


    .page-shell {
        grid-template-columns:
            1fr
            300px;
    }


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


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


    .lower-grid section:last-child {
        grid-column:
            span 2;
    }
}


/* ======================================================
   RESPONSIVE — TABLET
====================================================== */

@media (max-width: 880px) {

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


    nav {
        display: none;

        position: absolute;

        top: 78px;

        left: 0;
        right: 0;

        height: auto;

        padding: 15px 20px;

        background: white;

        border-bottom: 1px solid #ddd;

        flex-direction: column;

        align-items: flex-start;
    }


    nav.open {
        display: flex;
    }


    nav a {
        width: 100%;

        height: 38px;

        color: #222;
    }


    nav a.active::after {
        display: none;
    }


    .mobile-menu {
        display: block;

        border: 0;

        background: transparent;

        color: #111;

        font-size: 26px;
    }


    .join-btn {
        display: none;
    }


    .page-shell {
        grid-template-columns:
            1fr;
    }


    .sidebar {
        display: grid;

        grid-template-columns:
            repeat(2,1fr);

        gap: 16px;
    }


    .side-panel {
        margin-bottom: 0;
    }


    footer {
        grid-template-columns:
            1fr
            1fr;

        gap: 16px;

        padding: 20px 0;
    }
}


/* ======================================================
   RESPONSIVE — PHONE
====================================================== */

@media (max-width: 600px) {

    .brand {
        padding-left: 12px;
    }


    .brand-main {
        font-size: 22px;
    }


    .brand-sub {
        display: none;
    }


    .page-shell {
        width: calc(100% - 16px);

        padding-top: 8px;
    }


    .hero {
        height: 450px;
    }


    .hero-content {
        align-items: flex-end;

        padding: 35px 24px;
    }


    .hero-copy h1 {
        font-size: 55px;
    }


    .hero-copy h1 small {
        font-size: 11px;

        letter-spacing: 5px;
    }


    .hero-side-logo {
        display: none;
    }


    .video-grid,
    .clip-grid,
    .lower-grid,
    .sidebar {
        grid-template-columns:
            1fr;
    }


    .lower-grid section:last-child {
        grid-column: auto;
    }


    .game-hubs {
        grid-template-columns:
            1fr
            1fr;
    }


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


    footer {
        width: calc(100% - 24px);

        grid-template-columns:
            1fr;

        text-align: center;
    }


    .game-page-hero {
        min-height: 310px;

        padding: 28px;
    }


    .game-page-hero h1 {
        font-size: 50px;
    }


    .article-page {
        padding: 21px;
    }


    .article-page h1 {
        font-size: 39px;
    }


    .article-body {
        font-size: 15px;
    }
}


/* ==========================================================
   BOXXHEAD GAMING — EDITORIAL FRONT PAGE
   v3
========================================================== */

.front-page {
    margin-bottom: 13px;
}


/* TRENDING STRIP */

.trend-strip {
    min-height: 38px;

    display: flex;

    align-items: stretch;

    margin-bottom: 12px;

    background: #171717;

    color: white;

    overflow: hidden;
}


.trend-label {
    min-width: 135px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    background: var(--red);

    color: white;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.trend-text {
    display: flex;

    align-items: center;

    padding: 0 18px;

    color: #c9c9c9;

    font-size: 9px;

    font-weight: bold;

    letter-spacing: .6px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}



/* ==========================================================
   FEATURE + TOP STORIES GRID
========================================================== */

.front-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.82fr)
        minmax(300px, .82fr);

    gap: 12px;
}



/* ==========================================================
   LARGE FEATURE STORY
========================================================== */

.lead-story {
    min-height: 520px;

    position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    background-color: #222;

    background-image:
        linear-gradient(
            0deg,
            rgba(0,0,0,.94) 0%,
            rgba(0,0,0,.58) 40%,
            rgba(0,0,0,.12) 74%
        );

    background-size: cover;

    background-position: center;
}


.lead-story::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 5px;

    background: var(--red);
}


.lead-badge {
    position: absolute;

    top: 0;
    left: 0;

    z-index: 4;

    padding: 8px 13px;

    background: var(--red);

    color: white;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .9px;
}


.lead-content {
    position: relative;

    z-index: 3;

    width: min(720px, 90%);

    padding: 38px;
}


.lead-category {
    margin-bottom: 11px;

    color: #efefef;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.lead-content h1 {
    margin: 0;

    color: white;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(45px, 5.4vw, 75px);

    font-weight: 400;

    line-height: .96;

    letter-spacing: -.5px;

    text-transform: uppercase;
}


.lead-content p {
    max-width: 630px;

    margin: 14px 0 0;

    color: #d6d6d6;

    font-size: 13px;

    line-height: 1.5;
}


.lead-actions {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;
}


.lead-watch,
.lead-secondary {
    min-height: 42px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 19px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.lead-watch {
    border: 0;

    background: var(--red);

    color: white;
}


.lead-watch:hover {
    background: #bd0010;
}


.lead-secondary {
    border: 1px solid rgba(255,255,255,.7);

    background: rgba(0,0,0,.35);

    color: white;
}


.lead-secondary:hover {
    background: white;

    color: #111;
}



/* ==========================================================
   TOP STORIES
========================================================== */

.top-stories {
    background: white;

    border-top: 5px solid #171717;

    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}


.top-stories-heading {
    height: 50px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 15px;

    border-bottom: 1px solid #dedede;
}


.top-stories-heading span {
    font-family:
        Impact,
        sans-serif;

    font-size: 19px;

    letter-spacing: .3px;
}


.top-stories-heading small {
    padding: 4px 6px;

    background: var(--red);

    color: white;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .6px;
}


.top-story {
    min-height: 145px;

    display: grid;

    grid-template-columns:
        43%
        57%;

    color: #161616;

    border-bottom: 1px solid #e1e1e1;

    background: white;
}


.top-story:last-child {
    border-bottom: 0;
}


.top-story:hover h3 {
    color: var(--red);
}


.top-story-image {
    min-height: 145px;

    position: relative;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #d7d7d7,
            #eeeeee
        );

    background-size: cover;

    background-position: center;

    overflow: hidden;
}


.top-story-image::after {
    content: "";

    position: absolute;

    inset: 0;

    border-right: 1px solid rgba(0,0,0,.04);
}


.story-placeholder {
    color: #a5a5a5;

    font-family:
        Impact,
        sans-serif;

    font-size: 24px;

    letter-spacing: 2px;
}


.top-story-copy {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 14px;
}


.story-type {
    margin-bottom: 6px;

    color: var(--red);

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .8px;

    text-transform: uppercase;
}


.top-story h3 {
    margin: 0;

    font-size: 13px;

    font-weight: 800;

    line-height: 1.27;

    transition: color .14s;
}


.top-story-copy span {
    margin-top: 8px;

    color: #9a9a9a;

    font-size: 8px;

    font-weight: bold;

    text-transform: uppercase;
}



/* ==========================================================
   CATEGORY BAR
========================================================== */

.category-bar {
    min-height: 48px;

    display: flex;

    align-items: stretch;

    margin-bottom: 20px;

    background: white;

    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}


.category-bar a {
    flex: 1;

    min-width: 85px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 13px;

    border-right: 1px solid #e3e3e3;

    color: #343434;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: .5px;

    text-transform: uppercase;
}


.category-bar a:last-child {
    border-right: 0;
}


.category-bar a:hover {
    background: #171717;

    color: white;
}



/* ==========================================================
   MORE MAGAZINE-LIKE SECTION HEADERS
========================================================== */

.section-title {
    border-bottom:
        4px solid #191919;
}


.section-title::after {
    content: "";

    position: absolute;
}


.section-title a {
    color: var(--red);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 8px;

    font-weight: 900;

    text-transform: uppercase;
}



/* ==========================================================
   LATEST VIDEO FIRST ITEM EMPHASIS
========================================================== */

#latest .video-grid {
    align-items: start;
}


#latest .video-card:first-child {
    grid-column: span 2;
}


#latest .video-card:first-child .video-thumb {
    height: 250px;
}


#latest .video-card:first-child h3 {
    margin-top: 12px;

    font-size: 20px;

    line-height: 1.15;
}



/* ==========================================================
   NEWS MORE EDITORIAL
========================================================== */

#news .news-row:first-child {
    display: block;

    padding-top: 0;

    padding-bottom: 14px;
}


#news .news-row:first-child .news-thumb {
    height: 140px;

    margin-bottom: 10px;
}


#news .news-row:first-child h4 {
    font-size: 16px;

    line-height: 1.2;
}



/* ==========================================================
   RED TOP MARKER FOR MAJOR SECTIONS
========================================================== */

#latest,
#games,
#news,
#reviews,
#clips,
#about {
    position: relative;
}


#latest::before,
#games::before,
#news::before,
#reviews::before,
#clips::before,
#about::before {
    content: "";

    position: absolute;

    left: -1px;
    top: -1px;

    width: 45px;
    height: 4px;

    background: var(--red);
}



/* ==========================================================
   SIDEBAR HEADINGS
========================================================== */

.sidebar .section-title {
    border-bottom:
        3px solid #1b1b1b;
}



/* ==========================================================
   LAPTOP
========================================================== */

@media (max-width: 1100px) {

    .front-grid {
        grid-template-columns:
            1.55fr
            .85fr;
    }


    .lead-story {
        min-height: 470px;
    }


    .lead-content {
        padding: 30px;
    }


    .top-story {
        min-height: 130px;
    }


    .top-story-image {
        min-height: 130px;
    }

}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 850px) {

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


    .lead-story {
        min-height: 480px;
    }


    .top-stories {
        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        border-top-width: 4px;
    }


    .top-stories-heading {
        grid-column:
            1 / -1;
    }


    .top-story {
        min-height: auto;

        display: block;

        border-right: 1px solid #e2e2e2;

        border-bottom: 0;
    }


    .top-story:last-child {
        border-right: 0;
    }


    .top-story-image {
        min-height: 130px;
    }


    .top-story-copy {
        min-height: 115px;

        justify-content: flex-start;
    }


    .category-bar {
        overflow-x: auto;

        justify-content: flex-start;
    }


    .category-bar a {
        flex: 0 0 auto;

        min-width: 105px;
    }

}



/* ==========================================================
   PHONE
========================================================== */

@media (max-width: 600px) {

    .trend-strip {
        min-height: 35px;
    }


    .trend-label {
        min-width: 110px;

        padding: 0 10px;

        font-size: 8px;
    }


    .trend-text {
        padding: 0 11px;

        font-size: 7px;
    }


    .lead-story {
        min-height: 430px;

        background-position: center;
    }


    .lead-content {
        width: 100%;

        padding: 26px 22px;
    }


    .lead-content h1 {
        font-size: 44px;
    }


    .lead-content p {
        font-size: 11px;
    }


    .lead-actions {
        flex-direction: column;

        align-items: flex-start;
    }


    .lead-watch,
    .lead-secondary {
        width: 100%;
    }


    .top-stories {
        display: block;
    }


    .top-story {
        min-height: 115px;

        display: grid;

        grid-template-columns:
            40%
            60%;

        border-right: 0;

        border-bottom: 1px solid #e1e1e1;
    }


    .top-story-image {
        min-height: 115px;
    }


    .top-story-copy {
        min-height: auto;

        justify-content: center;

        padding: 11px;
    }


    .top-story h3 {
        font-size: 12px;
    }


    #latest .video-card:first-child {
        grid-column: auto;
    }


    #latest .video-card:first-child .video-thumb {
        height: 190px;
    }


    #latest .video-card:first-child h3 {
        font-size: 17px;
    }

}


/* ======================================================
   BOXXHEAD TEMP LOGO
====================================================== */

.temp-boxx-logo {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: grid;

    place-items: center;

    position: relative;
}


.temp-box-head {
    width: 42px;
    height: 42px;

    position: relative;

    display: grid;
    place-items: center;

    background: #181818;

    border: 3px solid #e30613;

    transform: rotate(-4deg);
}


.temp-box-head::before {
    content: "";

    position: absolute;

    width: 27px;
    height: 13px;

    left: 4px;
    top: -10px;

    border-top: 5px solid #242424;

    border-radius: 50%;
}


.temp-box-head::after {
    content: "";

    position: absolute;

    inset: 4px;

    border: 1px solid #444;
}


.temp-box-head span {
    position: relative;

    z-index: 2;

    color: white;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 18px;

    font-style: italic;

    letter-spacing: .5px;
}



/* ======================================================
   DIRECT VIDEO EMBEDS
====================================================== */

.inline-video {
    width: 100%;

    aspect-ratio: 16 / 9;

    position: relative;

    overflow: hidden;

    background: #000;
}


.inline-video iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}



/* Keep normal cards and direct embeds same visual size */

.video-card .inline-video {
    min-height: 150px;
}


#latest .video-card:first-child .inline-video {
    min-height: 250px;
}



/* ======================================================
   VIDEO LABEL
====================================================== */

.video-card:has(.inline-video)::before {
    content: "WATCH HERE";

    display: inline-block;

    margin-bottom: 6px;

    padding: 4px 6px;

    background: #e30613;

    color: white;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .7px;
}



/* ======================================================
   MOBILE EMBEDS
====================================================== */

@media(max-width:600px) {

    .temp-boxx-logo {
        width: 43px;
        height: 43px;

        flex-basis: 43px;
    }

    .temp-box-head {
        width: 36px;
        height: 36px;
    }

    .temp-box-head span {
        font-size: 15px;
    }

    .video-card .inline-video,
    #latest .video-card:first-child .inline-video {
        min-height: 0;
    }

}


/* ======================================================
   BOXXHEAD GAMING WATCH PAGE
====================================================== */

.watch-body {
    margin: 0;

    background: #f3f3f3;

    color: #181818;
}


/* HEADER */

.watch-header {
    min-height: 76px;

    display: grid;

    grid-template-columns:
        300px
        1fr
        auto;

    align-items: center;

    padding: 0 32px;

    background: #fff;

    border-bottom: 1px solid #dcdcdc;
}


.watch-brand {
    display: flex;

    align-items: center;

    gap: 11px;
}


.watch-temp-logo {
    width: 44px;
    height: 44px;

    display: grid;

    place-items: center;

    background: #171717;

    border: 3px solid #e30613;

    color: white;

    font-family:
        Impact,
        sans-serif;

    font-size: 17px;

    font-style: italic;

    transform: rotate(-3deg);
}


.watch-brand strong {
    display: block;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 22px;

    font-weight: 400;

    font-style: italic;
}


.watch-brand strong span {
    color: #e30613;
}


.watch-brand small {
    display: block;

    margin-top: 2px;

    color: #969696;

    font-size: 7px;

    letter-spacing: 1px;
}


.watch-nav {
    height: 76px;

    display: flex;

    justify-content: center;

    gap: 28px;
}


.watch-nav a {
    height: 76px;

    display: flex;

    align-items: center;

    color: #444;

    font-size: 9px;

    font-weight: 900;
}


.watch-nav a:hover {
    color: #e30613;
}


.watch-back {
    padding: 10px 12px;

    border: 1px solid #ddd;

    color: #444;

    font-size: 9px;

    font-weight: 900;
}


/* PAGE */

.watch-page {
    width: min(
        1450px,
        calc(100% - 40px)
    );

    margin: 28px auto 50px;
}


.watch-layout {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        330px;

    gap: 25px;
}


.watch-main {
    min-width: 0;
}


.watch-category {
    margin-bottom: 8px;

    color: #e30613;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.watch-title {
    max-width: 1000px;

    margin: 0 0 18px;

    color: #121212;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(36px,4vw,62px);

    font-weight: 400;

    line-height: 1;

    text-transform: uppercase;
}


/* PLAYER */

.watch-player {
    width: 100%;

    aspect-ratio: 16 / 9;

    position: relative;

    overflow: hidden;

    background: #000;
}


.watch-player iframe {
    width: 100%;
    height: 100%;

    display: block;

    border: 0;
}


.watch-no-video {
    width: 100%;
    height: 100%;

    display: flex;

    flex-direction: column;

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

    gap: 8px;

    color: white;
}


.watch-no-video span {
    color: #aaa;

    font-size: 11px;
}


/* INFO */

.watch-info {
    padding: 22px 0 28px;

    border-bottom: 1px solid #d7d7d7;
}


.watch-meta {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;

    margin-bottom: 14px;
}


.watch-meta span {
    padding: 5px 8px;

    background: #e7e7e7;

    color: #666;

    font-size: 8px;

    font-weight: bold;
}


.watch-description {
    max-width: 900px;

    margin: 0;

    color: #555;

    font-size: 13px;

    line-height: 1.65;
}


.watch-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-top: 19px;
}


.watch-action {
    min-height: 38px;

    display: inline-flex;

    align-items: center;

    padding: 0 13px;

    border: 1px solid #cfcfcf;

    background: white;

    color: #282828;

    font-size: 8px;

    font-weight: 900;
}


.watch-action:hover {
    border-color: #171717;
}


.watch-action.primary {
    border-color: #e30613;

    background: #e30613;

    color: white;
}


.watch-action.youtube {
    border-color: #202020;

    background: #202020;

    color: white;
}


/* RELATED */

.watch-related {
    margin-top: 28px;
}


.watch-section-heading {
    min-height: 45px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 16px;

    border-bottom: 4px solid #181818;
}


.watch-section-heading span {
    font-family:
        Impact,
        sans-serif;

    font-size: 20px;
}


.watch-section-heading a {
    color: #e30613;

    font-size: 8px;

    font-weight: 900;
}


.watch-related-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 18px;
}


.watch-related-card {
    min-width: 0;
}


.watch-related-thumb {
    aspect-ratio: 16 / 9;

    position: relative;

    overflow: hidden;

    background: #ddd;

    background-size: cover;

    background-position: center;
}


.watch-related-card:hover h3 {
    color: #e30613;
}


.watch-play-badge {
    width: 37px;
    height: 37px;

    position: absolute;

    left: 0;
    bottom: 0;

    display: grid;

    place-items: center;

    background: #e30613;

    color: white;

    font-size: 11px;
}


.watch-duration {
    position: absolute;

    right: 6px;
    bottom: 6px;

    padding: 3px 5px;

    background: rgba(0,0,0,.85);

    color: white;

    font-size: 8px;
}


.watch-related-category {
    margin-top: 8px;

    color: #e30613;

    font-size: 7px;

    font-weight: 900;

    text-transform: uppercase;
}


.watch-related-card h3 {
    margin: 4px 0;

    color: #1b1b1b;

    font-size: 13px;

    line-height: 1.3;
}


.watch-related-meta {
    color: #919191;

    font-size: 8px;
}


/* SIDEBAR */

.watch-sidebar {
    min-width: 0;
}


.watch-side-box {
    margin-bottom: 18px;

    padding: 16px;

    background: #fff;

    border: 1px solid #dcdcdc;
}


.watch-side-title {
    margin-bottom: 13px;

    padding-bottom: 9px;

    border-bottom: 3px solid #181818;

    font-family:
        Impact,
        sans-serif;

    font-size: 17px;
}


.watch-next-item {
    display: grid;

    grid-template-columns:
        110px
        1fr;

    gap: 10px;

    padding: 10px 0;

    border-bottom: 1px solid #e4e4e4;
}


.watch-next-item:last-child {
    border-bottom: 0;
}


.watch-next-image {
    aspect-ratio: 16 / 9;

    position: relative;

    display: grid;

    place-items: center;

    background: #ddd;

    background-size: cover;

    background-position: center;
}


.watch-next-image span {
    width: 28px;
    height: 28px;

    display: grid;

    place-items: center;

    background: #e30613;

    color: white;

    font-size: 9px;
}


.watch-next-item strong {
    display: block;

    color: #222;

    font-size: 10px;

    line-height: 1.3;
}


.watch-next-item:hover strong {
    color: #e30613;
}


.watch-next-item small {
    display: block;

    margin-top: 5px;

    color: #999;

    font-size: 7px;

    font-weight: bold;

    text-transform: uppercase;
}


.watch-crew {
    border-top: 5px solid #e30613;
}


.watch-crew h2 {
    margin: 3px 0 9px;

    font-family:
        Impact,
        sans-serif;

    font-size: 24px;

    font-weight: 400;
}


.watch-crew p {
    color: #696969;

    font-size: 11px;

    line-height: 1.5;
}


.watch-crew a {
    color: #e30613;

    font-size: 8px;

    font-weight: 900;
}


.watch-game-link {
    min-height: 38px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e5e5e5;

    color: #333;

    font-size: 10px;

    font-weight: 800;
}


.watch-game-link:hover {
    color: #e30613;
}


/* CLIP PAGE */

.clip-watch-shell {
    max-width: 1050px;

    margin: auto;
}


/* FOOTER */

.watch-footer {
    width: min(
        1450px,
        calc(100% - 40px)
    );

    min-height: 70px;

    margin: auto;

    display: grid;

    grid-template-columns:
        1fr
        1fr
        1fr;

    align-items: center;

    border-top: 4px solid #191919;

    color: #888;

    font-size: 8px;
}


.watch-footer strong {
    color: #e30613;
}


/* RESPONSIVE */

@media(max-width:1000px) {

    .watch-layout {
        grid-template-columns:
            minmax(0,1fr)
            280px;
    }


    .watch-header {
        grid-template-columns:
            260px
            1fr
            auto;
    }


    .watch-nav {
        gap: 15px;
    }

}


@media(max-width:820px) {

    .watch-layout {
        grid-template-columns: 1fr;
    }


    .watch-sidebar {
        display: grid;

        grid-template-columns:
            1fr
            1fr;

        gap: 14px;
    }


    .watch-side-box {
        margin-bottom: 0;
    }


    .watch-sidebar .watch-side-box:first-child {
        grid-column:
            1 / -1;
    }


    .watch-header {
        grid-template-columns:
            1fr
            auto;
    }


    .watch-nav {
        display: none;
    }


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

}


@media(max-width:560px) {

    .watch-page {
        width: calc(100% - 18px);

        margin-top: 17px;
    }


    .watch-header {
        min-height: 64px;

        padding: 0 11px;
    }


    .watch-brand small {
        display: none;
    }


    .watch-brand strong {
        font-size: 18px;
    }


    .watch-temp-logo {
        width: 38px;
        height: 38px;
    }


    .watch-back {
        padding: 8px;

        font-size: 7px;
    }


    .watch-title {
        font-size: 38px;
    }


    .watch-related-grid,
    .watch-sidebar {
        grid-template-columns: 1fr;
    }


    .watch-sidebar .watch-side-box:first-child {
        grid-column: auto;
    }


    .watch-next-item {
        grid-template-columns:
            120px
            1fr;
    }


    .watch-footer {
        width: calc(100% - 20px);

        grid-template-columns: 1fr;

        gap: 8px;

        padding: 17px 0;
    }

}


/* ======================================================
   BOXXHEAD DISCOVERY BAR
====================================================== */

.boxx-discovery-bar {
    background: #fff;

    border-bottom: 1px solid #dedede;
}


.boxx-home-search {
    width: min(
        1420px,
        calc(100% - 40px)
    );

    margin: auto;

    padding: 13px 0 10px;

    display: flex;
}


.boxx-home-search input {
    flex: 1;

    min-width: 0;

    height: 39px;

    padding: 0 13px;

    border: 1px solid #cfcfcf;

    border-right: 0;

    background: #f7f7f7;

    color: #111;

    font: inherit;

    outline: none;
}


.boxx-home-search input:focus {
    border-color: #111;

    background: #fff;
}


.boxx-home-search button {
    min-width: 90px;

    border: 0;

    background: #e30613;

    color: #fff;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .7px;

    cursor: pointer;
}


.boxx-category-links {
    width: min(
        1420px,
        calc(100% - 40px)
    );

    margin: auto;

    display: flex;

    overflow-x: auto;

    border-top: 1px solid #ededed;

    scrollbar-width: none;
}


.boxx-category-links::-webkit-scrollbar {
    display: none;
}


.boxx-category-links a {
    flex: 0 0 auto;

    padding: 11px 18px 10px 0;

    margin-right: 19px;

    border-bottom: 3px solid transparent;

    color: #555;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .5px;
}


.boxx-category-links a:hover {
    color: #e30613;

    border-color: #e30613;
}



/* ======================================================
   SEARCH / CATEGORY ARCHIVES
====================================================== */

.boxx-archive-body {
    margin: 0;

    background: #f3f3f3;

    color: #171717;
}


.archive-header {
    min-height: 72px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 0 28px;

    background: white;

    border-bottom: 1px solid #ddd;
}


.archive-brand {
    display: flex;

    align-items: center;

    gap: 11px;

    color: #171717;
}


.archive-bx {
    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    background: #171717;

    border: 3px solid #e30613;

    color: white;

    font-family:
        Impact,
        sans-serif;

    font-style: italic;

    transform: rotate(-3deg);
}


.archive-brand strong {
    display: block;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 21px;

    font-weight: 400;

    font-style: italic;
}


.archive-brand strong span {
    color: #e30613;
}


.archive-brand small {
    display: block;

    margin-top: 2px;

    color: #999;

    font-size: 7px;

    letter-spacing: 1px;
}


.archive-home,
.archive-header-actions a {
    color: #555;

    font-size: 8px;

    font-weight: 900;
}


.archive-header-actions {
    display: flex;

    gap: 20px;
}


.archive-shell {
    width: min(
        1250px,
        calc(100% - 40px)
    );

    margin: 35px auto 70px;
}


.archive-kicker {
    margin-bottom: 5px;

    color: #e30613;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: 1px;
}


.archive-shell > h1 {
    margin: 0 0 22px;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size:
        clamp(42px,6vw,76px);

    font-weight: 400;

    line-height: 1;
}


.archive-search {
    display: flex;

    max-width: 900px;

    margin-bottom: 24px;
}


.archive-search input {
    flex: 1;

    min-width: 0;

    height: 50px;

    padding: 0 15px;

    border: 1px solid #bbb;

    background: white;

    color: #171717;

    font-size: 14px;

    outline: none;
}


.archive-search input:focus {
    border-color: #181818;
}


.archive-search button {
    width: 110px;

    border: 0;

    background: #e30613;

    color: white;

    font-size: 9px;

    font-weight: 900;

    cursor: pointer;
}


.archive-count {
    margin: 20px 0 14px;

    padding-bottom: 10px;

    border-bottom: 4px solid #181818;

    color: #555;

    font-size: 8px;

    font-weight: 900;

    letter-spacing: .7px;
}


.archive-results {
    display: grid;

    gap: 14px;
}


.archive-card {
    display: grid;

    grid-template-columns:
        250px
        minmax(0,1fr);

    min-height: 145px;

    background: white;

    border: 1px solid #ddd;

    color: #181818;
}


.archive-card:hover h2 {
    color: #e30613;
}


.archive-thumb {
    min-height: 145px;

    background-size: cover;

    background-position: center;
}


.archive-no-image {
    display: grid;

    place-items: center;

    background: #181818;
}


.archive-no-image span {
    color: white;

    font-family:
        Impact,
        sans-serif;

    font-size: 38px;
}


.archive-card-copy {
    padding: 18px;
}


.archive-type {
    color: #e30613;

    font-size: 7px;

    font-weight: 900;

    letter-spacing: .7px;

    text-transform: uppercase;
}


.archive-card h2,
.category-card h2 {
    margin: 5px 0 7px;

    font-family:
        Impact,
        "Arial Narrow Bold",
        sans-serif;

    font-size: 23px;

    font-weight: 400;

    line-height: 1.05;
}


.archive-card p,
.category-card p {
    max-width: 760px;

    margin: 0 0 12px;

    color: #666;

    font-size: 11px;

    line-height: 1.5;
}


.archive-read {
    color: #e30613;

    font-size: 8px;

    font-weight: 900;
}


.archive-empty {
    padding: 35px;

    background: white;

    border: 1px solid #ddd;
}


.archive-empty strong {
    display: block;

    font-family:
        Impact,
        sans-serif;

    font-size: 25px;

    font-weight: 400;
}


.archive-empty p {
    color: #777;
}


.archive-browse,
.category-nav {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;
}


.archive-browse a,
.category-nav a {
    padding: 10px 13px;

    background: white;

    border: 1px solid #ccc;

    color: #333;

    font-size: 8px;

    font-weight: 900;
}


.archive-browse a:hover,
.category-nav a:hover {
    border-color: #e30613;

    background: #e30613;

    color: white;
}


.archive-grid {
    display: grid;

    grid-template-columns:
        repeat(3,minmax(0,1fr));

    gap: 18px;
}


.category-card {
    overflow: hidden;

    background: white;

    border: 1px solid #ddd;

    color: #181818;
}


.category-card:hover h2 {
    color: #e30613;
}


.category-card-image {
    aspect-ratio: 16 / 9;

    background-size: cover;

    background-position: center;
}


.category-card-body {
    padding: 15px;
}



/* MOBILE */

@media(max-width:800px) {

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


    .archive-card {
        grid-template-columns:
            180px
            minmax(0,1fr);
    }

}


@media(max-width:560px) {

    .archive-header {
        min-height: 62px;

        padding: 0 11px;
    }


    .archive-brand strong {
        font-size: 17px;
    }


    .archive-brand small {
        display: none;
    }


    .archive-bx {
        width: 36px;
        height: 36px;
    }


    .archive-shell {
        width: calc(100% - 20px);

        margin-top: 24px;
    }


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


    .archive-card {
        grid-template-columns: 1fr;
    }


    .archive-thumb {
        aspect-ratio: 16 / 9;

        min-height: 0;
    }


    .boxx-home-search,
    .boxx-category-links {
        width: calc(100% - 20px);
    }


    .archive-search input {
        height: 44px;
    }


    .archive-search button {
        width: 85px;
    }

}
