
:root {
    --black: #000000;
    --near-black: #0a0a0a;
    --surface: #161616;
    --surface-2: #1e1e1e;
    --surface-3: #252525;
    --border: #2a2a2a;
    --border-light: #3a3a3a;
    --white: #ffffff;
    --muted: #9a9a9a;
    --muted-2: #666666;
    --red: #ff0000;
    --red-dim: #b30000;

    --font-display: "Oswald", "Arial Narrow", sans-serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-mono: "JetBrains Mono", "Courier New", monospace;

    --container-width: 1240px;
    --article-width: 760px;
    --radius-small: 4px;
    --radius-medium: 10px;
    --radius-large: 16px;
    --transition: 0.2s ease;
}

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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-body);
}

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

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
}

figure {
    margin: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

::selection {
    background: var(--red);
    color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   GLOBAL LAYOUT
   ========================================================= */

.wrap {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

main.wrap {
    min-height: 50vh;
}

.hidden {
    display: none !important;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 74px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    width: 100%;
    height: 74px;
    min-height: 74px;
    padding-top: 0;
    padding-bottom: 0;
}

.site-logo {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    max-width: 220px;
    height: 52px;
    overflow: hidden;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 29px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

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

.site-logo .site-logo-image,
.site-logo img {
    display: block;
    width: auto !important;
    max-width: 220px !important;
    height: auto !important;
    max-height: 48px !important;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    height: 100%;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
    padding: 8px 0;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition);
}

.site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--red);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.active::after {
    transform: scaleX(1);
}

.site-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

.site-header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition:
        color var(--transition),
        border-color var(--transition),
        background-color var(--transition);
}

.site-header-actions a:hover {
    border-color: var(--muted);
    background: var(--surface);
    color: var(--white);
}

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

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr);
    width: 100%;
    border-bottom: 1px solid var(--border);
    background: var(--near-black);
}

.hero-media {
    display: block;
    width: 100%;
    min-height: 520px;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--surface);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(34px, 5vw, 64px);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.eyebrow a {
    color: inherit;
}

.eyebrow a:hover {
    text-decoration: underline;
}

.hero-title {
    margin: 0 0 18px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 700;
    line-height: 1.03;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.hero-excerpt {
    max-width: 520px;
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.byline {
    color: var(--muted-2);
    font-family: var(--font-display);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================
   CATEGORY NAVIGATION
   ========================================================= */

.content-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 32px 0 22px;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--border);
}

.content-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.content-category-link:hover,
.content-category-link.active {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.category-story-section,
.stories-section {
    margin-bottom: 68px;
}

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

.section-label {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 26px 0 18px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-label::after {
    flex: 1;
    height: 1px;
    background: var(--border);
    content: "";
}

.section-view-all {
    flex: 0 0 auto;
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.section-view-all:hover {
    color: var(--white);
}

/* =========================================================
   STORY GRID
   ========================================================= */

.story-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
    padding-bottom: 10px;
}
.story-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.story-card-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--surface);
    border-radius: 8px;
}

.story-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .35s ease;
}

.story-card:hover .story-card-media img {
    transform: scale(1.06);
}



.story-card-score {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
    padding: 7px;
    border: 2px solid var(--white);
    background: var(--black);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.story-type-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.88);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.story-card-body {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
}

.story-card .eyebrow {
    margin-bottom: 8px;
    font-size: 11px;
}

.story-card-title {
    margin: 0 0 9px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: 0.1px;
    text-transform: uppercase;
}

.story-card-title a {
    color: inherit;
    transition: color var(--transition);
}

.story-card-title a:hover {
    color: var(--red);
}

.story-card-excerpt {
    display: -webkit-box;
    margin: 0 0 12px;
    overflow: hidden;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.story-card .byline {
    margin-top: auto;
    padding-top: 4px;
}

/* =========================================================
   SEE MORE BUTTON
   ========================================================= */

.section-see-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.see-more-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 28px;
    border: 1px solid var(--white);
    border-radius: var(--radius-small);
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition:
        background-color var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.see-more-button:hover {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
}

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

.article-header {
    width: 100%;
    max-width: var(--article-width);
    margin: 58px auto 0;
    padding: 0 24px;
    text-align: center;
}

.article-header .eyebrow {
    display: flex;
    justify-content: center;
}

.article-category-link {
    color: inherit;
}

.article-category-link:hover {
    text-decoration: underline;
}

.article-title {
    margin: 15px 0 20px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.article-meta {
    margin: 0 0 36px;
    color: var(--muted-2);
    font-family: var(--font-display);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =========================================================
   UNIFORM ARTICLE FEATURED IMAGE
   ========================================================= */

.article-feature-img {
    width: min(1100px, calc(100% - 48px));
    aspect-ratio: 16 / 9;
    margin: 0 auto 30px;
    overflow: hidden;
    border-radius: var(--radius-medium);
    background: var(--surface);
}

.article-feature-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* =========================================================
   ARTICLE BODY
   ========================================================= */

.article-body {
    width: 100%;
    max-width: var(--article-width);
    margin: 42px auto 85px;
    padding: 0 24px;
    color: #e6e6e6;
    font-size: 18px;
    line-height: 1.78;
}

.article-body p {
    margin: 0 0 24px;
}

.article-body a {
    color: var(--red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--white);
}

.article-body ul,
.article-body ol {
    margin: 0 0 26px;
    padding-left: 28px;
}

.article-body li {
    margin-bottom: 8px;
}

.article-body img {
    max-width: 100%;
    height: auto;
}

/* =========================================================
   SHARE BOX
   ========================================================= */

.share-box {
    width: min(840px, calc(100% - 48px));
    margin: 30px auto;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background: rgba(255, 255, 255, 0.04);
}

.share-title {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 15px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color var(--transition),
        border-color var(--transition);
}

.share-btn:hover {
    border-color: var(--border-light);
    background: rgba(255, 255, 255, 0.12);
}

.copy-status {
    min-height: 20px;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   BUILDER BLOCKS
   ========================================================= */

.blk {
    margin: 30px 0;
}

.blk-heading h1,
.blk-heading h2,
.blk-heading h3,
.blk-heading h4 {
    margin: 0;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
}

.blk-heading h1 {
    font-size: clamp(34px, 5vw, 42px);
}

.blk-heading h2 {
    font-size: clamp(28px, 4vw, 34px);
}

.blk-heading h3 {
    font-size: clamp(22px, 3vw, 26px);
}

.blk-heading h4 {
    font-size: 19px;
}

.align-center {
    text-align: center;
}

.align-right {
    text-align: right;
}

.blk-text p {
    margin: 0 0 22px;
    color: #e6e6e6;
}

.blk-text p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   BUILDER IMAGES
   ========================================================= */

.blk-image {
    width: 100%;
    margin: 32px 0;
}

.blk-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 680px;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-small);
}

.blk-image.image-uniform img,
.blk-image.uniform img {
    aspect-ratio: 16 / 9;
    height: 100%;
}

.blk-image figcaption {
    margin-top: 10px;
    color: var(--muted-2);
    font-family: var(--font-display);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.blk-image.width-wide {
    width: calc(100% + 160px);
    max-width: none;
    margin-right: -80px;
    margin-left: -80px;
}

.blk-image.width-narrow {
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
}

/* =========================================================
   QUOTES
   ========================================================= */

.blk-quote {
    margin: 38px 0;
    padding: 6px 0 6px 28px;
    border-left: 3px solid var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(21px, 3vw, 26px);
    font-style: normal;
    line-height: 1.38;
}

.blk-quote cite {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 13px;
    font-style: normal;
}

/* =========================================================
   REVIEW SCORE
   ========================================================= */

.blk-score {
    display: flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
    max-width: 100%;
    margin: 32px 0;
    padding: 17px 22px;
    border: 2px solid var(--white);
    background: var(--black);
}

.score-number {
    flex: 0 0 auto;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.score-label {
    color: var(--muted);
    font-family: var(--font-display);
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

/* =========================================================
   DIVIDERS AND BUTTONS
   ========================================================= */

.blk-divider {
    margin: 42px 0;
    border: 0;
    border-top: 1px solid var(--border);
}

.blk-button {
    text-align: left;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 28px;
    border-radius: var(--radius-small);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transition:
        opacity var(--transition),
        background-color var(--transition),
        color var(--transition);
}

.btn-solid {
    border: 1px solid var(--red);
    background: var(--red);
    color: var(--white);
}

.btn-outline {
    border: 1px solid var(--white);
    background: transparent;
    color: var(--white);
}

.btn:hover {
    opacity: 0.82;
}

/* =========================================================
   BUILDER GRID
   ========================================================= */

.blk-grid {
    display: grid;
    gap: 26px;
    width: 100%;
}

.blk-grid.cols-1 {
    grid-template-columns: 1fr;
}

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

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

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

.grid-item {
    min-width: 0;
}

.grid-item-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 12px;
    overflow: hidden;
    background-color: var(--surface);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.grid-item h4 {
    margin: 0 0 7px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.grid-item p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* =========================================================
   COLUMNS
   ========================================================= */

.blk-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    width: 100%;
}

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

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

.blk-embed,
.media-embed {
    width: 100%;
    margin: 28px 0;
    overflow: hidden;
    border-radius: var(--radius-large);
    background: #111111;
}

.blk-embed.embed-16x9,
.media-embed.embed-16x9 {
    position: relative;
    padding-top: 56.25%;
}

.blk-embed.embed-16x9 iframe,
.media-embed.embed-16x9 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blk-embed iframe,
.media-embed iframe {
    display: block;
    width: 100%;
    border: 0;
}

.media-embed > iframe:not([height]) {
    min-height: 400px;
}

.blk-embed.embed-spotify iframe {
    height: 152px;
}

.blk-embed.embed-soundcloud iframe {
    height: 166px;
}

.blk-embed.embed-apple-podcasts iframe {
    height: 175px;
}

.blk-embed.embed-native-video video {
    display: block;
    width: 100%;
    max-height: 560px;
    background: var(--black);
}

.blk-embed.embed-native-audio {
    padding: 16px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
}

.blk-embed.embed-native-audio audio {
    display: block;
    width: 100%;
}

.blk-embed-unsupported {
    margin: 24px 0;
    padding: 18px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-large);
    background: transparent;
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.empty-state {
    width: 100%;
    padding: 100px 24px;
    color: var(--muted);
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 30px;
    text-transform: uppercase;
}

.empty-state p {
    margin: 6px 0;
}

.empty-state a {
    color: var(--red);
    text-decoration: underline;
}

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

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    margin-top: 60px;
    padding: 40px 0;
    border-top: 1px solid var(--border);
    color: var(--muted-2);
    font-family: var(--font-display);
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

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

/* =========================================================
   LARGE TABLETS AND SMALL DESKTOPS
   ========================================================= */

@media (max-width: 1200px) {
    .story-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 30px 24px;
    }
}

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

@media (max-width: 1000px) {
    .hero {
        grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    }

    .hero-media {
        min-height: 460px;
    }

    .hero-content {
        padding: 38px;
    }

    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 24px;
    }

    .story-card-media {
        aspect-ratio: 1 / 1;
    }

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

    .blk-image.width-wide {
        width: calc(100% + 80px);
        margin-right: -40px;
        margin-left: -40px;
    }
}

/* =========================================================
   MOBILE NAVIGATION AND LAYOUT
   ========================================================= */

@media (max-width: 820px) {
    .wrap {
        padding-right: 18px;
        padding-left: 18px;
    }

    .site-header,
    .site-header-inner {
        height: 66px;
        min-height: 66px;
    }

    .site-nav {
        display: none;
    }

    .site-logo {
        max-width: 180px;
        height: 46px;
        font-size: 25px;
    }

    .site-logo .site-logo-image,
    .site-logo img {
        max-width: 180px !important;
        max-height: 42px !important;
    }

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

    .hero-media {
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .hero-content {
        padding: 34px 24px 40px;
    }

    .content-categories {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 16px;
        scrollbar-width: thin;
    }

    .content-category-link {
        flex: 0 0 auto;
    }

    .story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
    }

    .story-card-media {
        aspect-ratio: 1 / 1;
    }

    .article-feature-img {
        width: calc(100% - 36px);
    }

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

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

    .blk-image.width-wide {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   PHONES
   ========================================================= */

@media (max-width: 600px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .story-card-media {
        aspect-ratio: 1 / 1;
    }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .wrap {
        padding-right: 14px;
        padding-left: 14px;
    }

    .site-header-inner {
        gap: 12px;
    }

    .site-logo {
        max-width: 150px;
        height: 42px;
    }

    .site-logo .site-logo-image,
    .site-logo img {
        max-width: 150px !important;
        max-height: 38px !important;
    }

    .site-header-actions a {
        padding: 7px 11px;
        font-size: 10px;
    }

    .hero-media {
        aspect-ratio: 4 / 3;
    }

    .hero-content {
        padding: 27px 18px 32px;
    }

    .hero-title {
        font-size: clamp(32px, 11vw, 46px);
    }

    .hero-excerpt {
        font-size: 15px;
    }

    .section-heading {
        align-items: flex-end;
        gap: 12px;
    }

    .section-label {
        padding-top: 22px;
        font-size: 13px;
    }

    .section-view-all {
        padding-bottom: 17px;
        font-size: 10px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .story-card-media {
        aspect-ratio: 1 / 1;
    }

    .story-card-title {
        font-size: 21px;
    }

    .section-see-more {
        margin-top: 24px;
    }

    .see-more-button {
        width: 100%;
    }

    .article-header {
        margin-top: 38px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .article-title {
        font-size: clamp(34px, 12vw, 48px);
    }

    .article-feature-img {
        width: calc(100% - 20px);
        aspect-ratio: 4 / 3;
        margin-bottom: 22px;
        border-radius: 8px;
    }

    .article-body {
        margin-top: 30px;
        padding-right: 16px;
        padding-left: 16px;
        font-size: 16.5px;
        line-height: 1.72;
    }

    .share-box {
        width: calc(100% - 20px);
        margin: 22px auto;
        padding: 14px;
    }

    .share-btn {
        flex: 1 1 calc(50% - 5px);
    }

    .blk-score {
        align-items: flex-start;
        gap: 12px;
        padding: 14px 17px;
    }

    .score-number {
        font-size: 32px;
    }

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

    .grid-item-img {
        aspect-ratio: 1 / 1;
    }

    .media-embed > iframe:not([height]) {
        min-height: 280px;
    }

    .site-footer {
        margin-top: 40px;
        padding: 30px 0;
    }
}