﻿:root {
      --cw-black: #111111;
      --cw-charcoal: #1b1717;
      --cw-red: #e72f2f;
      --cw-red-deep: #850b11;
      --cw-gold: #f4bd37;
      --cw-gold-dark: #b67416;
      --cw-blue: #355f8c;
      --cw-paper: #ffffff;
      --cw-soft: #f7f2ec;
      --cw-ink: #2c2f35;
      --cw-muted: #67717d;
      --cw-line: rgba(44, 47, 53, .13);
      --cw-max: 1140px;
      --cw-shadow: 0 18px 48px rgba(26, 16, 14, .16);
      font-family: Arial, "Helvetica Neue", sans-serif;
    }

    * { box-sizing: border-box; }

    html,
    body {
      margin: 0;
      min-height: 100%;
      overflow-x: hidden;
      letter-spacing: 0;
    }

    body {
      min-width: 320px;
      color: var(--cw-ink);
      background: var(--cw-soft);
      line-height: 1.68;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    h1, h2, h3, p { margin: 0; }
    p { color: var(--cw-muted); }

    .cw-wrap {
      width: min(var(--cw-max), calc(100% - 44px));
      margin: 0 auto;
    }

    .cw-top {
      background: var(--cw-black);
      color: #fff;
    }

    .cw-top-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cw-brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      min-width: 0;
    }

    .cw-mark {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,0)),
        linear-gradient(135deg, #e72f2f 0%, #a70d16 46%, #f4bd37 100%);
      border: 2px solid rgba(244, 189, 55, .7);
      box-shadow: 0 14px 28px rgba(0,0,0,.32);
      font-size: 20px;
      font-weight: 950;
    }

    .cw-word {
      display: grid;
      gap: 3px;
      line-height: 1;
      min-width: 0;
    }

    .cw-word strong {
      color: var(--cw-gold);
      font-size: 30px;
      font-weight: 950;
    }

    .cw-word span {
      color: rgba(255,255,255,.74);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .cw-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .cw-btn {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 20px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,.22);
      color: #fff;
      background: var(--cw-blue);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 0 10px 22px rgba(0,0,0,.2);
    }

    .cw-btn.gold {
      border-color: transparent;
      color: #241204;
      background: linear-gradient(180deg, #ffe889, var(--cw-gold) 52%, var(--cw-gold-dark));
      box-shadow: 0 14px 28px rgba(244, 189, 55, .28);
    }

    .cw-nav-band {
      background: var(--cw-red);
      color: #fff;
      box-shadow: 0 10px 24px rgba(135, 12, 17, .18);
    }

    .cw-nav {
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      overflow-x: auto;
      white-space: nowrap;
      scrollbar-width: none;
    }

    .cw-nav::-webkit-scrollbar { display: none; }

    .cw-nav a {
      position: relative;
      padding: 22px 0 20px;
      color: rgba(255,255,255,.9);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .cw-nav a.is-active {
      color: #fff;
    }

    .cw-nav a.is-active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 12px;
      height: 4px;
      border-radius: 999px;
      background: var(--cw-gold);
    }

    .cw-hero {
      position: relative;
      min-height: 650px;
      color: #fff;
      overflow: hidden;
      background: #170305;
      isolation: isolate;
    }

    .cw-hero img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: -3;
    }

    .cw-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(8,4,5,.96) 0%, rgba(8,4,5,.86) 35%, rgba(8,4,5,.34) 68%, rgba(8,4,5,.12) 100%);
    }

    .cw-hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 130px;
      z-index: -1;
      background: linear-gradient(180deg, transparent, #170305);
    }

    .cw-hero-inner {
      min-height: 650px;
      display: grid;
      grid-template-columns: minmax(0, 630px) minmax(260px, 1fr);
      gap: 42px;
      align-items: center;
      padding: 64px 0 76px;
    }

    .cw-title {
      max-width: 650px;
      color: #fff;
      font-size: clamp(44px, 6.4vw, 82px);
      line-height: .98;
      font-weight: 950;
      text-transform: uppercase;
      text-shadow: 0 14px 36px rgba(0,0,0,.46);
    }

    .cw-title span {
      display: block;
      color: var(--cw-gold);
    }

    .cw-copy {
      max-width: 570px;
      margin-top: 24px;
      color: rgba(255,255,255,.84);
      font-size: 18px;
    }

    .cw-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 30px;
    }

    .cw-hero-note {
      width: min(100%, 430px);
      align-self: end;
      justify-self: end;
      margin-bottom: 20px;
      padding: 22px;
      border: 1px solid rgba(244, 189, 55, .38);
      border-radius: 8px;
      background: rgba(17, 17, 17, .7);
      box-shadow: 0 22px 70px rgba(0,0,0,.35);
      backdrop-filter: blur(12px);
    }

    .cw-hero-note h2 {
      color: var(--cw-gold);
      font-size: 24px;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .cw-hero-note p {
      margin-top: 10px;
      color: rgba(255,255,255,.74);
      font-size: 14px;
    }

    .cw-mini-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 18px;
      overflow: hidden;
      border-radius: 8px;
      background: rgba(244, 189, 55, .28);
    }

    .cw-mini-stats span {
      min-height: 82px;
      padding: 15px 12px;
      background: rgba(0,0,0,.42);
      color: rgba(255,255,255,.72);
      font-size: 12px;
      font-weight: 800;
    }

    .cw-mini-stats b {
      display: block;
      color: #fff1a8;
      font-size: 24px;
      line-height: 1;
    }

    .cw-main {
      background: linear-gradient(180deg, #170305 0, #ffffff 0, #ffffff 58%, #f7f2ec 100%);
    }

    .cw-section {
      padding: 76px 0;
    }

    .cw-section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .cw-section-head h2 {
      max-width: 700px;
      color: var(--cw-charcoal);
      font-size: clamp(30px, 4.5vw, 52px);
      line-height: 1.06;
      font-weight: 950;
      text-transform: uppercase;
    }

    .cw-section-head p {
      max-width: 430px;
      font-size: 16px;
    }

    .cw-intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 24px;
      align-items: start;
    }

    .cw-article {
      padding-right: 16px;
    }

    .cw-article h3 {
      margin: 34px 0 12px;
      color: var(--cw-charcoal);
      font-size: 26px;
      line-height: 1.22;
      font-weight: 950;
    }

    .cw-article h3:first-child { margin-top: 0; }

    .cw-article p {
      margin-top: 14px;
      font-size: 16px;
    }

    .cw-article strong {
      color: var(--cw-red-deep);
    }

    .cw-callout {
      margin: 24px 0;
      padding: 18px 20px;
      border-left: 5px solid var(--cw-red);
      border-radius: 0 8px 8px 0;
      background: #fff5e0;
      color: #3b2411;
      font-weight: 900;
      overflow-wrap: anywhere;
    }

    .cw-side {
      position: sticky;
      top: 22px;
      border-radius: 8px;
      overflow: hidden;
      background: var(--cw-paper);
      border: 1px solid var(--cw-line);
      box-shadow: var(--cw-shadow);
    }

    .cw-side-head {
      padding: 22px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(244,189,55,.2), transparent 45%),
        linear-gradient(135deg, var(--cw-red-deep), var(--cw-red));
    }

    .cw-side-head strong {
      display: block;
      font-size: 25px;
      line-height: 1.08;
      text-transform: uppercase;
    }

    .cw-side-head span {
      display: block;
      margin-top: 7px;
      color: rgba(255,255,255,.78);
      font-size: 13px;
      font-weight: 800;
    }

    .cw-side-list {
      display: grid;
      gap: 10px;
      padding: 16px;
    }

    .cw-side-list a {
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 0 14px;
      border: 1px solid var(--cw-line);
      border-radius: 8px;
      background: #fff;
      color: var(--cw-charcoal);
      font-size: 14px;
      font-weight: 900;
    }

    .cw-side-list a::after,
    .cw-news-card a::after {
      content: "";
      width: 9px;
      height: 9px;
      flex: 0 0 auto;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
    }

    .cw-feature-band {
      color: #fff;
      background:
        radial-gradient(circle at 14% 8%, rgba(244,189,55,.18), transparent 24%),
        linear-gradient(180deg, #1b0506, #100607);
    }

    .cw-feature-band .cw-section-head h2 {
      color: var(--cw-gold);
    }

    .cw-feature-band .cw-section-head p {
      color: rgba(255,255,255,.74);
    }

    .cw-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .cw-flow-card {
      min-height: 238px;
      padding: 24px;
      border-radius: 8px;
      border: 1px solid rgba(244,189,55,.22);
      background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        #18090a;
      box-shadow: 0 18px 44px rgba(0,0,0,.2);
    }

    .cw-flow-card b {
      display: grid;
      place-items: center;
      width: 52px;
      height: 52px;
      border-radius: 8px;
      color: #2c1303;
      background: linear-gradient(180deg, #ffe889, var(--cw-gold));
      font-size: 20px;
      font-weight: 950;
    }

    .cw-flow-card h3 {
      margin-top: 28px;
      color: #fff;
      font-size: 22px;
      line-height: 1.18;
    }

    .cw-flow-card p {
      margin-top: 10px;
      color: rgba(255,255,255,.7);
      font-size: 14px;
    }

    .cw-news {
      background: #f7f2ec;
    }

    .cw-news-shell {
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .cw-news-title {
      position: sticky;
      top: 22px;
      padding: 28px;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(244,189,55,.2), transparent 50%),
        linear-gradient(135deg, var(--cw-red-deep), #1c0808);
      box-shadow: var(--cw-shadow);
    }

    .cw-news-title h2 {
      color: var(--cw-gold);
      font-size: 35px;
      line-height: 1.05;
      text-transform: uppercase;
    }

    .cw-news-title p {
      margin-top: 14px;
      color: rgba(255,255,255,.76);
      font-size: 15px;
    }

    .cw-news-list {
      display: grid;
      gap: 14px;
    }

    .cw-news-card {
      display: grid;
      grid-template-columns: 118px minmax(0, 1fr);
      gap: 18px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--cw-line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 12px 30px rgba(54, 35, 26, .07);
    }

    .cw-news-thumb {
      aspect-ratio: 1.28;
      border-radius: 8px;
      background:
        radial-gradient(circle at 72% 24%, rgba(244,189,55,.92), transparent 24%),
        linear-gradient(135deg, var(--cw-red-deep), var(--cw-red) 52%, #191919);
    }

    .cw-news-card h3 {
      color: var(--cw-charcoal);
      font-size: 20px;
      line-height: 1.28;
    }

    .cw-news-card p {
      margin-top: 6px;
      font-size: 14px;
      line-height: 1.56;
    }

    .cw-news-card a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 11px;
      color: var(--cw-red-deep);
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .cw-news-card a::after {
      width: 7px;
      height: 7px;
    }

    .cw-footer {
      padding: 36px 0 42px;
      color: rgba(255,255,255,.72);
      background: var(--cw-black);
    }

    .cw-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(244,189,55,.22);
      padding-top: 24px;
      font-size: 14px;
    }

    .cw-footer strong {
      color: var(--cw-gold);
      font-size: 18px;
    }

    @media (max-width: 1060px) {
      .cw-nav {
        justify-content: flex-start;
      }

      .cw-hero-inner,
      .cw-intro-grid,
      .cw-news-shell {
        grid-template-columns: 1fr;
      }

      .cw-hero-note,
      .cw-side,
      .cw-news-title {
        position: static;
        justify-self: start;
      }

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

    @media (max-width: 720px) {
      .cw-wrap {
        width: min(100% - 28px, var(--cw-max));
      }

      .cw-top-inner {
        min-height: 70px;
      }

      .cw-mark {
        width: 48px;
        height: 48px;
        font-size: 17px;
      }

      .cw-word strong {
        font-size: 23px;
      }

      .cw-word span,
      .cw-actions .cw-btn:first-child {
        display: none;
      }

      .cw-btn {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
      }

      .cw-nav {
        min-height: 58px;
        gap: 20px;
      }

      .cw-nav a {
        padding-top: 18px;
        padding-bottom: 18px;
        font-size: 12px;
      }

      .cw-hero {
        min-height: 680px;
      }

      .cw-hero img {
        object-position: 64% center;
      }

      .cw-hero::before {
        background:
          linear-gradient(180deg, rgba(8,4,5,.9) 0%, rgba(8,4,5,.7) 42%, rgba(8,4,5,.95) 80%, #170305 100%);
      }

      .cw-hero-inner {
        min-height: 680px;
        padding: 48px 0 36px;
        align-items: end;
      }

      .cw-title {
        font-size: clamp(39px, 13vw, 58px);
      }

      .cw-copy {
        font-size: 16px;
      }

      .cw-hero-note {
        display: none;
      }

      .cw-section {
        padding: 56px 0;
      }

      .cw-section-head {
        display: grid;
        gap: 14px;
      }

      .cw-flow,
      .cw-news-card {
        grid-template-columns: 1fr;
      }

      .cw-news-thumb {
        max-width: 160px;
      }

      .cw-footer-inner {
        display: grid;
      }
    }

.cw-article-hero {
  min-height: 430px;
}

.cw-article-hero .cw-hero-inner {
  min-height: 430px;
  grid-template-columns: minmax(0, 760px) 1fr;
  padding-bottom: 58px;
}

.cw-detail-wrap {
  width: min(var(--cw-max), calc(100% - 44px));
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 26px;
  align-items: start;
}

.cw-detail {
  padding: 34px;
  border: 1px solid var(--cw-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--cw-shadow);
}

.cw-detail > h1 {
  color: var(--cw-charcoal);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.06;
  font-weight: 950;
  text-transform: uppercase;
}

.cw-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 28px;
  color: #7a6260;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.cw-meta span {
  padding: 7px 10px;
  border-radius: 8px;
  background: #fff5e0;
}

.cw-detail-body {
  color: var(--cw-ink);
  font-size: 17px;
}

.cw-detail-body p {
  margin: 0 0 18px;
  font-size: 17px;
}

.cw-detail-body h2,
.cw-detail-body h3 {
  margin: 34px 0 12px;
  color: var(--cw-charcoal);
  line-height: 1.18;
  font-weight: 950;
}

.cw-detail-body h2 { font-size: 28px; }
.cw-detail-body h3 { font-size: 24px; }

.cw-detail-body strong { color: var(--cw-red-deep); }

.cw-feature-image {
  margin: 28px 0;
  border-radius: 8px;
  overflow: hidden;
  background: #170305;
  box-shadow: var(--cw-shadow);
}

.cw-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center;
}

.cw-prev-next {
  display: grid;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cw-prev-next li {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff5e0;
  color: var(--cw-charcoal);
  font-weight: 800;
}

.cw-updated {
  margin-top: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--cw-red);
  border-radius: 0 8px 8px 0;
  background: #fff5e0;
  color: #3b2411;
  font-weight: 900;
}

@media (max-width: 1060px) {
  .cw-detail-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .cw-article-hero,
  .cw-article-hero .cw-hero-inner {
    min-height: 520px;
  }

  .cw-detail-wrap {
    width: min(100% - 28px, var(--cw-max));
    padding: 48px 0;
  }

  .cw-detail {
    padding: 24px 18px;
  }

  .cw-feature-image img {
    aspect-ratio: 16 / 9;
  }
}
