﻿:root {
      --p-black: #101010;
      --p-ink: #24272d;
      --p-red: #e4322e;
      --p-red-deep: #8f1115;
      --p-orange: #ff8a1d;
      --p-gold: #f7c647;
      --p-teal: #22b8c8;
      --p-paper: #ffffff;
      --p-soft: #f7f1e8;
      --p-muted: #65717e;
      --p-line: rgba(36, 39, 45, .13);
      --p-max: 1140px;
      --p-shadow: 0 18px 48px rgba(30, 22, 14, .16);
      font-family: Arial, "Helvetica Neue", sans-serif;
    }

    * { box-sizing: border-box; }

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

    body {
      min-width: 320px;
      color: var(--p-ink);
      background: var(--p-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(--p-muted); }

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

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

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

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

    .p-mark {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #241204;
      background:
        linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,0)),
        linear-gradient(135deg, #ffe071 0%, #ff8a1d 47%, #22b8c8 100%);
      border: 2px solid rgba(247, 198, 71, .78);
      box-shadow: 0 14px 28px rgba(0,0,0,.34);
      font-size: 19px;
      font-weight: 950;
    }

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

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

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

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

    .p-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: #365f8d;
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      box-shadow: 0 10px 22px rgba(0,0,0,.2);
    }

    .p-btn.gold {
      border-color: transparent;
      color: #2a1403;
      background: linear-gradient(180deg, #ffe98e, var(--p-gold) 54%, var(--p-orange));
      box-shadow: 0 14px 28px rgba(247, 198, 71, .28);
    }

    .p-nav-band {
      color: #fff;
      background: linear-gradient(90deg, var(--p-red), #ff6d1a);
      box-shadow: 0 10px 24px rgba(143, 17, 21, .18);
    }

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

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

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

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

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

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

    .p-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(7,5,4,.97) 0%, rgba(7,5,4,.86) 34%, rgba(7,5,4,.34) 68%, rgba(7,5,4,.1) 100%);
    }

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

    .p-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;
    }

    .p-title {
      max-width: 660px;
      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,.48);
    }

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

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

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

    .p-hero-note {
      width: min(100%, 430px);
      align-self: end;
      justify-self: end;
      margin-bottom: 20px;
      padding: 22px;
      border: 1px solid rgba(247, 198, 71, .4);
      border-radius: 8px;
      background: rgba(16, 16, 16, .72);
      box-shadow: 0 22px 70px rgba(0,0,0,.35);
      backdrop-filter: blur(12px);
    }

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

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

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

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

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

    .p-main {
      background: linear-gradient(180deg, #fff 0, #fff 58%, var(--p-soft) 100%);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .p-side-head {
      padding: 22px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(247,198,71,.24), transparent 45%),
        linear-gradient(135deg, var(--p-red-deep), #ff681c);
    }

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

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

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

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

    .p-side-list a::after,
    .p-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);
    }

    .p-feature-band {
      color: #fff;
      background:
        radial-gradient(circle at 86% 10%, rgba(34,184,200,.18), transparent 26%),
        radial-gradient(circle at 14% 8%, rgba(247,198,71,.18), transparent 24%),
        linear-gradient(180deg, #1b0703, #090606);
    }

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

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

    .p-flow-card {
      min-height: 238px;
      padding: 24px;
      border: 1px solid rgba(247,198,71,.22);
      border-radius: 8px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03)),
        #170908;
      box-shadow: 0 18px 44px rgba(0,0,0,.2);
    }

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

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

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

    .p-news { background: var(--p-soft); }

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

    .p-news-title {
      position: sticky;
      top: 22px;
      padding: 28px;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(135deg, rgba(247,198,71,.22), transparent 50%),
        linear-gradient(135deg, var(--p-red-deep), #160909);
      box-shadow: var(--p-shadow);
    }

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

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

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

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

    .p-news-thumb {
      aspect-ratio: 1.28;
      border-radius: 8px;
      background:
        radial-gradient(circle at 72% 24%, rgba(247,198,71,.94), transparent 24%),
        linear-gradient(135deg, var(--p-red-deep), var(--p-orange) 52%, var(--p-teal));
    }

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

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

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

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

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

    .p-footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(247,198,71,.22);
      padding-top: 24px;
      font-size: 14px;
    }

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

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

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

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

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

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

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

      .p-mark {
        width: 48px;
        height: 48px;
        font-size: 16px;
      }

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

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

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

      .p-nav {
        min-height: 58px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 18px;
        padding: 10px 0;
        overflow-x: visible;
        white-space: normal;
      }

      .p-nav a {
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 12px;
      }

      .p-nav a.is-active::after {
        bottom: 2px;
      }

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

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

      .p-hero::before {
        background:
          linear-gradient(180deg, rgba(7,5,4,.9) 0%, rgba(7,5,4,.72) 42%, rgba(7,5,4,.96) 80%, #160704 100%);
      }

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

      .p-title { font-size: clamp(39px, 13vw, 58px); }
      .p-copy { font-size: 16px; }
      .p-hero-note { display: none; }
      .p-section { padding: 56px 0; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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