/* reference stylesheet 1 */
﻿:root {
      --teal: #22c6bd;
      --teal-deep: #087e84;
      --mint: #c7f6ee;
      --mint-2: #e8fffa;
      --ink: #07353a;
      --red: #ff4048;
      --magenta: #a52cff;
      --gold: #ffc928;
      --orange: #ff8a00;
      --blue: #0077ff;
      --white: #ffffff;
      --muted: #5d7a7d;
      --line: rgba(0, 119, 128, .18);
      --shadow: 0 24px 54px rgba(0, 87, 92, .18);
      --radius: 8px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      color: var(--ink);
      font-family: Arial, "Helvetica Neue", sans-serif;
      background:
        radial-gradient(circle at 18% 0%, rgba(255, 201, 40, .3), transparent 24%),
        linear-gradient(180deg, #27c9c0 0%, #b9f2ec 34%, #e9fff9 100%);
    }

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

    .wrap {
      width: min(1320px, calc(100% - 72px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(31, 190, 183, .96);
      border-bottom: 1px solid rgba(255, 255, 255, .24);
      box-shadow: 0 10px 32px rgba(0, 92, 98, .18);
      backdrop-filter: blur(12px);
    }

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

    .brand {
      display: inline-flex;
      flex-direction: column;
      min-width: 178px;
    }

    .brand-logo {
      font-size: 44px;
      line-height: .86;
      font-weight: 1000;
      font-style: italic;
      color: var(--gold);
      text-shadow:
        2px 2px 0 #ff4c00,
        4px 4px 0 #7a2a00,
        0 0 16px rgba(255, 241, 114, .5);
    }

    .brand-logo span { color: var(--red); }

    .brand-sub {
      margin-top: 6px;
      color: #fff8b5;
      font-size: 11px;
      font-weight: 1000;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
    }

    .nav a {
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 12px;
      color: #7b19d8;
      font-size: 15px;
      font-weight: 1000;
      text-transform: uppercase;
      border-bottom: 4px solid transparent;
    }

    .nav a.active,
    .nav a:hover {
      color: #ff2252;
      border-color: #ff2252;
    }

    .auth {
      display: flex;
      gap: 12px;
      white-space: nowrap;
    }

    .auth a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 112px;
      height: 42px;
      padding: 0 18px;
      border-radius: 999px;
      color: #fff;
      font-size: 13px;
      font-weight: 1000;
      text-transform: uppercase;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
    }

    .auth a:first-child {
      color: #07353a;
      background: linear-gradient(180deg, #fff06d, #ff9b00);
      border: 0;
      box-shadow: 0 10px 20px rgba(255, 138, 0, .25);
    }

    .hero {
      position: relative;
      min-height: 680px;
      overflow: hidden;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(5, 55, 62, .96) 0%, rgba(5, 92, 101, .76) 38%, rgba(4, 111, 119, .08) 74%),
        url('/assets/eg333-refasset-001.png') center right / cover no-repeat;
      border-bottom: 6px solid var(--gold);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 124px;
      background: linear-gradient(180deg, rgba(39, 201, 192, 0), #bdf4ee 92%);
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: min(650px, 100%);
      padding: 108px 0 88px;
    }

    .hero h1 {
      margin: 0;
      font-size: 74px;
      line-height: .96;
      font-weight: 1000;
      text-transform: uppercase;
      letter-spacing: 0;
      text-shadow: 0 8px 24px rgba(0, 0, 0, .32);
    }

    .hero h1 strong { color: var(--gold); }

    .hero p {
      width: min(590px, 100%);
      margin: 26px 0 0;
      color: #ebfffb;
      font-size: 20px;
      line-height: 1.68;
      font-weight: 800;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 184px;
      height: 54px;
      padding: 0 24px;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 1000;
      text-transform: uppercase;
      color: #fff;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .3);
    }

    .btn.primary {
      color: #062d32;
      background: linear-gradient(180deg, #fff06d, #ff9400);
      border: 0;
      box-shadow: 0 18px 32px rgba(255, 148, 0, .28);
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 44px;
      width: min(690px, 100%);
    }

    .stat {
      padding: 18px;
      border-radius: var(--radius);
      background: rgba(5, 43, 51, .72);
      border: 1px solid rgba(255, 255, 255, .18);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
    }

    .stat b {
      display: block;
      color: var(--gold);
      font-size: 26px;
      margin-bottom: 7px;
      font-weight: 1000;
    }

    .stat span {
      color: #d9fffb;
      font-size: 13px;
      line-height: 1.45;
      font-weight: 800;
    }

    .intro {
      padding: 58px 0 44px;
    }

    .intro-panel {
      border-radius: var(--radius);
      background: rgba(222, 255, 249, .82);
      border: 1px solid rgba(255, 255, 255, .7);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .intro-top {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 42px;
      align-items: start;
      padding: 42px;
    }

    .section-title {
      margin: 0;
      color: var(--red);
      font-size: 42px;
      line-height: 1.12;
      font-weight: 1000;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .section-title span { color: var(--teal-deep); }

    .lead {
      margin: 20px 0 0;
      color: #4b7779;
      font-size: 18px;
      line-height: 1.8;
      font-weight: 800;
    }

    .safe-box {
      display: grid;
      grid-template-columns: 150px 1fr;
      border-radius: var(--radius);
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(0, 126, 132, .16);
    }

    .safe-box b,
    .safe-box span {
      min-height: 58px;
      display: flex;
      align-items: center;
      padding: 16px;
      border-bottom: 1px solid rgba(0, 126, 132, .12);
      font-size: 14px;
      font-weight: 1000;
    }

    .safe-box b {
      color: #06353b;
      background: linear-gradient(180deg, #ffe76d, #ff9e11);
      text-transform: uppercase;
    }

    .safe-box span {
      color: #386b70;
      background: #f7fffd;
      line-height: 1.45;
    }

    .safe-box b:last-of-type,
    .safe-box span:last-child { border-bottom: 0; }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border-top: 1px solid rgba(0, 126, 132, .16);
      background: rgba(255, 255, 255, .58);
    }

    .category {
      min-height: 172px;
      padding: 28px 22px;
      border-right: 1px solid rgba(0, 126, 132, .14);
    }

    .category:last-child { border-right: 0; }

    .category-icon {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: var(--radius);
      color: #07353a;
      background: linear-gradient(180deg, #fff06d, #ff9700);
      box-shadow: 0 8px 18px rgba(255, 151, 0, .24);
      font-size: 23px;
      font-weight: 1000;
    }

    .category h3 {
      margin: 18px 0 8px;
      color: #07353a;
      font-size: 18px;
      font-weight: 1000;
    }

    .category p {
      margin: 0;
      color: #567a7d;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 800;
    }

    .feature {
      padding: 50px 0 64px;
    }

    .feature-layout {
      display: grid;
      grid-template-columns: 420px minmax(0, 1fr);
      gap: 28px;
      align-items: stretch;
    }

    .promo-board {
      min-height: 374px;
      padding: 38px;
      border-radius: var(--radius);
      color: #fff;
      background:
        linear-gradient(135deg, rgba(255, 64, 72, .95), rgba(128, 31, 156, .84)),
        url('/assets/eg333-refasset-002.png') 58% 70% / cover no-repeat;
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .promo-board h2 {
      margin: 0;
      font-size: 38px;
      line-height: 1.08;
      font-weight: 1000;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .promo-board p {
      margin: 18px 0 28px;
      color: #fff2f4;
      font-size: 16px;
      line-height: 1.75;
      font-weight: 800;
    }

    .bonus-list {
      display: grid;
      gap: 12px;
    }

    .bonus {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 52px;
      padding: 0 18px;
      border-radius: var(--radius);
      background: rgba(7, 53, 58, .52);
      border: 1px solid rgba(255, 255, 255, .18);
      font-weight: 1000;
    }

    .bonus strong { color: var(--gold); }

    .feature-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .feature-card {
      padding: 26px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid rgba(0, 126, 132, .14);
      box-shadow: 0 16px 34px rgba(0, 87, 92, .12);
    }

    .feature-card h3 {
      margin: 0 0 12px;
      color: var(--teal-deep);
      font-size: 24px;
      line-height: 1.18;
      font-weight: 1000;
    }

    .feature-card p {
      margin: 0;
      color: #5b7c7f;
      font-size: 15px;
      line-height: 1.72;
      font-weight: 800;
    }

    .articles {
      padding: 66px 0 76px;
      background: linear-gradient(180deg, #dffff7 0%, #baf2eb 100%);
      border-top: 1px solid rgba(0, 126, 132, .16);
      border-bottom: 1px solid rgba(0, 126, 132, .16);
    }

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

    .section-head p {
      margin: 12px 0 0;
      color: #5c7f81;
      font-size: 16px;
      line-height: 1.7;
      font-weight: 800;
    }

    .view-all {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 126px;
      height: 44px;
      border-radius: var(--radius);
      color: #07353a;
      background: linear-gradient(180deg, #fff06d, #ff9700);
      font-weight: 1000;
      white-space: nowrap;
    }

    .article-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .article-card {
      display: block;
      min-height: 390px;
      overflow: hidden;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid rgba(0, 126, 132, .18);
      box-shadow: 0 18px 36px rgba(0, 87, 92, .14);
    }

    .thumb {
      position: relative;
      height: 166px;
      background:
        linear-gradient(160deg, rgba(255, 64, 72, .36), rgba(0, 126, 132, .28)),
        url('/assets/eg333-refasset-003.png') center / cover no-repeat;
    }

    .article-card:nth-child(2) .thumb { background-position: 60% 42%; }
    .article-card:nth-child(3) .thumb { background-position: 78% 60%; }
    .article-card:nth-child(4) .thumb { background-position: 40% 70%; }

    .date {
      position: absolute;
      top: 14px;
      left: 14px;
      width: 54px;
      height: 64px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      color: #07353a;
      background: linear-gradient(180deg, #fff176, #ff9a00);
      border: 2px solid #fff;
      font-size: 20px;
      line-height: 1;
      font-weight: 1000;
      box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
    }

    .date small {
      margin-top: 4px;
      font-size: 12px;
      font-weight: 1000;
    }

    .article-body {
      padding: 22px;
    }

    .label {
      display: block;
      margin-bottom: 10px;
      color: var(--red);
      font-size: 12px;
      font-weight: 1000;
      text-transform: uppercase;
    }

    .article-body h3 {
      margin: 0;
      color: #07353a;
      font-size: 21px;
      line-height: 1.25;
      font-weight: 1000;
    }

    .article-body p {
      margin: 14px 0 18px;
      color: #5d7d80;
      font-size: 14px;
      line-height: 1.66;
      font-weight: 800;
    }

    .read-more {
      color: var(--teal-deep);
      font-size: 14px;
      font-weight: 1000;
    }

    .about {
      padding: 70px 0;
      background:
        radial-gradient(circle at 88% 25%, rgba(255, 201, 40, .24), transparent 25%),
        #ecfffb;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 40px;
      align-items: start;
    }

    .about h2 {
      margin: 0;
      color: var(--teal-deep);
      font-size: 42px;
      line-height: 1.12;
      font-weight: 1000;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .about p {
      margin: 18px 0 0;
      color: #5a7b7e;
      font-size: 17px;
      line-height: 1.82;
      font-weight: 800;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .trust {
      min-height: 132px;
      padding: 24px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid rgba(0, 126, 132, .14);
      box-shadow: 0 16px 34px rgba(0, 87, 92, .1);
    }

    .trust b {
      display: block;
      color: var(--red);
      font-size: 24px;
      margin-bottom: 8px;
      font-weight: 1000;
    }

    .trust span {
      color: #5f7e80;
      font-size: 15px;
      line-height: 1.65;
      font-weight: 800;
    }

    .footer {
      color: #e9fffb;
      background: #07353a;
      border-top: 6px solid var(--red);
      padding: 48px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .8fr 1fr;
      gap: 40px;
    }

    .footer p {
      margin: 16px 0 0;
      color: #bce7e4;
      font-size: 14px;
      line-height: 1.75;
      font-weight: 800;
    }

    .footer h3 {
      margin: 0 0 18px;
      color: var(--red);
      font-size: 18px;
      text-transform: uppercase;
      font-weight: 1000;
    }

    .footer a {
      display: block;
      margin: 0 0 10px;
      color: #eafffb;
      font-size: 14px;
      font-weight: 800;
    }

    .footer ul {
      margin: 0;
      padding-left: 18px;
      color: #eafffb;
      font-weight: 800;
      line-height: 1.8;
      font-size: 14px;
    }

    .copyright {
      margin-top: 40px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .13);
      color: #9ed2cf;
      font-size: 13px;
      font-weight: 800;
    }

    @media (max-width: 1120px) {
      .top-inner { flex-wrap: wrap; padding: 14px 0; }
      .brand { min-width: 140px; }
      .nav { order: 3; width: 100%; flex-wrap: wrap; }
      .hero h1 { font-size: 58px; }
      .intro-top,
      .feature-layout,
      .about-grid { grid-template-columns: 1fr; }
      .article-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 680px) {
      .wrap { width: min(100% - 32px, 1320px); }
      .top-inner { gap: 14px; }
      .brand-logo { font-size: 32px; }
      .auth a { min-width: 92px; height: 36px; font-size: 11px; }
      .nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
      .nav a { flex: 0 0 auto; font-size: 12px; height: 36px; padding: 0 8px; }
      .hero { min-height: auto; background-position: 63% center; }
      .hero-content { padding: 58px 0 48px; }
      .hero h1 { font-size: 41px; }
      .hero p { font-size: 15px; line-height: 1.58; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .btn { width: 100%; height: 50px; }
      .hero-stats { grid-template-columns: 1fr; margin-top: 28px; }
      .intro,
      .feature,
      .articles,
      .about { padding: 42px 0; }
      .intro-top { padding: 26px 18px; }
      .section-title,
      .promo-board h2,
      .about h2 { font-size: 30px; }
      .safe-box { grid-template-columns: 1fr; }
      .category-grid,
      .feature-cards,
      .article-grid,
      .trust-grid,
      .footer-grid { grid-template-columns: 1fr; }
      .category { border-right: 0; border-bottom: 1px solid rgba(0, 126, 132, .12); }
      .section-head { display: block; }
      .view-all { width: 100%; margin-top: 18px; }
      .promo-board { min-height: auto; padding: 28px; }
    }
.article-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 55, 62, .96) 0%, rgba(5, 92, 101, .78) 42%, rgba(4, 111, 119, .12) 100%),
    url('/assets/eg333-refasset-004.png') center right / cover no-repeat;
  border-bottom: 6px solid var(--gold);
  overflow: hidden;
}

.article-hero .wrap {
  position: relative;
  z-index: 1;
  padding: 74px 0;
}

.article-hero h1 {
  width: min(820px, 100%);
  margin: 0;
  color: #fff;
  font-size: 60px;
  line-height: 1.05;
  font-weight: 1000;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .32);
}

.article-hero p {
  width: min(680px, 100%);
  margin: 22px 0 0;
  color: #ebfffb;
  font-size: 19px;
  line-height: 1.65;
  font-weight: 800;
}

.article-hero .hero-actions { margin-top: 30px; }

.detail-section {
  padding: 70px 0 88px;
  background: linear-gradient(180deg, #e8fffa 0%, #c7f6ee 100%);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}

.article-main,
.side-panel {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(0, 126, 132, .16);
  box-shadow: 0 22px 48px rgba(0, 87, 92, .14);
}

.article-main { padding: 48px; }

.article-main h1 {
  margin: 0;
  color: var(--teal-deep);
  font-size: 44px;
  line-height: 1.12;
  font-weight: 1000;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 34px;
}

.meta-row span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 201, 40, .22);
  color: #07353a;
  border: 1px solid rgba(255, 151, 0, .26);
  font-size: 13px;
  font-weight: 1000;
}

.article-main h2 {
  margin: 38px 0 14px;
  color: var(--red);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 1000;
}

.article-main p,
.article-main li {
  color: #4f7376;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 800;
}

.article-main ul { padding-left: 22px; }

.article-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}

.article-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px;
  border-radius: var(--radius);
  background: #f7fffd;
  border: 1px solid rgba(0, 126, 132, .16);
  color: var(--teal-deep);
  font-weight: 1000;
}

.side-panel { padding: 28px; }

.side-panel h3 {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 1000;
}

.side-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 126, 132, .14);
  color: #07353a;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 900;
}

.side-panel a:last-child { border-bottom: 0; }

.responsible-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  min-height: 50px;
  border-radius: var(--radius);
  color: #07353a;
  background: linear-gradient(180deg, #fff06d, #ff9700);
  font-weight: 1000;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.pagination li,
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid rgba(0, 126, 132, .16);
  color: var(--teal-deep);
  font-weight: 900;
}

@media (max-width: 980px) {
  .detail-layout { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 42px; }
  .article-main { padding: 30px; }
  .article-main h1 { font-size: 34px; }
}

@media (max-width: 560px) {
  .article-hero { min-height: auto; background-position: 64% center; }
  .article-hero .wrap { padding: 46px 0; }
  .article-hero h1 { font-size: 34px; }
  .article-main { padding: 24px 18px; }
  .article-main h1 { font-size: 28px; }
  .article-main h2 { font-size: 24px; }
  .article-main p,
  .article-main li { font-size: 15px; }
  .article-nav { grid-template-columns: 1fr; }
}

/* Target Bengali content and Dede integration */
:root{--clone-dark:#07353a;--clone-bg2:#ff2252;--clone-accent:#ff9700;--clone-gold:#fff06d;--clone-blue:#c7f6ee;}
body.true-reference-clone{font-family:Arial,"Kohinoor Bangla","Noto Sans Bengali",sans-serif;letter-spacing:0;}
body.true-reference-clone img[src*="eg333-logo"]{height:auto;object-fit:contain;}
body.true-reference-clone img[src*="eg333-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;}}
