/*
Theme Name:  Edu Label
Theme URI:   https://example.com
Author:      Edu Label
Author URI:  https://example.com
Description: White-label Swiss editorial theme untuk portal pendidikan, kerjaya, dan kandungan editorial Malaysia. Menggunakan compiled Tailwind CSS, Inter & JetBrains Mono.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edu-label
Tags:        news, magazine, education, blog, custom-colors, custom-menu, featured-images, brutalist
*/

/* ══════════════════════════════════════════════════
   EDU LABEL DESIGN SYSTEM
   Semua token, utilities, dan animations.
   Tailwind custom classes ditakrifkan di sini.
══════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────── */
:root {
    --lime:  #ccff00;
    --pink:  #ff007a;
    --blue:  #00f0ff;
    --black: #000000;
    --white: #ffffff;
    --gray:  #f8f8f8;
    --paper: #f0efea;
    --ink: #0c0c0c;
    --swissred: #ff2a00;
    --ash: #e4e3dd;

    --s-brut:      10px 10px 0px 0px #000000;
    --s-brut-sm:    4px  4px 0px 0px #000000;
    --s-brut-lg:   15px 15px 0px 0px #000000;
    --s-brut-pink: 10px 10px 0px 0px #ff007a;
    --s-brut-blue: 10px 10px 0px 0px #00f0ff;
    --s-brut-lime: 10px 10px 0px 0px #ccff00;

    /* Marquee speed — dikawal melalui Customizer */
    --marquee-speed: 50s;
}

/* ── Base Reset ────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--paper);
    color: var(--ink);
    border: 12px solid var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (pointer: fine) {
    body {
        cursor: none;
    }
}

@media (max-width: 640px) {
    body {
        border-width: 6px;
    }

    .single .command-center {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        transform: translateY(120%);
        width: auto;
        max-width: calc(100vw - 1.5rem);
        overflow-x: auto;
        overflow-y: hidden;
        opacity: 0;
        pointer-events: none;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        transition: transform .16s ease, opacity .16s ease;
    }

    .single .command-center.visible {
        transform: none;
        opacity: 1;
        pointer-events: auto;
    }

    .single .command-center::-webkit-scrollbar {
        display: none;
    }

    .single .command-center .meta {
        flex: 0 0 auto;
        font-size: 0.58rem;
        padding: 0.65rem 0.75rem;
    }
}

@media (max-width: 480px) {
    #site-nav > div {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #site-nav a[rel="home"] {
        font-size: 1.65rem;
        line-height: 1;
    }

    .single .single-hero-title {
        font-size: clamp(2rem, 10vw, 3.2rem) !important;
        line-height: 0.92;
    }

    .home .hero-title,
    .is-homepage .hero-title {
        font-size: clamp(3.2rem, 18vw, 4.5rem) !important;
        line-height: 0.88;
    }

    .home .hero-inverted,
    .is-homepage .hero-inverted {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .home .hero-button,
    .is-homepage .hero-button {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }

}

/* ── Grain Texture Overlay ─────────────────────── */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    pointer-events: none;
    z-index: 9000;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Typography ────────────────────────────────── */
.font-huge {
    font-family: 'Inter', 'Arial Black', sans-serif;
    font-weight: 900;
}

/* ── Custom Cursor ─────────────────────────────── */
#cursor {
    width: 24px;
    height: 24px;
    background: rgba(255, 0, 122, 0.6);
    border: 2px solid var(--pink);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    will-change: transform;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    backdrop-filter: blur(2px);
}

#cursor.hover-active {
    width: 45px;
    height: 45px;
    background: rgba(204, 255, 0, 0.4);
    border-color: var(--lime);
}

@media (pointer: coarse) {
    #cursor {
        display: none !important;
    }
}

/* ── Grid Dot Patterns ─────────────────────────── */
.bg-dot-lg {
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #000 1.5px, transparent 1.5px);
}

.bg-dot-sm {
    background-size: 25px 25px;
    background-image: radial-gradient(circle, #000 0.5px, transparent 0.5px);
}

/* ── Brutalist Shadows ─────────────────────────── */
.shadow-brut      { box-shadow: var(--s-brut); }
.shadow-brut-sm   { box-shadow: var(--s-brut-sm); }
.shadow-brut-lg   { box-shadow: var(--s-brut-lg); }
.shadow-brut-pink { box-shadow: var(--s-brut-pink); }
.shadow-brut-blue { box-shadow: var(--s-brut-blue); }
.shadow-brut-lime { box-shadow: var(--s-brut-lime); }

/* ── Marquee ───────────────────────────────────── */
.marquee-inner {
    display: inline-block;
    white-space: nowrap;
    /* Guna CSS variable supaya Customizer boleh override via inline style */
    animation: marquee var(--marquee-speed, 50s) linear infinite;
}

/* Hover pada wrapper → pause animasi supaya teks boleh dibaca */
.marquee-wrapper:hover .marquee-inner,
.marquee-inner:hover {
    animation-play-state: paused;
    cursor: default;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Floating Sticker ──────────────────────────── */
.float {
    animation: float 3s ease-in-out infinite;
}

.float-delay {
    animation: float 3s ease-in-out 1s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0)     rotate(-3deg); }
    50%       { transform: translateY(-10px) rotate(3deg); }
}

/* ── Glitch (wordmark hover) ───────────────────── */
.glitch:hover {
    animation: glitch 0.3s cubic-bezier(.25,.46,.45,.94) both infinite;
}

@keyframes glitch {
    0%   { transform: translate(0);           text-shadow: -2px 2px var(--blue), 2px -2px var(--pink); }
    25%  { transform: translate(-2px,  2px);  }
    50%  { transform: translate( 2px, -2px);  text-shadow: 2px -2px var(--blue), -2px 2px var(--pink); }
    75%  { transform: translate(-2px, -2px);  }
    100% { transform: translate(0); }
}

/* ── Hover: Lift ───────────────────────────────── */
.lift {
    transition: transform .15s ease, box-shadow .15s ease;
}

.lift:hover {
    transform: translate(-4px, -4px);
    box-shadow: var(--s-brut-lg);
}

.lift:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}

/* ── Hover: Press ──────────────────────────────── */
.press {
    transition: transform .15s ease, box-shadow .15s ease;
}

.press:hover  { transform: translate(2px, 2px);  box-shadow: none !important; }
.press:active { transform: translate(4px, 4px); }

/* ── Image Grayscale → Colour ──────────────────── */
.img-gray {
    filter: grayscale(100%);
    transition: filter .6s ease, transform .7s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.group:hover .img-gray {
    filter: grayscale(0%);
    transform: scale(1.07);
}

/* ── Bento Cell ────────────────────────────────── */
.bento {
    transition: background-color .2s ease, color .2s ease;
}

/* ── Badge / Sticker ───────────────────────────── */
.badge {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid #000;
    padding: 0.25em 0.65em;
    line-height: 1.4;
}

/* ── Meta Label ────────────────────────────────── */
.meta {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* ── Vertical Sidebar Label ────────────────────── */
.vert {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

/* ── Most Wanted Number ────────────────────────── */
.wanted-n {
    transition: transform .2s ease;
    display: flex;
}

.wanted-row:hover .wanted-n {
    transform: rotate(12deg);
}

/* ══════════════════════════════════════════════════
   EDU LABEL HOMEPAGE — Swiss Editorial System
══════════════════════════════════════════════════ */

body.is-homepage {
    background: var(--paper);
    color: var(--ink);
    border: 0;
}

body.is-homepage::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(to right, rgba(12, 12, 12, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(12, 12, 12, 0.035) 1px, transparent 1px);
    background-size: 64px 64px;
}

body.is-homepage #site-nav {
    background: var(--paper) !important;
    border-bottom: 1px solid var(--ink) !important;
    box-shadow: 0 1px 0 rgba(12, 12, 12, 0.1);
}

body.is-homepage #site-nav > div {
    max-width: 1500px;
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
}

body.is-homepage #site-nav a[rel="home"] {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--ink);
}

body.is-homepage #site-nav a[rel="home"] .text-neon-pink {
    color: var(--swissred);
}

body.is-homepage .marquee-wrapper {
    background: var(--ink) !important;
    border-top: 0 !important;
    border-bottom: 1px solid var(--ink) !important;
    padding: 0.55rem 0 !important;
}

body.is-homepage .marquee-inner a,
body.is-homepage .marquee-inner span {
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 0.65rem !important;
    font-style: normal !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    color: var(--paper) !important;
}

.el-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: 1px solid var(--ink);
}

.el-utility-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    padding: .55rem 1.5rem;
    border-bottom: 1px solid rgba(12, 12, 12, .12);
    background: rgba(228, 227, 221, .35);
    color: rgba(12, 12, 12, .5);
    font-family: 'JetBrains Mono', monospace;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.el-utility-bar span:nth-child(2) {
    text-align: center;
    color: var(--swissred);
}

.el-utility-bar span:last-child {
    text-align: right;
}

.el-nav-grid {
    width: min(100%, 1500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(12rem, 3fr) minmax(0, 7fr) minmax(9rem, 2fr);
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
}

.el-brand-cell,
.el-nav-cta,
.el-menu-toggle {
    border-right: 1px solid var(--ink);
}

.el-brand-cell {
    min-height: 5.3rem;
    display: flex;
    align-items: center;
}

.el-brand {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    min-height: 5.3rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: clamp(1.55rem, 2.2vw, 2.3rem);
    font-weight: 900;
    line-height: .78;
    letter-spacing: -.07em;
    text-transform: uppercase;
    transition: background .15s ease, color .15s ease;
}

.el-brand b {
    color: var(--swissred);
}

.el-brand:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-brand:hover b {
    color: var(--paper);
}

.el-desktop-menu {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
}

.el-desktop-menu li {
    display: contents;
}

.el-desktop-menu a,
.el-nav-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--ink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: background .15s ease, color .15s ease;
}

.el-desktop-menu a b {
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    opacity: .35;
}

.el-desktop-menu a:hover,
.el-nav-cta:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-nav-cta {
    justify-content: center;
    border-right: 0;
    background: var(--swissred);
    color: var(--paper);
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    letter-spacing: .16em;
}

.el-nav-cta-mobile {
    display: none;
}

.el-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .35rem;
    min-height: 5.3rem;
    background: var(--paper);
    border-left: 1px solid var(--ink);
    border-right: 0;
    padding: 0 1.25rem;
}

.el-menu-toggle span {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: var(--ink);
    transition: transform .15s ease, opacity .15s ease, width .15s ease;
}

.el-menu-toggle span:last-child {
    width: .75rem;
}

.el-mobile-menu {
    border-top: 1px solid var(--ink);
    background: var(--paper);
}

.el-mobile-menu a {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--ink);
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
}

.el-mobile-menu a:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-marquee {
    overflow: hidden;
    white-space: nowrap;
    background: var(--ink);
    color: var(--paper);
    border-bottom: 1px solid var(--ink);
    padding: .55rem 0;
}

.el-marquee .marquee-inner {
    display: inline-block;
    animation: marquee var(--marquee-speed, 50s) linear infinite;
}

.el-marquee a,
.el-marquee span {
    margin: 0 2rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.el-marquee b {
    color: var(--swissred);
}

.el-home {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    background: var(--paper);
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.el-hero,
.el-module-section,
.el-feed,
.el-manifesto,
.el-terminal-cta {
    border-bottom: 1px solid var(--ink);
}

.el-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(320px, 4fr);
    min-height: clamp(34rem, 62vh, 46rem);
    border-bottom: 1px solid var(--ink);
}

.el-hero-copy {
    padding: clamp(2rem, 5vw, 5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid var(--ink);
}

.el-kicker-row,
.el-panel-head,
.el-section-label,
.el-feed-meta,
.el-sidebar-heading,
.el-red-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.el-kicker-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(12, 12, 12, 0.55);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.el-kicker-row::before {
    content: "";
    width: 2rem;
    height: 2px;
    background: var(--swissred);
}

.el-signal,
.el-red-label {
    color: var(--swissred);
}

.el-hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3.5rem, 9vw, 8rem);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.075em;
    text-transform: uppercase;
    max-width: 11ch;
}

.el-hero-title-mark {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--ink);
}

.el-hero-desc {
    max-width: 38rem;
    margin-top: 2.5rem;
    padding-left: 1.25rem;
    border-left: 2px solid var(--ink);
    color: rgba(12, 12, 12, 0.75);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.6;
    font-weight: 500;
}

.el-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
}

.el-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.8rem;
    padding: 1rem 1.45rem;
    border: 1px solid var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: background .15s ease, color .15s ease;
}

.el-button-primary {
    background: var(--swissred);
    color: var(--paper);
}

.el-button-secondary {
    background: var(--paper);
    color: var(--ink);
}

.el-button:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-featured-panel {
    display: flex;
    flex-direction: column;
    background: rgba(228, 227, 221, 0.55);
}

.el-panel-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--ink);
}

.el-panel-head strong {
    color: var(--swissred);
}

.el-featured-link {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.el-featured-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--ink);
    background: var(--ash);
}

.img-print,
.el-home .img-gray {
    filter: grayscale(100%) contrast(1.15) brightness(0.9);
    mix-blend-mode: multiply;
    transition: filter .4s ease, mix-blend-mode .4s ease, transform .6s ease;
}

.group:hover .img-print,
.group:hover .img-gray,
.el-featured-link:hover .img-gray,
.el-feed-media:hover .img-gray {
    filter: grayscale(0%) contrast(1) brightness(1);
    mix-blend-mode: normal;
    transform: scale(1.03);
}

.el-featured-body,
.el-featured-empty {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.el-featured-body h3 {
    margin-top: 1.25rem;
    font-size: clamp(1.75rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.el-featured-body .badge {
    background: var(--ink) !important;
    color: var(--paper);
    border-color: var(--ink);
}

.el-featured-body p,
.el-feed-content p,
.el-terminal-copy p,
.el-newsletter p {
    color: rgba(12, 12, 12, 0.66);
    font-weight: 500;
    line-height: 1.65;
}

.el-featured-body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.el-stats-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-bottom: 1px solid var(--ink);
}

.el-stats-band > div {
    padding: 1.25rem clamp(1.25rem, 3vw, 2rem);
    border-right: 1px solid var(--ink);
}

.el-stats-band > div:last-child {
    border-right: 0;
}

.el-stats-band .w-px {
    display: none;
}

.el-stats-band .font-huge {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .9;
}

.el-module-section {
    background: var(--paper);
}

.el-section-label {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1.5rem;
    background: var(--ink);
    color: var(--paper);
}

.el-section-label span:last-child {
    color: var(--swissred);
}

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

.el-module-card {
    min-height: clamp(16rem, 22vw, 20rem);
    display: flex;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-right: 1px solid var(--ink);
    transition: background .15s ease, color .15s ease;
}

.el-module-card:last-child {
    border-right: 0;
}

.el-module-card:hover,
.el-card-ink {
    background: var(--ink);
    color: var(--paper);
}

.el-card-red {
    background: var(--swissred);
    color: var(--paper);
}

.el-card-red:hover {
    background: var(--ink);
}

.el-module-number,
.el-module-label,
.el-module-action {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.el-module-number {
    opacity: .35;
}

.el-module-label {
    width: fit-content;
    margin-top: 2rem;
    padding: .25rem .65rem;
    border: 1px solid currentColor;
}

.el-module-card h3 {
    margin-top: auto;
    font-size: clamp(1.45rem, 2.25vw, 2.2rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.el-module-card p {
    margin-top: 1rem;
    font-size: .95rem;
    line-height: 1.55;
    opacity: .72;
}

.el-module-action {
    margin-top: 1.75rem;
}

.el-feed {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(18rem, 22vw, 24rem);
}

.el-feed-main {
    border-right: 1px solid var(--ink);
}

.el-dispatch-board {
    display: grid;
    grid-template-columns: clamp(13rem, 18vw, 16rem) minmax(0, 1fr);
    min-height: 30rem;
    background-image:
        linear-gradient(to right, rgba(12, 12, 12, .045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(12, 12, 12, .045) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

.el-dispatch-intro {
    border-right: 1px solid var(--ink);
    padding: clamp(1.75rem, 2.6vw, 2.8rem) clamp(1.5rem, 2.8vw, 3rem);
}

.el-dispatch-intro h2 {
    max-width: 7.5ch;
    font-size: clamp(1.9rem, 2.55vw, 2.85rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: .95;
    text-transform: uppercase;
}

.el-dispatch-intro p {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-top: 1.65rem;
    color: rgba(12, 12, 12, .42);
    font-family: 'JetBrains Mono', monospace;
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.el-dispatch-list {
    padding: 0;
}

.el-dispatch-table-head {
    display: grid;
    grid-template-columns: 4.25rem 8.25rem minmax(18rem, 1fr) 7.25rem 3.75rem;
    min-height: 3.4rem;
    border-bottom: 1px solid var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(12, 12, 12, .75);
}

.el-dispatch-table-head span,
.el-dispatch-row a > * {
    display: flex;
    align-items: center;
    min-width: 0;
    border-right: 1px solid var(--ink);
}

.el-dispatch-table-head span {
    padding: 0 .8rem;
}

.el-dispatch-table-head span:last-child,
.el-dispatch-row a > *:last-child {
    border-right: 0;
}

.el-dispatch-row {
    border-top: 0;
    border-bottom: 1px solid var(--ink);
}

.el-dispatch-row:last-child {
    border-bottom: 1px solid var(--ink);
}

.el-dispatch-row a {
    display: grid;
    grid-template-columns: 4.25rem 8.25rem minmax(18rem, 1fr) 7.25rem 3.75rem;
    min-height: clamp(4.4rem, 5vw, 5.25rem);
    padding: 0;
    transition: background .15s ease, color .15s ease;
}

.el-dispatch-row a:hover {
    background: rgba(255, 255, 255, .42);
}

.el-dispatch-row a:hover > * {
    color: var(--swissred);
}

.el-dispatch-row b,
.el-dispatch-class,
.el-dispatch-row time,
.el-dispatch-arrow {
    color: rgba(12, 12, 12, .48);
    font-family: 'JetBrains Mono', monospace;
    font-size: .52rem;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.35;
    text-transform: uppercase;
    transition: color .15s ease;
}

.el-dispatch-row b,
.el-dispatch-arrow {
    justify-content: center;
}

.el-dispatch-row h3 {
    padding: .8rem 1rem;
    font-size: clamp(.95rem, 1.18vw, 1.22rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
    text-transform: uppercase;
    transition: color .15s ease;
}

.el-dispatch-class,
.el-dispatch-row time {
    padding: 0 .8rem;
}

.el-feed-heading {
    padding: clamp(1.5rem, 4vw, 3rem);
    border-bottom: 1px solid var(--ink);
}

.el-feed-heading h2 {
    margin-top: .5rem;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: .92;
    text-transform: uppercase;
}

.el-feed-item {
    display: grid;
    grid-template-columns: 15rem minmax(0, 1fr);
    border-bottom: 1px solid var(--ink);
    transition: background .15s ease, color .15s ease;
}

.el-feed-item:hover {
    background: var(--swissred);
    color: var(--paper);
}

.el-feed-item-lead {
    grid-template-columns: minmax(260px, .9fr) minmax(0, 1fr);
}

.el-feed-media {
    min-height: 13rem;
    overflow: hidden;
    border-right: 1px solid var(--ink);
    background: var(--ash);
}

.el-media-fallback {
    width: 100%;
    height: 100%;
    min-height: 13rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    color: rgba(12, 12, 12, .15);
}

.el-feed-content {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.el-feed-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    margin-bottom: 1.25rem;
    color: rgba(12, 12, 12, .55);
}

.el-feed-item:hover .el-feed-meta,
.el-feed-item:hover .el-feed-content p {
    color: rgba(240, 239, 234, .75);
}

.el-feed-content h3 {
    max-width: 13ch;
    font-size: clamp(1.6rem, 3.3vw, 3rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.el-read-link {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.el-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    padding: 1.5rem;
}

.el-pagination a,
.el-pagination span {
    border: 1px solid var(--ink);
    padding: .65rem .9rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .7rem;
    font-weight: 800;
}

.el-briefing {
    background: rgba(228, 227, 221, .55);
}

@media (max-width: 1320px) {
    .el-feed {
        grid-template-columns: minmax(0, 1fr) 18rem;
    }

    .el-dispatch-board {
        grid-template-columns: 12.5rem minmax(0, 1fr);
    }

    .el-dispatch-intro h2 {
        font-size: clamp(1.75rem, 2.45vw, 2.4rem);
    }

    .el-dispatch-table-head,
    .el-dispatch-row a {
        grid-template-columns: 3.75rem 6.5rem minmax(14rem, 1fr) 6rem 3rem;
    }

    .el-dispatch-row a {
        min-height: 4.65rem;
    }

    .el-dispatch-row h3 {
        font-size: clamp(.88rem, 1.1vw, 1.05rem);
    }

    .el-dispatch-table-head,
    .el-dispatch-row b,
    .el-dispatch-class,
    .el-dispatch-row time,
    .el-dispatch-arrow {
        font-size: .52rem;
    }
}

.el-briefing-inner {
    position: sticky;
    top: 6rem;
}

.el-newsletter,
.el-sidebar-list,
.el-tags {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 1px solid var(--ink);
}

.el-newsletter {
    background: var(--ink);
    color: var(--paper);
}

.el-newsletter p {
    color: rgba(240, 239, 234, .65);
}

.el-newsletter h3 {
    margin-top: .75rem;
    margin-bottom: .85rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1;
    text-transform: uppercase;
}

.el-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-top: 2rem;
    border: 1px solid rgba(240, 239, 234, .35);
}

.el-newsletter-form input,
.el-terminal-form input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    padding: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.el-newsletter-form button {
    border: 0;
    border-left: 1px solid rgba(240, 239, 234, .35);
    background: var(--paper);
    color: var(--ink);
    padding: 0 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.el-sidebar-heading {
    margin-bottom: 1.25rem;
    color: var(--swissred);
}

.el-sidebar-row {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(12, 12, 12, .2);
}

.el-sidebar-row span {
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
    font-weight: 800;
    color: rgba(12, 12, 12, .35);
}

.el-sidebar-row strong {
    font-size: .95rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.el-sidebar-row:hover {
    color: var(--swissred);
}

.el-tags > div:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: 1rem;
}

.el-tags a {
    border: 1px solid var(--ink);
    padding: .35rem .65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.el-tags a:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-manifesto {
    position: relative;
    min-height: 50vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper);
    padding: clamp(3rem, 7vw, 6rem) 1.5rem;
}

.el-target-lines {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(to right, var(--paper) 1px, transparent 1px),
        linear-gradient(to bottom, var(--paper) 1px, transparent 1px),
        radial-gradient(circle at center, transparent 0 13rem, var(--paper) 13.05rem 13.1rem, transparent 13.15rem 26rem, var(--paper) 26.05rem 26.1rem, transparent 26.15rem);
    background-size: 100px 100px, 100px 100px, 100% 100%;
}

.el-manifesto-inner {
    position: relative;
    z-index: 1;
    max-width: 64rem;
    text-align: center;
}

.el-manifesto h2 {
    margin: 1.5rem 0 2rem;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: 1.04;
    text-transform: uppercase;
}

.el-manifesto h2 span {
    color: var(--swissred);
}

.el-manifesto p {
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(240, 239, 234, .45);
}

.el-terminal-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.el-terminal-copy,
.el-terminal-form {
    padding: clamp(2.5rem, 6vw, 6rem);
}

.el-terminal-copy {
    border-right: 1px solid var(--ink);
}

.el-terminal-copy h2 {
    margin: 1.25rem 0;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: .9;
    text-transform: uppercase;
}

.el-terminal-copy h2 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--ink);
}

.el-terminal-form {
    display: flex;
    align-items: center;
    background: var(--ink);
    color: var(--paper);
}

.el-terminal-form form {
    width: min(100%, 30rem);
}

.el-terminal-form label {
    display: block;
    margin-bottom: 2rem;
    color: var(--swissred);
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.el-terminal-form input {
    width: 100%;
    padding-left: 0;
    border-bottom: 2px solid rgba(240, 239, 234, .3);
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2.4vw, 2rem);
    letter-spacing: 0;
}

.el-terminal-form input:focus {
    border-bottom-color: var(--swissred);
}

.el-terminal-form button {
    margin-top: 2rem;
    border: 2px solid var(--paper);
    background: var(--paper);
    color: var(--ink);
    padding: 1rem 1.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.el-terminal-form button:hover {
    background: var(--swissred);
    border-color: var(--swissred);
    color: var(--paper);
}

.el-site-footer {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(12, 12, 12, .45);
}

.el-site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.el-site-footer a:hover {
    color: var(--ink);
}

@media (max-width: 1024px) {
    .el-utility-bar {
        grid-template-columns: 1fr 1fr;
    }

    .el-utility-bar span:nth-child(2) {
        display: none;
    }

    .el-nav-grid {
        grid-template-columns: 1fr auto auto;
        border-left: 0;
        border-right: 0;
    }

    .el-desktop-menu {
        display: none;
    }

    .el-nav-cta {
        min-width: 6.5rem;
    }

    .el-nav-cta-desktop {
        display: none;
    }

    .el-nav-cta-mobile {
        display: inline;
    }

    .el-menu-toggle {
        display: flex;
    }

    .el-hero-grid,
    .el-dispatch-board,
    .el-feed,
    .el-terminal-cta {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .el-hero-copy,
    .el-feed-main,
    .el-terminal-copy {
        border-right: 0;
    }

    .el-dispatch-list {
        padding-top: 0;
    }

    .el-featured-link {
        display: grid;
        grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
    }

    .el-featured-media {
        aspect-ratio: auto;
        min-height: 15rem;
        border-right: 1px solid var(--ink);
        border-bottom: 0;
    }

    .el-featured-panel,
    .el-briefing,
    .el-terminal-form {
        border-top: 1px solid var(--ink);
    }

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

    .el-module-card:nth-child(2n) {
        border-right: 0;
    }
}

@media (max-width: 640px) {
    .el-utility-bar {
        padding: .5rem .85rem;
        font-size: .5rem;
        letter-spacing: .12em;
    }

    .el-brand {
        min-height: 4.4rem;
        padding: .85rem 1rem;
    }

    .el-nav-cta,
    .el-menu-toggle {
        min-height: 4.4rem;
    }

    .el-marquee a,
    .el-marquee span {
        margin: 0 1rem;
        font-size: .58rem;
    }

    .el-home,
    body.is-homepage #site-nav > div,
    .el-site-footer {
        border-left: 0;
        border-right: 0;
    }

    .el-kicker-row,
    .el-hero-actions,
    .el-site-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .el-hero-copy {
        min-height: auto;
        padding: 2.25rem 1.5rem 3rem;
        justify-content: flex-start;
    }

    .el-kicker-row {
        gap: .65rem;
        margin-bottom: 1.6rem;
        font-size: .52rem;
        letter-spacing: .16em;
    }

    .el-hero-title {
        font-size: clamp(3rem, 15vw, 4.4rem);
        line-height: .9;
        max-width: 9.5ch;
    }

    .el-hero-title-mark {
        -webkit-text-stroke-width: 1.35px;
    }

    .el-hero-desc {
        margin-top: 1.6rem;
        font-size: 1rem;
    }

    .el-hero-actions {
        margin-top: 1.6rem;
    }

    .el-button {
        width: 100%;
        min-height: 3.45rem;
    }

    .el-featured-link {
        display: block;
    }

    .el-featured-media {
        min-height: 12rem;
        aspect-ratio: 16 / 10;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
    }

    .el-featured-body h3 {
        font-size: clamp(1.65rem, 8vw, 2.15rem);
    }

    .el-stats-band,
    .el-module-grid,
    .el-dispatch-row a,
    .el-feed-item,
    .el-feed-item-lead {
        grid-template-columns: 1fr;
    }

    .el-dispatch-intro {
        padding: 2rem 1.5rem;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
    }

    .el-dispatch-intro h2 {
        max-width: 9ch;
        font-size: clamp(2.4rem, 12vw, 3.65rem);
    }

    .el-dispatch-intro p {
        margin-top: 1.5rem;
        font-size: .56rem;
        letter-spacing: .16em;
    }

    .el-dispatch-table-head {
        display: none;
    }

    .el-dispatch-row a {
        grid-template-columns: 3.5rem minmax(0, 1fr) 2.75rem;
        min-height: auto;
        padding: 0;
    }

    .el-dispatch-row h3 {
        grid-column: 2;
        grid-row: 2;
        padding: 1rem;
        font-size: clamp(1.05rem, 5.8vw, 1.55rem);
        line-height: 1.08;
    }

    .el-dispatch-row b {
        grid-row: 1 / span 2;
        min-height: 5.4rem;
    }

    .el-dispatch-class,
    .el-dispatch-row time {
        align-items: flex-start;
        border-right: 0;
        padding: .9rem 1rem 0;
        font-size: .5rem;
    }

    .el-dispatch-row time {
        display: flex;
        grid-column: 2;
        grid-row: 3;
        padding: 0 1rem 1rem;
        color: rgba(12, 12, 12, .4);
    }

    .el-dispatch-arrow {
        grid-column: 3;
        grid-row: 1 / span 2;
        min-height: 5.4rem;
    }

    .el-stats-band > div,
    .el-module-card,
    .el-feed-media {
        border-right: 0;
        border-bottom: 1px solid var(--ink);
    }

    .el-module-card {
        min-height: 15rem;
    }

    .el-feed-media {
        min-height: 12rem;
    }

    .el-newsletter-form {
        grid-template-columns: 1fr;
    }

    .el-newsletter-form button {
        border-left: 0;
        border-top: 1px solid rgba(240, 239, 234, .35);
        min-height: 3rem;
    }
}

/* ── Outline Text ──────────────────────────────── */
.text-outline {
    -webkit-text-stroke: 3px #000;
    color: transparent;
}

/* ── Scroll Reveal ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s cubic-bezier(.2,0,0,1),
                transform .55s cubic-bezier(.2,0,0,1);
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ══════════════════════════════════════════════════
   SINGLE POST — Article Body Styles
   Digunakan dalam single.php
══════════════════════════════════════════════════ */

.article-container {
    max-width: 68ch;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Dropcap */
.article-container > p:first-of-type::first-letter {
    font-family: 'Archivo Black', sans-serif;
    font-size: 4.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.75rem;
    background: var(--lime);
    padding: 4px;
    border: 2px solid black;
}

/* Headings dalam artikel */
.article-container h2 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin: 2.5rem 0 1rem;
}

.article-container h3 {
    font-family: 'Archivo Black', sans-serif;
    text-transform: uppercase;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin: 2rem 0 0.75rem;
}

.article-container p {
    margin-bottom: 1.5rem;
}

.article-container blockquote {
    position: relative;
    border: 2px solid var(--black);
    padding: 2.5rem 3rem;
    margin: 2.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    font-style: italic;
    transition: box-shadow .2s ease;
}

.article-container blockquote:hover {
    box-shadow: 12px 12px 0px var(--pink);
}

.article-container blockquote::before {
    content: "\201C";
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: 'Archivo Black', sans-serif;
    font-size: 10rem;
    color: var(--lime);
    -webkit-text-stroke: 2px black;
    line-height: 1;
    pointer-events: none;
    opacity: 0.4;
}

.article-container img {
    max-width: 100%;
    border: 2px solid var(--black);
    box-shadow: var(--s-brut-sm);
}

/* ── Lists ───────────────────────────────────────────
   Brutalist square bullets untuk ul, nombor tebal untuk ol.
   Kedua-dua guna padding-left supaya teks tidak rapat tepi.
─────────────────────────────────────────────────── */

/* Reset browser default, kita guna custom pseudo-element */
.article-container ul,
.article-container ol {
    list-style: none;
    padding-left: 0;
    margin: 0 0 2rem 0;
}

/* Spacing antara item */
.article-container li {
    font-weight: 500;
    line-height: 1.7;
    padding: 0.45rem 0 0.45rem 2.2rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.article-container li:last-child {
    border-bottom: none;
}

/* UL — square bullet neon pink / hitam (Brutalist touch) */
.article-container ul > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 10px;
    height: 10px;
    background: var(--pink);
    border: 1.5px solid var(--black);
    flex-shrink: 0;
}

/* UL nested — square lebih kecil, warna lime */
.article-container ul ul > li::before {
    width: 7px;
    height: 7px;
    background: var(--lime);
    top: 0.9em;
}

/* OL — nombor tebal, font Archivo Black */
.article-container ol {
    counter-reset: ol-counter;
}

.article-container ol > li {
    counter-increment: ol-counter;
}

.article-container ol > li::before {
    content: counter(ol-counter, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0.42em;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--black);
    line-height: 1;
    min-width: 1.8rem;
}

/* OL nested — huruf kecil a, b, c */
.article-container ol ol {
    counter-reset: ol-inner;
}

.article-container ol ol > li {
    counter-increment: ol-inner;
}

.article-container ol ol > li::before {
    content: counter(ol-inner, lower-alpha) ".";
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    color: rgba(0,0,0,0.5);
}

/* Reading progress bar */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--pink);
    z-index: 10000;
    transition: width .1s linear;
}

/* Command Center (single post) */
.command-center {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    white-space: nowrap;
}

.single {
    padding-bottom: 5.5rem;
}

/* ══════════════════════════════════════════════════
   WORDPRESS GUTENBERG — BLOK OVERRIDES LENGKAP
   Semua blok native dikemaskini mengikut design system
   Edu Label: Neo-Brutalism × Swiss Minimalism
══════════════════════════════════════════════════ */

/* ── Links dalam artikel ───────────────────────── */
.article-container a {
    color: var(--black);
    text-decoration: underline;
    text-decoration-color: var(--pink);
    text-underline-offset: 3px;
    text-decoration-thickness: 3px;
    font-weight: 700;
    transition: background .15s ease, color .15s ease;
}

.article-container a:hover {
    background-color: var(--lime);
    color: var(--black);
    text-decoration-color: var(--black);
}

/* ── Images ────────────────────────────────────── */
.article-container img,
.wp-block-image img,
.wp-block-image figure img {
    max-width: 100%;
    height: auto;
    border: 2px solid var(--black);
    box-shadow: var(--s-brut-sm);
    display: block;
}

/* ── Figure & Figcaption ───────────────────────── */
.article-container figure,
.wp-block-image {
    margin: 2rem 0;
}

.article-container figcaption,
.wp-block-image figcaption,
.wp-element-caption {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.45);
    margin-top: 0.65rem;
    padding-left: 0.25rem;
    border-left: 3px solid var(--lime);
    padding-left: 0.6rem;
    line-height: 1.5;
}

/* ── Blockquote ────────────────────────────────── */
.wp-block-quote,
.article-container blockquote {
    position: relative;
    border: 2px solid var(--black);
    border-left: 6px solid var(--pink);
    padding: 2.2rem 2.5rem;
    margin: 2.5rem 0;
    font-weight: 700;
    font-size: 1.1rem;
    font-style: italic;
    background: var(--gray);
    transition: box-shadow .2s ease;
}

.wp-block-quote:hover,
.article-container blockquote:hover {
    box-shadow: 10px 10px 0px var(--pink);
}

.wp-block-quote cite,
.wp-block-quote .wp-block-quote__citation {
    display: block;
    font-style: normal;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.4;
    margin-top: 1rem;
}

/* ── Code ──────────────────────────────────────── */
.wp-block-code,
.article-container pre {
    background: var(--black);
    color: var(--lime);
    border: 2px solid var(--black);
    box-shadow: var(--s-brut-sm);
    padding: 1.5rem;
    font-size: 0.875rem;
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    overflow-x: auto;
    margin: 2rem 0;
}

.article-container code {
    background: var(--black);
    color: var(--lime);
    font-family: 'IBM Plex Mono', 'Courier New', monospace;
    font-size: 0.85em;
    padding: 0.15em 0.45em;
    border-radius: 0;
}

/* ── Separator / HR ────────────────────────────── */
.wp-block-separator,
.article-container hr {
    border: none;
    border-top: 4px solid var(--black);
    margin: 3rem 0;
    opacity: 1;
}

/* Separator style dots (Gutenberg default) */
.wp-block-separator.is-style-dots {
    border: none;
    text-align: center;
    line-height: 1;
}

.wp-block-separator.is-style-dots::before {
    content: "· · ·";
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    color: var(--black);
}

/* ── Tables ────────────────────────────────────── */
.article-container table,
.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    border: 2px solid var(--black);
    margin: 2rem 0;
    font-size: 0.9rem;
    box-shadow: var(--s-brut-sm);
}

.article-container table thead,
.wp-block-table thead {
    background: var(--black);
    color: var(--white);
}

.article-container table thead th,
.wp-block-table thead th {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.article-container table thead th:last-child,
.wp-block-table thead th:last-child {
    border-right: none;
}

.article-container table tbody td,
.wp-block-table tbody td {
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(0,0,0,0.12);
    font-weight: 500;
    vertical-align: top;
}

.article-container table tbody tr:nth-child(even),
.wp-block-table tbody tr:nth-child(even) {
    background: var(--gray);
}

.article-container table tbody tr:hover,
.wp-block-table tbody tr:hover {
    background: rgba(204,255,0,0.15);
}

.article-container table tfoot td,
.wp-block-table tfoot td {
    padding: 0.85rem 1.25rem;
    border-top: 2px solid var(--black);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ── Gutenberg Buttons ─────────────────────────── */
.wp-block-button__link,
.wp-block-button .wp-block-button__link {
    font-family: 'Archivo Black', sans-serif !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--lime) !important;
    color: var(--black) !important;
    border: 4px solid var(--black) !important;
    border-radius: 0 !important;         /* Hapus rounded corners Gutenberg */
    padding: 0.85rem 1.75rem !important;
    box-shadow: var(--s-brut) !important;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease !important;
    display: inline-block;
}

.wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:hover {
    transform: translate(-4px, -4px) !important;
    box-shadow: var(--s-brut-lg) !important;
    background: var(--lime) !important;
    color: var(--black) !important;
}

/* Outline button variant */
.wp-block-button.is-style-outline .wp-block-button__link {
    background: var(--white) !important;
    color: var(--black) !important;
    border: 4px solid var(--black) !important;
    box-shadow: var(--s-brut) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: var(--black) !important;
    color: var(--lime) !important;
}

/* ── Responsive Embeds (YouTube, Vimeo, dll) ───── */
.wp-block-embed,
.wp-block-embed__wrapper,
.article-container .video-wrapper {
    position: relative;
    margin: 2rem 0;
}

/* 16:9 aspect ratio — iframe tidak terkeluar dari container */
.wp-block-embed.is-type-video .wp-block-embed__wrapper,
.wp-block-embed-youtube .wp-block-embed__wrapper,
.wp-block-embed-vimeo .wp-block-embed__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.wp-block-embed.is-type-video .wp-block-embed__wrapper iframe,
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.wp-block-embed-vimeo .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--black);
    box-shadow: var(--s-brut-sm);
}

/* Wrapper tambahan untuk video HTML5 biasa */
.article-container video {
    width: 100%;
    height: auto;
    border: 2px solid var(--black);
    box-shadow: var(--s-brut-sm);
}

/* ── Pull Quote (Gutenberg) ────────────────────── */
.wp-block-pullquote {
    border-top: 4px solid var(--black);
    border-bottom: 4px solid var(--black);
    padding: 2rem 0;
    margin: 3rem 0;
    text-align: center;
}

.wp-block-pullquote blockquote {
    border: none;
    padding: 0;
    background: transparent;
    box-shadow: none;
}

.wp-block-pullquote blockquote p {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.wp-block-pullquote blockquote cite {
    font-style: normal;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    opacity: 0.4;
}

/* ── Gallery block ─────────────────────────────── */
.wp-block-gallery {
    margin: 2rem 0;
}

.wp-block-gallery .wp-block-image img {
    border: 2px solid var(--black);
}

/* ── Cover block ───────────────────────────────── */
.wp-block-cover {
    border: 4px solid var(--black);
    box-shadow: var(--s-brut);
    margin: 2rem 0;
}

/* ── Alignment helpers ─────────────────────────── */
.aligncenter { margin-left: auto; margin-right: auto; display: block; }
.alignright  { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.alignleft   { float: left;  margin-right: 1.5rem; margin-bottom: 1rem; }
.alignwide   { max-width: 100%; }
.alignfull   { max-width: 100%; margin-left: calc(-1 * var(--container-pad, 1.5rem)); margin-right: calc(-1 * var(--container-pad, 1.5rem)); }

/* Pagination */
.nav-links {
    display: flex;
    gap: 0.5rem;
    margin: 3rem 0;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.page-numbers {
    border: 2px solid var(--black);
    padding: 0.5rem 0.75rem;
    color: var(--black);
    text-decoration: none;
    transition: all .15s ease;
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--black);
    color: var(--lime);
}

/* ══════════════════════════════════════════════════
   EDU LABEL SINGLE POST - SWISS EDITORIAL
══════════════════════════════════════════════════ */

.el-single {
    width: min(100%, 1500px);
    margin: 0 auto;
    background: var(--paper);
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    color: var(--ink);
}

.el-single-hero {
    border-bottom: 1px solid var(--ink);
}

.el-single-hero .el-section-label,
.el-related .el-section-label,
.el-sidebar-index .el-section-label {
    border-bottom: 1px solid var(--ink);
}

.el-single-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(22rem, 4fr);
    min-height: clamp(28rem, 52vh, 44rem);
}

.el-single-title-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2rem, 6vw, 6rem);
    border-right: 1px solid var(--ink);
}

.el-single-kicker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    color: var(--swissred);
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.el-single-kicker > span:first-child {
    width: 2.5rem;
    height: 2px;
    background: var(--swissred);
}

.el-single-title {
    max-width: 12ch;
    font-size: clamp(3rem, 7.5vw, 7.6rem);
    font-weight: 900;
    letter-spacing: -0.075em;
    line-height: .86;
    text-transform: uppercase;
}

.el-single-dossier {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    padding: clamp(2rem, 4vw, 4.5rem);
    background: rgba(228, 227, 221, .48);
}

.el-single-dossier p {
    border-left: 2px solid var(--ink);
    padding-left: 1.5rem;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    font-weight: 600;
    line-height: 1.65;
    color: rgba(12, 12, 12, .76);
}

.el-single-dossier p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.el-single-dossier dl {
    display: grid;
    gap: 1rem;
}

.el-single-dossier dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(12, 12, 12, .18);
    padding-bottom: .65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.el-single-dossier dt {
    color: rgba(12, 12, 12, .45);
}

.el-single-visual {
    padding: clamp(1rem, 3vw, 3rem);
    border-bottom: 1px solid var(--ink);
    background-image:
        linear-gradient(to right, rgba(12, 12, 12, .04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(12, 12, 12, .04) 1px, transparent 1px);
    background-size: 4rem 4rem;
}

.el-single-visual > div {
    position: relative;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    border: 1px solid var(--ink);
    background: var(--ash);
    box-shadow: 0 14px 30px rgba(12, 12, 12, .08);
}

.el-single-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el-single-visual span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: var(--ink);
    color: var(--paper);
    padding: .45rem .7rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.el-single-share {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    background: var(--paper);
}

.el-single-share > * {
    display: flex;
    align-items: center;
    min-height: 3.6rem;
    padding: 0 1.25rem;
    border-right: 1px solid var(--ink);
}

.el-single-share > span {
    color: rgba(12, 12, 12, .45);
}

.el-single-share a:hover,
.el-single-share button:hover {
    background: var(--swissred);
    color: var(--paper);
}

.el-single-grid {
    display: grid;
    grid-template-columns: minmax(12rem, 2fr) minmax(0, 7fr) minmax(18rem, 3fr);
}

.el-toc-panel,
.el-single-briefing {
    border-right: 1px solid var(--ink);
    background: rgba(228, 227, 221, .24);
}

.el-single-briefing {
    border-right: 0;
    border-left: 1px solid var(--ink);
}

.el-toc-panel > div,
.el-single-briefing > div {
    position: sticky;
    top: 7.5rem;
    padding: 2rem;
}

.el-toc-panel h2 {
    margin-bottom: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(12, 12, 12, .45);
}

#toc-nav {
    display: grid;
    gap: .75rem;
}

#toc-nav a,
#toc-nav p {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
}

#toc-nav a {
    border-left: 2px solid rgba(12, 12, 12, .18);
    padding-left: .8rem;
}

#toc-nav a:hover {
    border-left-color: var(--swissred);
    color: var(--swissred);
}

.el-article {
    background: var(--paper);
    padding: clamp(2rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}

.el-article .article-container {
    max-width: 70ch;
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.1vw, 1.14rem);
    line-height: 1.86;
}

.el-article .article-container > p:first-of-type::first-letter {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: .75;
    margin: .15rem .85rem 0 0;
    padding: .15rem .45rem;
    background: var(--ink);
    border: 0;
    color: var(--paper);
}

.el-article .article-container h2,
.el-article .article-container h3,
.el-article .article-container h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.el-article .article-container h2 {
    position: relative;
    margin: 3.5rem 0 1.25rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--ink);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: .95;
}

.el-article .article-container h2::before {
    content: "SECTION";
    display: block;
    margin-bottom: .75rem;
    color: var(--swissred);
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .22em;
}

.el-article .article-container h3 {
    margin: 2.35rem 0 .85rem;
    font-size: clamp(1.25rem, 2vw, 2rem);
    line-height: 1;
}

.el-article .article-container a {
    color: var(--ink);
    text-decoration-color: var(--swissred);
}

.el-article .article-container a:hover {
    background: var(--swissred);
    color: var(--paper);
}

.el-article .article-container ul > li::before {
    background: var(--swissred);
    border-color: var(--ink);
}

.el-article .article-container ol > li::before,
.el-article .article-container ol ol > li::before {
    font-family: 'JetBrains Mono', monospace;
}

.el-article .article-container blockquote,
.el-article .wp-block-quote {
    border: 1px solid var(--ink);
    border-left: .5rem solid var(--swissred);
    background: var(--ash);
    box-shadow: none;
    font-style: normal;
}

.el-article .article-container blockquote:hover,
.el-article .wp-block-quote:hover {
    box-shadow: none;
}

.el-article .article-container blockquote::before {
    color: var(--swissred);
    -webkit-text-stroke: 0;
    opacity: .2;
}

.el-article .article-container img,
.el-article .wp-block-image img {
    border: 1px solid var(--ink);
    box-shadow: none;
}

.el-article .wp-block-button__link,
.el-article .wp-block-button .wp-block-button__link {
    border: 1px solid var(--ink) !important;
    background: var(--ink) !important;
    box-shadow: none !important;
    color: var(--paper) !important;
    font-family: 'JetBrains Mono', monospace !important;
}

.el-page-links,
.el-tag-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .75rem;
    margin-top: 3rem;
    border-top: 1px solid var(--ink);
    padding-top: 1.25rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.el-page-links span,
.el-tag-strip a {
    border: 1px solid var(--ink);
    padding: .45rem .65rem;
}

.el-tag-strip > span {
    color: rgba(12, 12, 12, .45);
}

.el-tag-strip a:hover,
.el-page-links span:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-author-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
    border: 1px solid var(--ink);
    background: var(--ash);
    padding: clamp(1.5rem, 3vw, 2.25rem);
}

.el-author-avatar {
    width: 6rem;
    height: 6rem;
    overflow: hidden;
    border: 1px solid var(--ink);
}

.el-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el-author-card span,
.el-author-card a,
.el-newsletter-panel > span {
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.el-author-card span,
.el-newsletter-panel > span {
    color: var(--swissred);
}

.el-author-card h2,
.el-newsletter-panel h2 {
    margin: .55rem 0 .8rem;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    letter-spacing: -0.06em;
    line-height: .95;
    text-transform: uppercase;
}

.el-author-card p,
.el-newsletter-panel p {
    max-width: 36rem;
    color: rgba(12, 12, 12, .68);
    font-weight: 600;
    line-height: 1.55;
}

.el-author-card a {
    display: inline-flex;
    margin-top: 1.25rem;
    border-bottom: 2px solid var(--ink);
}

.el-author-card a:hover {
    border-bottom-color: var(--swissred);
    color: var(--swissred);
}

.el-related,
.el-comments-wrap {
    margin-top: 4rem;
    border-top: 1px solid var(--ink);
    padding-top: 0;
}

.el-related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-left: 1px solid var(--ink);
}

.el-related-card {
    display: block;
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
}

.el-related-card > div {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid var(--ink);
    background: var(--ash);
}

.el-related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.el-related-card > span {
    display: block;
    margin: 1rem 1.25rem .65rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(12, 12, 12, .45);
}

.el-related-card h3 {
    margin: 0 1.25rem 1.25rem;
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.el-related-card:hover {
    background: var(--ink);
    color: var(--paper);
}

.el-related-card:hover > span {
    color: rgba(240, 239, 234, .52);
}

.el-related-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(12, 12, 12, .18);
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -.06em;
}

.el-newsletter-panel {
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--paper);
    padding: 2rem;
}

.el-newsletter-panel p {
    color: rgba(240, 239, 234, .62);
}

.el-newsletter-panel form {
    display: grid;
    gap: 0;
    margin-top: 1.5rem;
    border: 1px solid rgba(240, 239, 234, .42);
}

.el-newsletter-panel input,
.el-newsletter-panel button {
    width: 100%;
    min-height: 3.2rem;
    padding: 0 .9rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.el-newsletter-panel input {
    color: var(--paper);
}

.el-newsletter-panel button {
    border-top: 1px solid rgba(240, 239, 234, .42);
    background: var(--paper);
    color: var(--ink);
}

.el-newsletter-panel button:hover {
    background: var(--swissred);
    color: var(--paper);
}

.el-sidebar-index,
.el-widget-stack {
    margin-top: 2.5rem;
}

.el-sidebar-row {
    display: grid;
    grid-template-columns: 3.3rem 1fr;
    border-left: 1px solid var(--ink);
    border-right: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
    min-height: 4.25rem;
}

.el-sidebar-index .el-section-label + .el-sidebar-row {
    border-top: 0;
}

.el-sidebar-row b {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid var(--ink);
    color: rgba(12, 12, 12, .32);
    font-family: 'JetBrains Mono', monospace;
    font-size: .72rem;
}

.el-sidebar-row span {
    display: flex;
    align-items: center;
    padding: 1rem;
    font-size: .88rem;
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.1;
    text-transform: uppercase;
}

.el-sidebar-row:hover {
    background: var(--swissred);
    color: var(--paper);
}

.el-command-center {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--ink);
    background: var(--paper);
    box-shadow: 0 8px 18px rgba(12, 12, 12, .12);
    max-width: calc(100vw - 2rem);
}

.el-command-center > div {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--swissred);
}

.el-command-center a {
    display: flex;
    align-items: center;
    min-height: 2.75rem;
    padding: 0 .95rem;
    border-right: 1px solid var(--ink);
    font-family: 'JetBrains Mono', monospace;
    font-size: .62rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.el-command-center a:last-child {
    border-right: 0;
}

.el-command-center a:hover {
    background: var(--ink);
    color: var(--paper);
}

#reading-progress {
    background: var(--swissred);
}

@media (max-width: 1180px) {
    .el-single-hero-grid,
    .el-single-grid {
        grid-template-columns: 1fr;
    }

    .el-single-title-panel,
    .el-toc-panel,
    .el-single-briefing {
        border-right: 0;
    }

    .el-single-dossier,
    .el-single-briefing {
        border-top: 1px solid var(--ink);
        border-left: 0;
    }

    .el-toc-panel {
        display: none;
    }

    .el-single-briefing > div {
        position: static;
    }
}

@media (max-width: 640px) {
    .el-single {
        border-left: 0;
        border-right: 0;
    }

    .el-single-title-panel,
    .el-single-dossier,
    .el-article,
    .el-single-briefing > div {
        padding: 1.5rem;
    }

    .el-single-title {
        max-width: 11ch;
        font-size: clamp(2.35rem, 13vw, 3.65rem);
        line-height: .92;
        letter-spacing: -.065em;
    }

    .el-single-kicker {
        margin-bottom: 1.35rem;
        font-size: .55rem;
        letter-spacing: .16em;
    }

    .el-single-dossier {
        gap: 1.5rem;
    }

    .el-single-dossier p {
        padding-left: 1rem;
        font-size: .98rem;
        line-height: 1.55;
        -webkit-line-clamp: 4;
    }

    .el-single-dossier dl > div,
    .el-single-share {
        font-size: .56rem;
        letter-spacing: .1em;
    }

    .el-single-visual {
        padding: .75rem;
    }

    .el-single-visual > div {
        aspect-ratio: 16 / 10;
        box-shadow: none;
    }

    .el-single-visual span {
        left: .65rem;
        bottom: .65rem;
        max-width: calc(100% - 1.3rem);
        font-size: .52rem;
        letter-spacing: .12em;
    }

    .el-single-share > * {
        min-height: 2.75rem;
        padding: 0 .78rem;
    }

    .el-single-share {
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .el-single-share::-webkit-scrollbar {
        display: none;
    }

    .el-article .article-container {
        font-size: 1rem;
        line-height: 1.78;
    }

    .el-article .article-container > p:first-of-type::first-letter {
        font-size: 3.4rem;
    }

    .el-author-card,
    .el-related-grid {
        grid-template-columns: 1fr;
    }

    .el-author-avatar {
        width: 5rem;
        height: 5rem;
    }

    .single .el-command-center a {
        flex: 0 0 auto;
        min-height: 2.55rem;
        padding: 0 .72rem;
        font-size: .5rem;
        letter-spacing: .08em;
    }

    .single .el-command-center {
        bottom: .55rem;
    }
}
