
  :root {
  --bg-page: #fff8f9;
  --heading: #0f172a;
  --text-main: #1f2937;
  --text-muted: #4b5563;

  --glass-bg: rgba(255,255,255,0.82);
  --glass-border: rgba(255,182,187,0.45);

  --shadow:
    0 30px 80px rgba(31,41,55,0.14),
    0 12px 30px rgba(31,41,55,0.08);

  --radius: 22px;
}

* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.7;
}



/* ==============================
   FEATURED NEWS MEDIA (PREMIUM)
============================== */

.news-media {
  max-width: 1040px;
  margin: 60px auto 20px;
  padding: 0 20px;
}

.news-media img {
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid var(--border-light);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: #fff;
}

/* Soft glow edge */
.news-media img::after {
  content: "";
  position: absolute;
  inset: 0;
}

/* Caption */
.media-caption {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ==============================
   HERO – PREMIUM DEPTH
============================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% -20%;
  height: 120%;
  background: radial-gradient(
    ellipse at bottom,
    rgba(255, 197, 199, 0.35),
    transparent 60%
  );
  pointer-events: none;
}
/* ==============================
   ARTICLE CARD – PREMIUM
============================== */

.blog section {
  position: relative;
  background: var(--bg-card);
  padding: 56px;
  border-radius: 30px;
  border: 1px solid var(--border-light);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Accent strip (editorial signal) */
.blog section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  bottom: 28px;
  width: 5px;
  border-radius: 5px;
  background: linear-gradient(
    180deg,
    var(--primary),
    var(--primary-border)
  );
}
.blog h2 {
  font-size: 2.05rem;
  margin-bottom: 22px;
  color: var(--heading);
  letter-spacing: -0.4px;
  position: relative;
}

/* Underline accent */
.blog h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-top: 10px;
  border-radius: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-border)
  );
}
.blog p {
  font-size: 1.07rem;
  line-height: 1.95;
  color: var(--text-main);
  letter-spacing: 0.01em;
}
/* ==============================
   NEWS VIDEO – BROADCAST FEEL
============================== */

.news-video {
  margin: 36px 0 46px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.news-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}
@media (max-width: 768px) {

  .news-media {
    margin-top: 36px;
  }

  .blog section {
    padding: 34px 26px;
    border-radius: 22px;
  }

  .blog section::before {
    display: none;
  }

  .blog h2 {
    font-size: 1.7rem;
  }
}

.news-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 480px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-soft);
}
@media (max-width: 768px) {
  .news-media img {
    height: 260px;
    border-radius: 18px;
  }
}

.key-points {
  max-width: 920px;
  margin: 40px auto;
  padding: 26px 28px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    var(--primary-soft),
    #ffffff
  );
  border: 1px solid var(--primary-border);
  box-shadow: var(--shadow-soft);
}

.key-points h3 {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 14px;
}

.key-points li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--primary-border)
  );
  z-index: 9999;
}
.blog section:first-of-type p:first-of-type {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--heading);
}
.blog p {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ==============================
   EDITORIAL LIST STYLE
============================== */

.blog ul {
  margin: 24px 0 24px;
  padding-left: 0;
}

.blog li {
  position: relative;
  list-style: none;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 1.03rem;
  line-height: 1.85;
  color: var(--text-main);
}

/* Minimal editorial marker */
.blog li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text-light);
  font-weight: 600;
}

/* ==============================
   KEY POINTS LIST (HIGHLIGHTED)
============================== */

.key-points ul {
  margin-top: 14px;
  padding-left: 0;
  list-style: none;
}

.key-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--heading);
}

/* Solid bullet for importance */
.key-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(
    160deg,
    var(--primary),
    var(--primary-border)
  );
}

/* ==============================
   TOC LIST – CLEAN NAV STYLE
============================== */

.toc ul {
  padding-left: 0;
  margin-top: 14px;
}

.toc li {
  list-style: none;
  margin-bottom: 10px;
}

.toc li a {
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

.toc li a:hover {
  text-decoration: underline;
}

.faq-item ul {
  padding-left: 0;
  margin-top: 12px;
}

.faq-item li {
  padding-left: 18px;
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* ==============================
   VIDEO EMBED – EDITORIAL STYLE
============================== */

.video-embed {
  margin: 50px 0 60px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 980px; /* controlled width */
  margin: 0 auto;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Caption below video */
.video-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .video-wrapper {
    border-radius: 16px;
  }

  .video-caption {
    font-size: 0.85rem;
  }
}

/* ==============================
   EXAM TABLE – PREMIUM STYLE
============================== */

.exam-table-wrapper {
  margin: 45px 0;
  overflow-x: auto;
  border-radius: 22px;
  background: var(--bg-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-light);
}

/* Table Base */
.exam-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px; /* ensures mobile scroll */
}

/* Header */
.exam-table thead th {
  background: linear-gradient(
    160deg,
    var(--primary-soft),
    var(--primary-soft-2)
  );
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--primary-border);
  white-space: nowrap;
}

/* Body Cells */
.exam-table tbody td {
  padding: 15px 18px;
  font-size: 0.95rem;
  color: var(--text-main);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
}

/* Row Hover */
.exam-table tbody tr:hover {
  background: var(--primary-soft);
}

/* Last Row Border Fix */
.exam-table tbody tr:last-child td {
  border-bottom: none;
}

/* First Column Emphasis */
.exam-table tbody td:first-child {
  font-weight: 600;
  color: var(--heading);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .exam-table-wrapper {
    border-radius: 16px;
  }

  .exam-table thead th,
  .exam-table tbody td {
    padding: 14px 16px;
    font-size: 0.9rem;
  }
}
