/* =====================================================================
   rironbusou.net — Theoretical Armament Briefing
   Aesthetic: Corporate / terracotta-warm / f-pattern / marble / shapes
   ===================================================================== */

:root {
    --terracotta-core: #C4704A;
    --sand-light: #E8C8B0;
    --clay-deep: #6B3A28;
    --marble-cream: #F0ECE4;
    --charcoal: #2A2420;
    --bronze-warm: #A08060;
    --marble-vein: #D0C4B4;

    --grid-max: 1100px;
    --section-pad: clamp(48px, 6vw, 96px);
    --gap-grid: 40px;

    --font-head: "Bebas Neue", "IBM Plex Sans", "Inter", system-ui, sans-serif;
    --font-body: "Barlow", "Inter", "Helvetica Neue", Arial, sans-serif;
    --font-mono: "IBM Plex Mono", "SFMono-Regular", Menlo, monospace;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background: var(--marble-cream);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--charcoal);
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

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

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

em { font-style: normal; }

/* =========================================================
   Marble surface (CSS-generated marble texture)
   ========================================================= */
.marble-surface {
    position: relative;
    background-color: var(--marble-cream);
    background-image:
        radial-gradient(ellipse 60% 40% at 18% 22%, rgba(208, 196, 180, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 50% 70% at 82% 30%, rgba(208, 196, 180, 0.42) 0%, transparent 65%),
        radial-gradient(ellipse 80% 50% at 50% 80%, rgba(196, 112, 74, 0.10) 0%, transparent 70%),
        radial-gradient(ellipse 30% 25% at 28% 70%, rgba(160, 128, 96, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 25% 18% at 75% 60%, rgba(208, 196, 180, 0.50) 0%, transparent 70%),
        linear-gradient(125deg, var(--marble-cream) 0%, #E8E2D6 55%, var(--marble-cream) 100%);
    background-blend-mode: normal;
    border: 1px solid rgba(160, 128, 96, 0.22);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 18px 38px -28px rgba(42, 36, 32, 0.35);
    overflow: hidden;
}

.marble-surface::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(118deg, transparent 0 22px, rgba(160, 128, 96, 0.05) 22px 23px),
        repeating-linear-gradient(70deg, transparent 0 38px, rgba(196, 112, 74, 0.04) 38px 39px);
    mix-blend-mode: multiply;
    opacity: 0.85;
}

/* =========================================================
   Skeleton loading (terracotta shimmer)
   ========================================================= */
.skeleton-target {
    position: relative;
}

.skeleton-target.is-skeleton {
    color: transparent !important;
    text-shadow: none !important;
    user-select: none;
}

.skeleton-target.is-skeleton > * {
    visibility: hidden;
}

.skeleton-target.is-skeleton::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--sand-light) 0%, var(--marble-cream) 50%, var(--sand-light) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease infinite;
    z-index: 1;
}

.skeleton-target.is-resolved {
    animation: skeleton-fade 0.65s cubic-bezier(0.2, 0.8, 0.25, 1) both;
}

.skeleton-target.is-resolved::before {
    display: none;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes skeleton-fade {
    from {
        opacity: 0;
        transform: translateY(6px);
        filter: blur(2px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* =========================================================
   Briefing Header (100vh)
   ========================================================= */
.briefing-header {
    position: relative;
    min-height: 100vh;
    color: var(--charcoal);
    overflow: hidden;
    isolation: isolate;
}

.briefing-header__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(ellipse at 12% 0%, rgba(196, 112, 74, 0.92) 0%, rgba(196, 112, 74, 0.55) 30%, transparent 65%),
        radial-gradient(ellipse at 95% 100%, rgba(232, 200, 176, 0.85) 0%, transparent 60%),
        linear-gradient(140deg, var(--terracotta-core) 0%, #D88862 35%, var(--sand-light) 100%);
}

.briefing-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent 0 39px, rgba(42, 36, 32, 0.04) 39px 40px),
        repeating-linear-gradient(90deg, transparent 0 39px, rgba(42, 36, 32, 0.04) 39px 40px);
    mix-blend-mode: multiply;
    opacity: 0.7;
}

.briefing-header__inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: clamp(40px, 6vw, 80px) 40px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: var(--gap-grid);
    align-items: stretch;
}

.briefing-header__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding-top: 8px;
}

.briefing-meta {
    font-family: var(--font-mono);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--clay-deep);
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.meta-tag {
    background: rgba(240, 236, 228, 0.55);
    border: 1px solid rgba(107, 58, 40, 0.35);
    padding: 5px 10px;
    border-radius: 1px;
}

.meta-divider {
    opacity: 0.5;
}

.wordmark-wrap {
    margin-top: 18px;
}

.wordmark {
    font-family: var(--font-head);
    font-size: clamp(56px, 9vw, 132px);
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--charcoal);
    margin: 0;
    display: flex;
    flex-direction: column;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.18);
}

.wordmark__line {
    display: block;
}

.wordmark__line--accent {
    color: var(--clay-deep);
    margin-left: clamp(6px, 1.5vw, 18px);
}

.wordmark__subtitle {
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay-deep);
    margin: 18px 0 0;
}

.briefing-shapes {
    display: flex;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    margin-top: 12px;
}

.shape-marker {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.shape-marker svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: var(--charcoal);
    stroke-width: 2;
}

.shape-marker em {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay-deep);
}

.briefing-scroll {
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--clay-deep);
}

.briefing-scroll__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--clay-deep) 0%, transparent 100%);
    max-width: 260px;
    position: relative;
    overflow: hidden;
}

.briefing-scroll__line::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 28px;
    height: 5px;
    background: var(--clay-deep);
    animation: scroll-pulse 2.4s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0% { transform: translateX(-30px); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(280px); opacity: 0; }
}

/* Header right panel */
.briefing-header__panel {
    padding: clamp(28px, 3vw, 36px);
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-radius: 2px;
    align-self: stretch;
    min-height: 360px;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clay-deep);
    border-bottom: 1px solid rgba(107, 58, 40, 0.22);
    padding-bottom: 12px;
}

.panel-header__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--terracotta-core);
    box-shadow: 0 0 0 4px rgba(196, 112, 74, 0.18);
}

.panel-title {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1;
    color: var(--charcoal);
    margin: 0;
}

.panel-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.panel-list li {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    padding: 8px 0;
    border-bottom: 1px dashed rgba(107, 58, 40, 0.18);
}

.panel-list li span:first-child {
    color: var(--bronze-warm);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
}

.panel-status {
    color: var(--terracotta-core) !important;
    font-weight: 600;
}

.panel-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--clay-deep);
    padding-top: 12px;
    border-top: 1px solid rgba(107, 58, 40, 0.22);
}

/* =========================================================
   Strategy sections (f-pattern)
   ========================================================= */
.strategy-section {
    padding: var(--section-pad) 40px;
    background: var(--marble-cream);
}

.strategy-section--alt {
    background: linear-gradient(180deg, var(--marble-cream) 0%, #EAE3D5 100%);
}

.strategy-section__inner,
.arsenal-section__inner,
.schedule-section__inner {
    max-width: var(--grid-max);
    margin: 0 auto;
}

.section-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-bottom: 48px;
    position: relative;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--terracotta-core);
}

.eyebrow-shape {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--terracotta-core);
    stroke-width: 2;
}

.section-headline {
    font-family: var(--font-head);
    font-size: clamp(32px, 5vw, 72px);
    line-height: 1;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    max-width: 18ch;
}

.section-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--gap-grid);
    align-items: start;
}

.section-grid__main {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.section-lede {
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.55;
    color: var(--charcoal);
    font-weight: 600;
    margin: 0;
}

.section-body {
    color: var(--charcoal);
    margin: 0;
}

.section-ledger {
    display: flex;
    flex-direction: column;
    gap: 0;
    counter-reset: ledger;
    margin-top: 8px;
    border-top: 1px solid rgba(107, 58, 40, 0.18);
}

.section-ledger li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(107, 58, 40, 0.18);
    align-items: baseline;
}

.ledger-num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--terracotta-core);
}

.ledger-text {
    color: var(--charcoal);
    line-height: 1.5;
}

.section-grid__side {
    padding: clamp(28px, 2.5vw, 36px);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-eyebrow {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--bronze-warm);
}

.side-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1;
    color: var(--charcoal);
    margin: 0;
}

.side-term {
    font-family: var(--font-head);
    font-size: clamp(22px, 2.4vw, 32px);
    color: var(--terracotta-core);
    margin: 6px 0 0;
    letter-spacing: 0.02em;
}

.side-def {
    color: var(--charcoal);
    line-height: 1.55;
    margin: 0;
}

.side-def em {
    font-family: var(--font-mono);
    font-style: normal;
    color: var(--bronze-warm);
    margin-right: 6px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.side-meta {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay-deep);
    border-top: 1px dashed rgba(107, 58, 40, 0.25);
    padding-top: 10px;
}

.side-meta span:first-child {
    color: var(--bronze-warm);
}

/* Doctrine rows */
.doctrine-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 8px;
    border-top: 1px solid rgba(107, 58, 40, 0.2);
}

.doctrine-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(107, 58, 40, 0.2);
    align-items: start;
    transition: background 0.4s ease, padding-left 0.4s ease;
}

.doctrine-row:hover {
    background: rgba(232, 200, 176, 0.35);
    padding-left: 12px;
}

.doctrine-row__num {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.22em;
    color: var(--terracotta-core);
    padding-top: 6px;
}

.doctrine-row h4 {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1;
    margin: 0 0 8px;
    color: var(--charcoal);
}

.doctrine-row p {
    margin: 0;
    color: var(--charcoal);
}

/* Velocity index */
.velocity-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.velocity-list li {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 6px;
    padding-bottom: 10px;
    border-bottom: 1px dashed rgba(107, 58, 40, 0.22);
}

.velocity-list__label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--bronze-warm);
}

.velocity-list__value {
    font-family: var(--font-head);
    font-size: 22px;
    color: var(--charcoal);
    text-align: right;
    letter-spacing: 0.02em;
}

.velocity-list__value em {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    color: var(--bronze-warm);
    margin-left: 4px;
}

.velocity-list__bar {
    grid-column: 1 / -1;
    height: 4px;
    background: rgba(160, 128, 96, 0.18);
    overflow: hidden;
    position: relative;
}

.velocity-list__bar i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--terracotta-core), var(--clay-deep));
    transition: width 1.2s cubic-bezier(0.2, 0.8, 0.25, 1);
}

.velocity-list__bar.is-active i {
    width: var(--w);
}

/* =========================================================
   Arsenal grid
   ========================================================= */
.arsenal-section {
    padding: var(--section-pad) 40px;
    background:
        linear-gradient(180deg, #EAE3D5 0%, var(--marble-cream) 100%);
}

.arsenal-row {
    grid-template-columns: minmax(0, 1fr);
}

.arsenal-lede {
    max-width: 60ch;
    color: var(--charcoal);
    font-size: clamp(16px, 1.4vw, 18px);
    margin: 12px 0 0;
}

.arsenal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.arsenal-card {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 280px;
    transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.25, 1), box-shadow 0.45s ease;
    position: relative;
    border-radius: 2px;
}

.arsenal-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 30px 50px -28px rgba(42, 36, 32, 0.45);
}

.arsenal-card__shape {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 60px;
    height: 60px;
    opacity: 0.95;
    z-index: 2;
}

.arsenal-card__shape svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--terracotta-core);
    stroke-width: 2;
}

.arsenal-card__id {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--bronze-warm);
    z-index: 2;
}

.arsenal-card__title {
    font-family: var(--font-head);
    font-size: clamp(24px, 2.4vw, 32px);
    line-height: 1;
    color: var(--charcoal);
    margin: 0;
    z-index: 2;
    position: relative;
    max-width: 70%;
}

.arsenal-card__body {
    font-size: 15px;
    line-height: 1.55;
    color: var(--charcoal);
    margin: 0;
    z-index: 2;
    position: relative;
}

.arsenal-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    z-index: 2;
    position: relative;
}

.arsenal-card__tags li {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay-deep);
    background: rgba(196, 112, 74, 0.14);
    padding: 4px 8px;
    border: 1px solid rgba(107, 58, 40, 0.22);
}

/* =========================================================
   Schedule
   ========================================================= */
.schedule-section {
    padding: var(--section-pad) 40px;
    background: var(--marble-cream);
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(107, 58, 40, 0.2);
}

.schedule-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(107, 58, 40, 0.2);
    align-items: baseline;
    transition: padding-left 0.35s ease, background 0.35s ease;
}

.schedule-row:hover {
    padding-left: 14px;
    background: rgba(232, 200, 176, 0.35);
}

.schedule-row__time {
    font-family: var(--font-head);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--terracotta-core);
    letter-spacing: 0.04em;
}

.schedule-row__label {
    font-family: var(--font-head);
    font-size: clamp(20px, 2vw, 26px);
    color: var(--charcoal);
}

.schedule-row__note {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bronze-warm);
}

/* =========================================================
   Command Footer
   ========================================================= */
.command-footer {
    background: var(--clay-deep);
    color: var(--marble-cream);
    padding: 0 0 36px;
    position: relative;
    margin-top: 60px;
}

.command-footer__strip {
    height: 18px;
    background:
        radial-gradient(ellipse 30% 80% at 12% 50%, rgba(208, 196, 180, 0.5), transparent 70%),
        radial-gradient(ellipse 25% 80% at 50% 50%, rgba(208, 196, 180, 0.4), transparent 70%),
        radial-gradient(ellipse 30% 80% at 88% 50%, rgba(208, 196, 180, 0.5), transparent 70%),
        linear-gradient(90deg, var(--terracotta-core), #8E4A30, var(--terracotta-core));
}

.command-footer__inner {
    max-width: var(--grid-max);
    margin: 0 auto;
    padding: 60px 40px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
    gap: var(--gap-grid);
    align-items: start;
}

.command-footer__brand h2 {
    font-family: var(--font-head);
    font-size: clamp(36px, 4.5vw, 56px);
    line-height: 1;
    color: var(--marble-cream);
    margin: 0 0 16px;
}

.command-footer__brand p {
    color: rgba(240, 236, 228, 0.78);
    margin: 0;
    max-width: 36ch;
}

.command-footer__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-col__title {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sand-light);
    display: block;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(232, 200, 176, 0.25);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col li {
    color: rgba(240, 236, 228, 0.85);
    font-size: 14px;
}

.command-footer__base {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 48px;
    padding: 18px 0 0;
    border-top: 1px solid rgba(232, 200, 176, 0.2);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(240, 236, 228, 0.7);
}

.footer-shapes {
    display: inline-flex;
    gap: 12px;
    align-items: center;
}

.footer-shapes svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: var(--sand-light);
    stroke-width: 1.4;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
    .briefing-header__inner {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 32px;
    }
    .briefing-header__panel {
        min-height: 0;
    }
    .section-grid {
        grid-template-columns: 1fr;
    }
    .arsenal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .strategy-section,
    .arsenal-section,
    .schedule-section {
        padding: 64px 24px;
    }
    .command-footer__inner {
        grid-template-columns: 1fr;
        padding: 48px 24px 0;
    }
    .schedule-row {
        grid-template-columns: 90px 1fr;
        grid-template-rows: auto auto;
    }
    .schedule-row__note {
        grid-column: 2 / 3;
    }
}

@media (max-width: 640px) {
    .briefing-meta {
        font-size: 11px;
    }
    .wordmark {
        font-size: clamp(48px, 14vw, 80px);
    }
    .briefing-shapes {
        gap: 22px;
    }
    .arsenal-grid {
        grid-template-columns: 1fr;
    }
    .doctrine-row,
    .section-ledger li {
        grid-template-columns: 56px 1fr;
        gap: 14px;
    }
    .command-footer__cols {
        grid-template-columns: 1fr 1fr;
    }
    .schedule-row__time {
        font-size: 28px;
    }
}

@media (max-width: 420px) {
    .command-footer__cols {
        grid-template-columns: 1fr;
    }
}
