/* ====== Base / Theme ====== */
:root {
  --bg: #0f1e2f;
  --panel: #172b44;
  --panel-2: #1a304c;
  --text: #e6eef7;
  --muted: #b6c3d4;
  --accent: #3aa1ff;
  --accent-2: #0b6bd6;
  --success: #35d2a1;
  --border: rgba(255, 255, 255, .08);
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

:root {
  --container-max: 1100px;
}

@media (min-width: 1200px) {
  :root {
    --container-max: 980px;
  }
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.45;
}

a {
  color: var(--accent);
  text-decoration: none
}

a:hover {
  color: var(--accent-2);
  text-decoration: underline
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1100px, 100% - 32px);
  margin-inline: auto
}

/* ====== Header ====== */
.header {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text)
}

.brand__icon {
  width: 268px;
  height: auto
}

.brand__wordmark {
  font-weight: 700;
  letter-spacing: .3px
}

.header__right {
  display: flex;
  align-items: center;
  gap: 14px
}

.breaking--top {
  display: flex;
  align-items: center;
  gap: 8px
}

.breaking__text {
  color: #f1f5fb;
  font-weight: 600
}

.breaking__dot {
  width: 12px;
  height: 12px;
  background: #f44336;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(244, 67, 54, .18)
}

.nav__btn {
  width: 44px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.nav__btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px
}

.nav__list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav__list a {
  color: var(--text);
  opacity: .9
}

.nav__list a:hover {
  opacity: 1
}

@media (max-width: 880px) {
  .nav__list {
    display: none;
    position: absolute;
    inset: auto 0 0 0;
    background: var(--panel);
    padding: 16px;
    border-top: 1px solid var(--border)
  }

  .nav__list.show {
    display: flex;
    flex-direction: column
  }
}

/* ====== Breadcrumbs ====== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe0f7;
  opacity: .95;
  padding: 12px 0
}

.breadcrumbs a {
  color: #cfe0f7
}

.breadcrumbs svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #98b5d6;
  stroke-width: 3
}

.home-ico {
  width: 22px;
  height: 22px;
  opacity: .9
}

/* ====== Main / Hero ====== */
.main {
  padding: 6px 0 24px
}

.label {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .08em;
  color: #e9f3ff;
  background: #184877;
  border: 1px solid rgba(255, 255, 255, .12);
  padding: 5px 10px;
  border-radius: 6px;
  margin-bottom: 12px
}

.title {
  margin: 0 0 6px 0
}

.title--hero {
  font-size: clamp(1.6rem, 1.2rem + 2.6vw, 2.6rem);
  font-weight: 750
}

.meta {
  color: var(--muted);
  margin: 0 0 12px 0;
  font-style: italic
}

.player {
  position: relative;
  background: #0b1624;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.player img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover
}

.player__duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: .95rem;
}

.player__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .00), rgba(0, 0, 0, .25));
  border: 0;
  cursor: pointer
}

.play__ring {
  fill: rgba(13, 51, 89, .85);
  stroke: #a6c8ff;
  stroke-width: 2
}

.play__tri {
  fill: #eaf2ff
}

.sourcebar {
  padding: 12px 0 6px;
  color: #cbd9ec;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 12px 0;
  margin: 0 0 6px 0
}

.tags a {
  display: inline-block;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #d4e6ff;
  background: rgba(255, 255, 255, .03)
}

.share--icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 0 8px
}

.share__round {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #d8e6f6
}

.share__round img {
  width: 46px;
  height: 46px;
  padding: 10px;
  border-radius: 50%;
  background: #25456b;
  border: 1px solid var(--border)
}

.homebtn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #3c4b61;
  color: #f1f5fb;
  text-decoration: none
}

.homebtn img {
  width: 20px;
  height: 20px
}

/* ====== Footer ====== */
.footer {
  margin-top: 18px;
  background: #0e1a2d;
  border-top: 1px solid var(--border)
}

.footer .container {
  padding: 18px 0
}

.ft-acc {
  border-bottom: 1px solid var(--border)
}

.ft-acc>summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 4px;
  font-weight: 700;
  color: #d8e6f6;
  font-size: 1.25rem
}

.ft-acc>summary::-webkit-details-marker {
  display: none
}

.ft-links {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0 4px;
  color: #b8c9dd;
  display: grid;
  gap: 12px;
  font-size: 1.1rem
}

.ft-links--lg {
  padding-left: 16px
}

.ft-links a {
  color: #cfe0f7
}

.ard {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  padding: 12px 4px
}

.ard img {
  height: 34px
}

.copyright {
  margin: 0;
  font-size: 1rem;
  color: #9fb2c9;
  opacity: .85;
  padding: 8px 4px
}

/* ====== Utilities ====== */
.site {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto auto 1fr auto
}

/* ===== Theme ===== */
:root {
  --bg: #172238;
  --bg-2: #1c2a44;
  --text: #e6eef7;
  --muted: #b8c9dd;
  --accent: #3aa1ff;
  --border: rgba(255, 255, 255, .12);
  --pulse: #ff6a3d;
  --container: min(1200px, 100% - 32px);
}

.container {
  width: var(--container);
  margin-inline: auto
}

.ts-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg)
}

.ts-header__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

/* Brand */
.ts-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none
}

.ts-brand__icon {
  width: 256px;
  height: auto;
  display: block
}

.ts-brand__wordmark {
  font-weight: 700;
  letter-spacing: .3px
}
.ts-status {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5f9ff;
  background: none;
  border: 0;
  padding: 6px 10px;
  cursor: default;
}

.ts-status__label {
  font-weight: 600
}

.ts-status__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pulse);
  box-shadow: 0 0 0 6px rgba(255, 106, 61, .18);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(.9);
    opacity: .9
  }

  50% {
    transform: scale(1.15);
    opacity: 1
  }
}

/* Burger */
.ts-burger {
  justify-self: end;
  width: 44px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.ts-burger span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px
}

/* Breadcrumbs */
.ts-breadcrumbs {
  background: var(--bg-2);
  border-top: 1px solid var(--border)
}

.ts-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cfe0f7;
  padding: 8px 0;
  font-size: 15px;
}

.ts-breadcrumbs a {
  color: #cfe0f7;
  text-decoration: none
}

.ts-breadcrumbs a:hover {
  text-decoration: underline
}

.ts-home {
  width: 20px;
  height: 20px;
  color: #cfe0f7
}

.ts-sep {
  width: 14px;
  height: 14px;
  color: #98b5d6
}

/* ===== Off-canvas ===== */
.ts-offcanvas {
  position: fixed;
  inset: 0;
  pointer-events: none
}

.ts-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, .55);
  opacity: 0;
  transition: .25s;
  backdrop-filter: saturate(80%) blur(2px);
}

.ts-offcanvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 90%);
  height: 100%;
  background: var(--bg);
  color: var(--text);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.ts-offcanvas[aria-hidden="false"] {
  pointer-events: auto
}

.ts-offcanvas[aria-hidden="false"] .ts-offcanvas__panel {
  transform: none
}

.ts-offcanvas[aria-hidden="false"] .ts-offcanvas__backdrop {
  opacity: 1
}

.ts-offcanvas__close {
  align-self: flex-end;
  font-size: 22px;
  line-height: 1;
  border: 0;
  background: none;
  color: var(--text);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
}

/* Search */
.ts-search {
  position: relative;
  margin-top: 4px
}

.ts-search input {
  width: 100%;
  background: #0f1c2f;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 36px 10px 14px;
  border-radius: 12px;
  outline: none;
}

.ts-search__clear {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 0;
  background: #20314c;
  color: #cfe0f7;
  cursor: pointer;
}

/* Menu list */
.ts-menu {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: grid;
  gap: 4px
}

.ts-menu__item {
  width: 100%;
  text-align: left;
  background: transparent;
  color: #e7f0ff;
  border: 0;
  border-bottom: 1px solid var(--border);
  padding: 14px 6px;
  cursor: pointer;
}

.ts-menu__item:hover {
  background: rgba(255, 255, 255, .03)
}

/* Partners row */
.ts-partners {
  margin-top: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start
}

.ts-partners img {
  height: 64px;
  filter: saturate(.92) contrast(1.05)
}

/* ===== Responsive tweaks ===== */
@media (max-width: 720px) {
  .ts-brand__wordmark {
    display: none
  }
  .ts-breadcrumbs__inner {
    font-size: 14px
  }
}

.ts-offcanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

.ts-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, .55);
  opacity: 0;
  transition: .25s;
  backdrop-filter: saturate(80%) blur(6px);
  -webkit-backdrop-filter: saturate(80%) blur(6px);
  z-index: 0;
}

.ts-offcanvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 90%);
  height: 100%;
  background: var(--bg);
  color: var(--text);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  z-index: 1;
  will-change: transform;
}

.ts-offcanvas[aria-hidden="false"] {
  pointer-events: auto;
}

.ts-offcanvas[aria-hidden="false"] .ts-offcanvas__panel {
  transform: none;
}

.ts-offcanvas[aria-hidden="false"] .ts-offcanvas__backdrop {
  opacity: 1;
}
.container {
  width: 100%;
  max-width: 1200px;
  padding-inline: 12px;
  margin-inline: auto;
}

@media (max-width: 768px) {
  .brand__icon,
  .ts-brand__icon {
    width: 256px;
    height: auto;
  }
  .brand__wordmark,
  .ts-brand__wordmark {
    display: none;
  }
  .ts-status {
    display: none;
  }
  .nav__btn,
  .ts-burger {
    width: 40px;
    height: 34px;
    border-radius: 10px;
  }

  .nav__btn span,
  .ts-burger span {
    width: 22px;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .title--hero {
    font-size: clamp(1.25rem, 3.8vw, 1.6rem);
    line-height: 1.25;
  }

  .meta {
    font-size: 0.95rem;
  }

  .label {
    padding: 4px 8px;
    font-size: .72rem;
    border-radius: 5px;
  }

  .player {
    border-radius: 12px;
  }

  .player__duration {
    font-size: .9rem;
  }

  .share--icons {
    gap: 8px;
  }

  .share__round img {
    width: 40px;
    height: 40px;
    padding: 9px;
  }
}

.ts-breadcrumbs__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ts-breadcrumbs__inner span[aria-current="page"] {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .ts-breadcrumbs__inner svg {
    display: none;
  }

  .ts-breadcrumbs__inner a:not(:first-of-type) {
    display: none;
  }

  .ts-breadcrumbs__inner a:first-of-type::after {
    content: " … ";
    color: #cfe0f7;
    margin: 0 6px;
  }
}

.ts-offcanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
}

.ts-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 25, .55);
  backdrop-filter: saturate(80%) blur(6px);
  -webkit-backdrop-filter: saturate(80%) blur(6px);
  opacity: 0;
  transition: opacity .25s;
  z-index: 0;
}

.ts-offcanvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(420px, 88%);
  background: var(--bg);
  color: var(--text);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform .28s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.ts-offcanvas[aria-hidden="false"] {
  pointer-events: auto;
}

.ts-offcanvas[aria-hidden="false"] .ts-offcanvas__panel {
  transform: none;
}

.ts-offcanvas[aria-hidden="false"] .ts-offcanvas__backdrop {
  opacity: 1;
}

@media (max-width: 768px) {
  .ts-partners img {
    height: 34px;
  }
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
}

.icon--ard-footer {
  width: 140px;
  height: auto;
}

.icon--ard-footer path {
  fill: #fff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(180deg, rgb(4, 0, 241), rgb(25, 0, 255));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  will-change: transform;
}

.cta-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.cta-btn:active {
  transform: translateY(0);
}

.cta-float {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  pointer-events: none;
  padding: 10px clamp(12px, 4vw, 24px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: rgba(15, 30, 50, .55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease;
}

.cta-float.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-float>* {
  pointer-events: auto;
  width: 100%;
  max-width: var(--container-max, 1100px);
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-float .cta-btn {
    width: min(680px, 100%);
    justify-content: center;
    padding: 14px 18px;
    font-size: 1rem;
  }
}

.footer-cta {
  display: flex;
  justify-content: center;
  padding: 16px 0;
}

.cta-float.is-docked {
  opacity: 0;
  transform: translateY(16px);
}

@media (prefers-reduced-transparency: reduce) {
  .cta-float {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(15, 30, 50, .9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-float {
    transition: none;
  }

  .cta-btn {
    transition: none;
  }
}

.player {
  position: relative;
  background: #0b1624;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.player__video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: saturate(.98);
}

.player__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .25));
  border: 0;
  cursor: pointer;
  transition: opacity .2s ease;
}

.player.is-playing .player__play {
  opacity: 0;
  pointer-events: none;
}

.play__ring {
  fill: rgba(13, 51, 89, .75);
  stroke: #a6c8ff;
  stroke-width: 2
}

.play__tri {
  fill: #eaf2ff
}

.player__toolbar {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 8px;
}

.player__mute {
  background: rgba(0, 0, 0, .45);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

.player__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  pointer-events: none;
}

.player__progress {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  overflow: hidden;
}

.player__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width .1s linear;
}

.player__duration {
  background: rgba(0, 0, 0, .55);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: .95rem;
  color: #fff;
}

@media (hover:hover) {
  .player:hover .player__play {
    opacity: .9;
  }
}

@media (max-width: 768px) {
  .player__mute {
    padding: 6px 8px;
    font-size: 13px;
  }

  .player__duration {
    font-size: .9rem;
  }
}

.player__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .25));
  border: 0;
  cursor: pointer;
  transition: opacity .2s ease;
  outline: none;
}

.player__play svg {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .35));
  transition: transform .18s ease;
}

@media (max-width: 768px) {
  .player__play svg {
    width: 56px;
    height: 56px;
  }
}

.play__ring {
  fill: rgba(255, 255, 255, .14);
  stroke: rgba(255, 255, 255, .7);
  stroke-width: 2.5;
}

.play__tri {
  fill: #fff;
  transform-origin: 50% 50%;
  transition: transform .18s ease, filter .18s ease;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .25));
}

.player__play::before {
  content: "";
  position: absolute;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0));
  opacity: .55;
  animation: playPulse 1.8s ease-in-out infinite;
}

@media (max-width: 768px) {
  .player__play::before {
    width: 64px;
    height: 64px;
  }
}

@keyframes playPulse {

  0%,
  100% {
    transform: scale(.92);
    opacity: .45;
  }

  50% {
    transform: scale(1.06);
    opacity: .65;
  }
}

@media (hover:hover) {
  .player__play:hover svg {
    transform: translateY(-1px) scale(1.02);
  }

  .player__play:hover .play__tri {
    transform: scale(1.06);
  }
}

.player__play:focus-visible {
  outline: 2px solid rgba(255, 255, 255, .7);
  outline-offset: 4px;
  border-radius: 12px;
}

.player.is-playing .player__play {
  opacity: 0;
  pointer-events: none;
}

.article {
  margin-block: 20px 28px;
}

.lead-callout {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01));
  border: 1px solid color-mix(in oklab, var(--accent) 65%, #8fe8ff);
  border-radius: 14px;
  padding: clamp(14px, 2.2vw, 20px);
  box-shadow:
    0 8px 22px rgba(0, 0, 0, .25),
    0 0 0 3px rgba(106, 211, 255, .10) inset;
  color: var(--text);
  line-height: 1.7;
  position: relative;
  font-size: clamp(17px, 0.95rem + 0.40vw, 20px);
  /* ~17→20px */
}

.lead-callout::before {
  content: "";
  position: absolute;
  inset: 8px auto 8px 8px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--accent), color-mix(in oklab, var(--accent) 40%, #ffffff));
  opacity: .75;
}

.lead-callout p {
  margin: 0;
}

.lead-callout p+p {
  margin-top: .9em;
}

.hl {

  border-bottom: 1px dotted rgba(58, 161, 255, .65);
  border-radius: 4px;
  padding: 0 .18em;
  font-weight: 800;
  color: #f5f100;
}

@media (max-width: 768px) {
  .lead-callout {
    border-radius: 12px;
    font-size: clamp(16.5px, 3.9vw, 18.5px);
    line-height: 1.65;
    padding: 12px 14px;
    box-shadow:
      0 6px 18px rgba(0, 0, 0, .22),
      0 0 0 2px rgba(106, 211, 255, .10) inset;
  }

  .lead-callout::before {
    inset: 6px auto 6px 6px;
  }
}

/* ===== Dialog block ===== */
.dialog {
  margin: 22px 0 26px;
  display: grid;
  gap: 10px;
  padding: 14px;

}

.dialog__item {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 10px;
  padding: 10px 12px;

}

.dialog__avatar {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(58, 161, 255, .15);
  border: 1px solid rgba(58, 161, 255, .35);
  border-radius: 8px;
  font-size: 17px;
  box-shadow: inset 0 0 12px rgba(58, 161, 255, .2);
}

.dialog__avatar--cl {
  background: rgba(255, 104, 125, .15);
  border-color: rgba(255, 104, 125, .45);
}

.dialog__line {
  margin: 0;
  color: var(--text);
  font-size: clamp(17px, 0.96rem + 0.35vw, 19.5px);
  line-height: 1.65;
}

.dialog__speaker {
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .3);
}

.dialog__tone {
  font-style: normal;
  font-weight: 800;
  opacity: .95;
}

.hl2 {
  color: #10131a;
  background: linear-gradient(0deg, #ffbf3a, #ffd46a);
  border-radius: 6px;
  padding: 0 .25em;
  font-weight: 800;
  box-shadow: 0 2px 0 rgba(0, 0, 0, .15);
}

.dialog__item+.dialog__item {
  margin-top: 2px;
}

@media (max-width: 768px) {
  .dialog {
    padding: 12px;
    border-radius: 12px;
  }

  .dialog__item {
    padding: 10px;
    grid-template-columns: 26px 1fr;
  }

  .dialog__avatar {
    width: 26px;
    height: 26px;
    font-size: 16px;
  }

  .dialog__line {
    font-size: clamp(16.5px, 3.9vw, 18.5px);
    line-height: 1.6;
  }
}