/* reference stylesheet 1 */
:root {
      --green-950: #05281f;
      --green-900: #07382b;
      --green-800: #09513c;
      --green-700: #0a7650;
      --green-600: #0ba968;
      --green-500: #12c87a;
      --mint-100: #e8fff3;
      --mint-50: #f5fff9;
      --red-600: #df1f2d;
      --red-700: #bd1420;
      --gold-500: #f3bf42;
      --ink: #10251d;
      --muted: #607069;
      --line: #dce8e1;
      --paper: #ffffff;
      --soft: #f3f8f5;
      --shadow: 0 18px 46px rgba(3, 36, 25, .13);
      font-family: Arial, Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }

    html,
    body {
      overflow-x: hidden;
    }

    body {
      margin: 0;
      background: var(--soft);
      color: var(--ink);
      font-size: 16px;
      line-height: 1.58;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .topline {
      background: var(--green-950);
      color: #d8fff0;
      border-bottom: 1px solid rgba(255,255,255,.12);
      font-size: 13px;
    }

    .container {
      width: min(1160px, calc(100% - 36px));
      margin: 0 auto;
    }

    .topline .container {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .topline strong { color: #fff; }

    .header {
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid var(--line);
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(12px);
    }

    .header .container {
      height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--green-700);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .logo-mark {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      color: #fff;
      background:
        radial-gradient(circle at 26% 23%, rgba(255,255,255,.9), transparent 22%),
        linear-gradient(135deg, var(--green-500), var(--green-800));
      border-radius: 14px 6px 14px 6px;
      box-shadow: 0 12px 22px rgba(11, 169, 104, .28);
      font-size: 22px;
    }

    .logo-text {
      font-size: 36px;
      line-height: 1;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      color: #1c342b;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .nav a {
      padding: 24px 0 20px;
      border-bottom: 3px solid transparent;
    }

    .nav a:first-child {
      color: var(--green-700);
      border-color: var(--green-700);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      border: 2px solid transparent;
      font-weight: 900;
      font-size: 14px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--red-600), var(--red-700));
      color: #fff;
      box-shadow: 0 12px 24px rgba(223,31,45,.22);
    }

    .btn-ghost {
      background: #fff;
      border-color: var(--green-600);
      color: var(--green-700);
    }

    .hero {
      position: relative;
      min-height: 560px;
      display: grid;
      align-items: stretch;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(3,34,26,.96) 0%, rgba(4,58,41,.88) 40%, rgba(4,90,54,.48) 100%),
        url('/assets/ak44-refasset-001.png') center / cover no-repeat;
      color: #fff;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 124px;
      background: linear-gradient(180deg, transparent, rgba(243,248,245,.98));
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 38px;
      align-items: center;
      padding: 54px 0 96px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #bfffe1;
      font-weight: 800;
      text-transform: uppercase;
      font-size: 13px;
    }

    .eyebrow::before {
      content: "";
      width: 36px;
      height: 3px;
      border-radius: 10px;
      background: var(--gold-500);
    }

    h1 {
      margin: 15px 0 14px;
      max-width: 760px;
      font-size: 62px;
      line-height: 1.04;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 670px;
      margin: 0;
      color: #ecfff6;
      font-size: 18px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .hero-cta .btn {
      min-height: 50px;
      padding-inline: 24px;
      font-size: 15px;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
      max-width: 700px;
    }

    .hero-fact {
      border: 1px solid rgba(255,255,255,.22);
      background: rgba(255,255,255,.11);
      border-radius: 8px;
      padding: 15px;
      backdrop-filter: blur(8px);
    }

    .hero-fact b {
      display: block;
      color: #fff;
      font-size: 22px;
      line-height: 1;
    }

    .hero-fact span {
      display: block;
      margin-top: 6px;
      color: #c8f7e3;
      font-size: 13px;
      font-weight: 700;
    }

    .hero-panel {
      border: 1px solid rgba(255,255,255,.28);
      background: rgba(255,255,255,.12);
      border-radius: 8px;
      padding: 18px;
      box-shadow: 0 24px 58px rgba(0,0,0,.28);
      backdrop-filter: blur(10px);
    }

    .panel-title {
      margin: 0 0 12px;
      font-size: 18px;
      font-weight: 900;
      color: #fff;
    }

    .mini-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mini-list li {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 10px;
      border-radius: 8px;
      background: rgba(255,255,255,.12);
    }

    .mini-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: linear-gradient(135deg, #f4cf66, #fff3bf);
      color: var(--green-900);
      font-weight: 900;
    }

    .mini-list strong {
      display: block;
      font-size: 14px;
    }

    .mini-list small {
      display: block;
      color: #cff7e3;
      font-size: 12px;
    }

    .mini-list em {
      color: var(--gold-500);
      font-style: normal;
      font-weight: 900;
    }

    .quick-band {
      position: relative;
      z-index: 2;
      margin-top: -58px;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      background: var(--paper);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      border-radius: 8px;
      padding: 14px;
    }

    .quick-item {
      padding: 18px;
      border-radius: 8px;
      background: linear-gradient(180deg, var(--mint-50), #fff);
      border: 1px solid #d9efe4;
    }

    .quick-item b {
      display: block;
      color: var(--green-800);
      font-size: 18px;
    }

    .quick-item span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    section {
      padding: 68px 0;
    }

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

    .section-head h2,
    .content h2 {
      margin: 0;
      color: var(--green-900);
      font-size: 34px;
      line-height: 1.18;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 650px;
    }

    .section-link {
      color: var(--green-700);
      font-weight: 900;
      white-space: nowrap;
    }

    .intro {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 28px;
      align-items: start;
    }

    .content {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 12px 32px rgba(10, 86, 62, .07);
    }

    .content p {
      margin: 14px 0 0;
      color: #2c4238;
    }

    .content-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .content-list li {
      padding-left: 28px;
      position: relative;
      color: #20382f;
      font-weight: 700;
    }

    .content-list li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green-600);
      font-weight: 900;
    }

    .stat-board {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .stat-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 22px;
      min-height: 146px;
      box-shadow: 0 12px 32px rgba(10, 86, 62, .07);
    }

    .stat-card b {
      display: block;
      color: var(--green-700);
      font-size: 32px;
      line-height: 1;
    }

    .stat-card span {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-weight: 700;
    }

    .games {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

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

    .game-card {
      overflow: hidden;
      border-radius: 8px;
      background: var(--green-950);
      color: #fff;
      min-height: 254px;
      position: relative;
      box-shadow: 0 16px 34px rgba(5, 40, 31, .18);
    }

    .game-card img {
      width: 100%;
      height: 154px;
      object-fit: cover;
      filter: saturate(1.05);
    }

    .game-card .game-body {
      padding: 15px;
      background: linear-gradient(180deg, rgba(5,40,31,.94), var(--green-950));
    }

    .tag {
      display: inline-flex;
      min-height: 24px;
      align-items: center;
      padding: 0 10px;
      border-radius: 999px;
      background: var(--gold-500);
      color: #251706;
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .game-card h3,
    .news-card h3,
    .promo-card h3 {
      margin: 10px 0 6px;
      font-size: 19px;
      line-height: 1.25;
      letter-spacing: 0;
    }

    .game-card p,
    .news-card p,
    .promo-card p {
      margin: 0;
      color: #d5e8df;
      font-size: 13px;
    }

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

    .promo-card {
      border-radius: 8px;
      padding: 24px;
      background: linear-gradient(135deg, #fff, var(--mint-50));
      border: 1px solid var(--line);
      min-height: 198px;
      box-shadow: 0 12px 30px rgba(10, 86, 62, .08);
    }

    .promo-card .tag { background: var(--green-700); color: #fff; }
    .promo-card h3 { color: var(--green-900); }
    .promo-card p { color: var(--muted); }

    .article-area {
      background:
        linear-gradient(180deg, rgba(232,255,243,.76), rgba(255,255,255,.9)),
        var(--mint-50);
    }

    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .news-card {
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 30px rgba(10, 86, 62, .08);
    }

    .news-image {
      position: relative;
      min-height: 170px;
    }

    .news-image img {
      width: 100%;
      height: 190px;
      object-fit: cover;
    }

    .date {
      position: absolute;
      left: 14px;
      top: 14px;
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      background: #fff;
      color: var(--green-900);
      border-radius: 8px;
      border: 1px solid var(--line);
      font-weight: 900;
      line-height: 1.05;
      box-shadow: 0 10px 24px rgba(0,0,0,.12);
      text-align: center;
    }

    .date small {
      display: block;
      color: var(--red-600);
      font-size: 12px;
    }

    .news-body {
      padding: 18px;
    }

    .news-card h3 {
      color: var(--green-900);
      margin-top: 12px;
    }

    .news-card p {
      color: var(--muted);
      font-size: 14px;
    }

    .read-more {
      display: inline-flex;
      margin-top: 14px;
      color: var(--green-700);
      font-size: 14px;
      font-weight: 900;
    }

    .guide {
      background: #fff;
    }

    .guide-grid {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
      gap: 26px;
      align-items: start;
    }

    .guide-table {
      display: grid;
      gap: 12px;
    }

    .guide-row {
      display: grid;
      grid-template-columns: 132px 1fr;
      gap: 14px;
      align-items: start;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--mint-50);
    }

    .guide-row b {
      color: var(--green-800);
      text-transform: uppercase;
      font-size: 13px;
    }

    .guide-row span {
      color: #354b42;
      font-size: 14px;
    }

    .provider-band {
      padding: 50px 0 58px;
      background: var(--green-950);
      color: #fff;
    }

    .provider-band h2 {
      margin: 0 0 22px;
      font-size: 30px;
      letter-spacing: 0;
    }

    .logos {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
    }

    .logo-pill {
      min-height: 58px;
      display: grid;
      place-items: center;
      padding: 8px 10px;
      border-radius: 8px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      color: #eafff4;
      font-weight: 900;
      text-align: center;
    }

    .footer {
      background: #fff;
      border-top: 1px solid var(--line);
      padding: 48px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr 1fr;
      gap: 34px;
    }

    .footer h3 {
      margin: 0 0 14px;
      color: var(--green-900);
      font-size: 17px;
      text-transform: uppercase;
    }

    .footer p,
    .footer li {
      color: var(--muted);
      font-size: 14px;
    }

    .footer ul {
      display: grid;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .copyright {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: #789087;
      font-size: 13px;
    }

    @media (max-width: 980px) {
      .header .container { height: auto; padding: 14px 0; flex-wrap: wrap; }
      .nav { order: 3; width: 100%; justify-content: flex-start; overflow-x: auto; gap: 18px; }
      .nav a { padding: 8px 0 10px; }
      .hero .container { grid-template-columns: 1fr; padding-top: 46px; }
      .hero-panel { max-width: 520px; }
      h1 { font-size: 48px; }
      .quick-grid,
      .game-grid,
      .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .intro,
      .guide-grid,
      .footer-grid { grid-template-columns: 1fr; }
      .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .logos { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    @media (max-width: 640px) {
      .container { width: min(1160px, calc(100% - 24px)); }
      .topline .container { align-items: flex-start; flex-direction: column; padding: 9px 0; gap: 2px; }
      .logo-text { font-size: 30px; }
      .logo-mark { width: 42px; height: 42px; }
      .actions { width: 100%; display: grid; grid-template-columns: 1fr; }
      .actions .btn { min-width: 0; width: 100%; padding-inline: 8px; font-size: 13px; }
      .nav {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow-x: visible;
        gap: 4px 10px;
      }
      .nav a {
        min-width: 0;
        padding: 6px 0 8px;
        font-size: 11px;
        line-height: 1.25;
      }
      .hero { min-height: 650px; }
      .hero .container { padding: 36px 0 92px; gap: 20px; }
      h1 { font-size: 30px; line-height: 1.12; overflow-wrap: break-word; }
      .hero-copy { font-size: 16px; }
      .hero-cta { display: grid; grid-template-columns: 1fr; }
      .hero-cta .btn { width: 100%; padding-inline: 12px; }
      .mini-list li { grid-template-columns: 42px 1fr; }
      .mini-list em { grid-column: 2; }
      .hero-facts,
      .quick-grid,
      .stat-board,
      .game-grid,
      .promo-grid,
      .news-grid,
      .logos { grid-template-columns: 1fr; }
      .section-head { display: block; }
      .section-head h2,
      .content h2 { font-size: 28px; }
      section { padding: 50px 0; }
      .quick-band { margin-top: -42px; }
      .content { padding: 22px; }
      .guide-row { grid-template-columns: 1fr; }
    }

.article-page {
  background: var(--soft);
}

.article-hero {
  padding: 58px 0 36px;
  background:
    linear-gradient(90deg, rgba(5,40,31,.96), rgba(10,118,80,.82)),
    url('/assets/ak44-refasset-002.png') center / cover no-repeat;
  color: #fff;
}

.article-hero .container {
  display: grid;
  gap: 16px;
}

.article-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.article-hero p {
  max-width: 720px;
  margin: 0;
  color: #e8fff3;
  font-size: 17px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #c8f7e3;
  font-size: 14px;
  font-weight: 700;
}

.article-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  padding: 40px 0 64px;
  align-items: start;
}

.article-shell,
.side-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(10, 86, 62, .08);
}

.article-shell {
  padding: 34px;
}

.article-shell h1 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 38px;
  line-height: 1.16;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.article-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--mint-50);
}

.article-body {
  color: #243c33;
  font-size: 17px;
}

.article-body h2,
.article-body h3 {
  color: var(--green-900);
  line-height: 1.22;
}

.article-body h2 {
  margin: 28px 0 10px;
  font-size: 28px;
}

.article-body h3 {
  margin: 22px 0 8px;
  font-size: 22px;
}

.article-body p,
.article-body li {
  margin: 0 0 14px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 18px 20px;
  padding: 0;
}

.article-body a {
  color: var(--green-700);
  font-weight: 900;
}

.article-callout {
  margin: 24px 0;
  padding: 18px;
  border-left: 4px solid var(--green-600);
  background: var(--mint-50);
  border-radius: 8px;
  color: var(--green-900);
  font-weight: 800;
}

.side-panel {
  padding: 18px;
  position: sticky;
  top: 96px;
}

.side-panel h2 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 22px;
}

.related-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.related-card:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.related-card img {
  width: 94px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
}

.related-card h3 {
  margin: 0 0 4px;
  color: var(--green-900);
  font-size: 15px;
  line-height: 1.25;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.static-note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 8px;
  background: var(--green-950);
  color: #eafff4;
  font-size: 14px;
}

.pagebreak,
.prenext {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.prenext {
  display: grid;
  gap: 10px;
}

.prenext span,
.pagination li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 900px) {
  .article-page-grid {
    grid-template-columns: 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .article-hero {
    padding: 42px 0 26px;
  }

  .article-hero h1,
  .article-shell h1 {
    font-size: 30px;
  }

  .article-shell {
    padding: 22px;
  }

  .related-card {
    grid-template-columns: 80px 1fr;
  }

  .related-card img {
    width: 80px;
    height: 68px;
  }
}

/* Target Bengali content and Dede integration */
:root{--clone-dark:#05281f;--clone-bg2:#0ba968;--clone-accent:#0a7650;--clone-gold:#f3bf42;--clone-blue:#c8f7e3;}
body.true-reference-clone{font-family:Arial,"Kohinoor Bangla","Noto Sans Bengali",sans-serif;letter-spacing:0;}
body.true-reference-clone img[src*="ak44-logo"]{height:auto;object-fit:contain;}
body.true-reference-clone img[src*="ak44-hero"]{height:auto;object-fit:contain;}
.dede-update-zone,.article-detail-zone{padding:34px 0;}
.clone-update-inner,.clone-article-inner{width:min(1180px,calc(100% - 32px));margin:0 auto;}
.clone-update-head{text-align:center;margin-bottom:20px;}
.clone-update-head h2{margin:0;font-size:clamp(26px,3vw,38px);font-weight:900;line-height:1.2;}
.clone-update-head p{max-width:760px;margin:10px auto 0;color:#667085;}
.clone-update-list{display:grid;gap:16px;}
.clone-update-card{display:grid;grid-template-columns:170px minmax(0,1fr);gap:18px;padding:16px;border:1px solid rgba(20,25,40,.12);border-radius:10px;background:#fff;box-shadow:0 14px 34px rgba(20,25,40,.08);}
.clone-update-thumb{min-height:120px;border-radius:8px;background:linear-gradient(135deg,var(--clone-dark),var(--clone-accent));color:#fff;display:flex;align-items:center;justify-content:center;font-size:22px;font-weight:900;text-decoration:none;}
.clone-update-tag{display:inline-flex;margin-bottom:6px;padding:4px 10px;border-radius:999px;background:rgba(0,0,0,.06);color:var(--clone-accent);font-weight:900;font-size:12px;}
.clone-update-body h3{margin:0;font-size:22px;line-height:1.32;}
.clone-update-body p{margin:8px 0;color:#5f6675;}
.clone-update-meta{display:flex;flex-wrap:wrap;gap:12px;color:#8a91a1;font-size:13px;}
.clone-readmore{display:inline-flex;margin-top:10px;color:var(--clone-accent);font-weight:900;text-decoration:none;}
.clone-pagination{display:flex;flex-wrap:wrap;gap:8px;list-style:none;padding:0;margin:22px 0 0;}
.clone-pagination li{list-style:none;}
.clone-pagination a,.clone-pagination span{display:inline-flex;min-width:38px;min-height:36px;align-items:center;justify-content:center;border:1px solid rgba(20,25,40,.14);border-radius:8px;padding:0 12px;background:#fff;color:#1c2433;text-decoration:none;font-weight:800;}
.clone-article-inner{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:22px;align-items:start;}
.clone-article,.clone-article-side{background:#fff;border:1px solid rgba(20,25,40,.12);border-radius:10px;box-shadow:0 14px 34px rgba(20,25,40,.08);padding:24px;}
.clone-crumb{color:#778094;font-size:14px;margin-bottom:12px;}
.clone-article h1{margin:0;font-size:clamp(30px,3vw,46px);line-height:1.2;}
.clone-article-meta{display:flex;gap:12px;flex-wrap:wrap;margin:12px 0 18px;color:#7d8494;font-size:14px;}
.clone-article-summary{padding:14px 16px;border-left:4px solid var(--clone-accent);background:rgba(0,0,0,.04);margin-bottom:20px;color:#505a6c;}
.clone-article-body{font-size:17px;line-height:1.9;color:#252b38;}
.clone-prenext{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:20px;}
.clone-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px;}
.clone-actions a,.clone-article-side a{display:inline-flex;margin:6px 6px 0 0;padding:9px 12px;border-radius:8px;background:var(--clone-accent);color:#fff;text-decoration:none;font-weight:800;}
@media(max-width:780px){.clone-update-card,.clone-article-inner,.clone-prenext{grid-template-columns:1fr;}}
