body {
  margin: 0;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: #10213c;
  background: #f4f8fc;
  overflow-x: clip;
}

a {
  color: inherit;
}

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

.sota-news-page {
  --ink: #071832;
  --navy: #061a3d;
  --blue: #075fc4;
  --cyan: #37d5ff;
  --teal: #18b99a;
  --gold: #f1b33b;
  --paper: #ffffff;
  --mist: #edf6fd;
  --line: #c8dced;
  --muted: #5b6d86;
  --news-sticky-offset: 104px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(7, 95, 196, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 95, 196, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #eef7ff 0%, #ffffff 42%, #f3f8fb 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.sota-news-page * {
  box-sizing: border-box;
}

.sota-news-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.sota-news-hero {
  position: relative;
  padding: 82px 0 70px;
}

.sota-news-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 95, 196, 0.34), transparent);
}

.sota-news-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, .64fr);
  gap: 54px;
  align-items: center;
}

.sota-news-hero-grid > *,
.sota-news-article > *,
.sota-news-playbook-head > *,
.sota-news-cta > * {
  min-width: 0;
}

.sota-news-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sota-news-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--cyan);
}

.sota-news-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.8rem, 6.2vw, 5.65rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.16;
  overflow-wrap: break-word;
}

.sota-news-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #40536e;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
  overflow-wrap: break-word;
}

.sota-news-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.sota-news-hero-meta span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(7, 95, 196, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.sota-news-visual {
  position: relative;
  min-height: 460px;
  aspect-ratio: 1.12 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(7, 95, 196, 0.22);
  border-radius: 8px;
  background: #061a3d;
  box-shadow: 0 26px 60px rgba(6, 26, 61, 0.18);
}

.sota-news-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sota-news-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 12, 30, 0.02), rgba(3, 12, 30, 0.72)),
    linear-gradient(90deg, rgba(3, 12, 30, 0.62), transparent 52%);
}

.sota-news-visual-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sota-news-visual-caption div {
  min-width: 0;
  min-height: 88px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(4, 18, 42, 0.72);
  backdrop-filter: blur(12px);
}

.sota-news-visual-caption strong {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.sota-news-visual-caption span {
  display: block;
  margin-top: 8px;
  color: #b9dcf4;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.sota-news-index {
  padding: 34px 0 22px;
}

.sota-news-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sota-news-index a {
  display: block;
  min-width: 0;
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(7, 50, 116, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sota-news-index a:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 95, 196, 0.42);
  box-shadow: 0 18px 38px rgba(7, 50, 116, 0.13);
}

.sota-news-index span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sota-news-index strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.sota-news-index small {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.sota-news-section {
  padding: 62px 0;
}

.sota-news-article[id] {
  scroll-margin-top: 136px;
}

.sota-news-section + .sota-news-section {
  border-top: 1px solid rgba(7, 95, 196, 0.14);
}

.sota-news-article {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.sota-news-aside {
  position: sticky;
  top: var(--news-sticky-offset);
  align-self: start;
  max-height: calc(100vh - var(--news-sticky-offset) - 24px);
  overflow: auto;
  padding-left: 18px;
  border-left: 3px solid var(--cyan);
}

.sota-news-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 4px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sota-news-aside dl {
  margin: 0;
}

.sota-news-aside dt {
  margin-top: 18px;
  color: #6a7f99;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sota-news-aside dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: break-word;
}

.sota-news-body {
  min-width: 0;
}

.sota-news-body h2 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.55rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.sota-news-lead {
  max-width: 860px;
  margin: 20px 0 26px;
  color: #2d4563;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 700;
  line-height: 1.72;
}

.sota-news-body p {
  max-width: 820px;
  margin: 0 0 18px;
  color: #43566f;
  font-size: 1rem;
  line-height: 1.82;
  overflow-wrap: break-word;
}

.sota-news-media {
  margin: 30px 0;
  overflow: hidden;
  border: 1px solid rgba(7, 95, 196, 0.18);
  border-radius: 8px;
  background: #dceefa;
}

.sota-news-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.sota-news-quote {
  margin: 30px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  background: #fff8ea;
  color: #513c12;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.sota-news-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.sota-news-point {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.sota-news-point b {
  display: block;
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.sota-news-point span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
  overflow-wrap: break-word;
}

.sota-news-playbook {
  padding: 64px 0 78px;
  background: linear-gradient(180deg, rgba(6, 26, 61, 0.04), rgba(24, 185, 154, 0.07));
}

.sota-news-playbook-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.sota-news-playbook h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.04;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.sota-news-playbook p {
  margin: 0;
  color: #43566f;
  line-height: 1.78;
}

.sota-news-playbook-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.sota-news-step {
  min-width: 0;
  min-height: 210px;
  padding: 20px;
  border: 1px solid rgba(7, 95, 196, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.sota-news-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--teal);
  color: #ffffff;
  font-weight: 900;
}

.sota-news-step h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.sota-news-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
  overflow-wrap: break-word;
}

.sota-news-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto 38px;
  padding: 34px clamp(22px, 5vw, 70px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(24, 185, 154, 0.92), rgba(7, 95, 196, 0.98) 48%, #061a3d);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(6, 26, 61, 0.22);
}

.sota-news-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.sota-news-cta p {
  margin: 0;
  color: #d8f5ff;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.sota-news-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
}

.sota-news-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sota-news-cta .btn:hover {
  transform: translateY(-2px);
}

.sota-news-cta .btn-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #066dff, #00b8ff);
  box-shadow: 0 14px 24px rgba(0, 184, 255, 0.24);
}

.sota-news-cta .btn-outline {
  background: rgba(255, 255, 255, 0.1);
}

.sota-news-cta .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: inherit;
  line-height: 0;
}

.sota-news-cta .btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Footer — synced with home */
.site-footer {
  color: #d7ecff;
  background: #031831;
  padding: 44px max(16px, calc((100vw - 1180px) / 2)) 26px;
}

.site-footer * {
  box-sizing: border-box;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr repeat(5, minmax(96px, 1fr)) minmax(204px, 1.8fr);
  gap: 28px;
}

.footer-grid > * {
  min-width: 0;
}

.footer-brand {
  margin-bottom: 18px;
}

.site-footer p {
  max-width: 350px;
  margin: 0;
  color: #9fbed9;
  font-size: 0.9rem;
  line-height: 1.7;
}

.site-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: 10px;
  color: #a9c7e3;
  font-size: 0.86rem;
  text-decoration: none;
  overflow-wrap: break-word;
}

.site-footer a:not(.brand):hover {
  color: #ffffff;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.socials a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 42px;
  height: 42px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(125, 204, 255, 0.5), transparent 34%),
    linear-gradient(145deg, #0a79e7 0%, #0646aa 55%, #03246f 100%);
  border: 1px solid rgba(112, 190, 255, 0.56);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 -8px 14px rgba(1, 18, 74, 0.48),
    0 10px 20px rgba(0, 74, 177, 0.26);
  color: #ffffff !important;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1;
  overflow-wrap: normal;
  text-shadow: 0 2px 7px rgba(2, 15, 60, 0.5);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.socials a::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%),
    radial-gradient(circle at 50% 84%, rgba(37, 129, 255, 0.42), transparent 52%);
  border: 1px solid rgba(170, 221, 255, 0.18);
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(177, 225, 255, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 -8px 14px rgba(1, 18, 74, 0.46),
    0 13px 24px rgba(0, 97, 218, 0.34);
}

.socials a[aria-label="Facebook"] {
  align-items: end;
  padding-bottom: 5px;
  font-size: 1.72rem;
}

.socials a[aria-label="LinkedIn"] {
  padding-top: 1px;
  font-size: 1.28rem;
}

.socials a[aria-label="YouTube"] {
  font-size: 0;
}

.socials a[aria-label="YouTube"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 25px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 26'%3E%3Crect width='36' height='26' rx='6' fill='white'/%3E%3Cpath d='M15 8l9 5-9 5z' fill='%230856b5'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 2px 6px rgba(2, 15, 60, 0.42));
  transform: translate(-50%, -50%);
}

.socials a[aria-label="Zalo"] {
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(142, 203, 255, 0.18);
  color: #8aa9c7;
  font-size: 0.8rem;
}

@media (max-width: 980px) {
  .sota-news-hero-grid,
  .sota-news-article,
  .sota-news-playbook-head {
    grid-template-columns: 1fr;
  }

  .sota-news-visual {
    min-height: 380px;
  }

  .sota-news-visual img {
    min-height: 0;
  }

  .sota-news-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-height: none;
    overflow: visible;
    padding: 16px;
    border: 1px solid var(--line);
    border-left: 3px solid var(--cyan);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
  }

  .sota-news-label {
    grid-column: 1 / -1;
    width: fit-content;
    margin-bottom: 2px;
  }

  .sota-news-points,
  .sota-news-playbook-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sota-news-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .sota-news-cta-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .sota-news-hero {
    padding: 56px 0 48px;
  }

  .sota-news-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.6rem);
  }

  .sota-news-visual-caption,
  .sota-news-index-grid,
  .sota-news-aside,
  .sota-news-points,
  .sota-news-playbook-grid {
    grid-template-columns: 1fr;
  }

  .sota-news-visual-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .sota-news-visual-caption div {
    min-height: 0;
    padding: 12px;
  }

  .sota-news-article[id] {
    scroll-margin-top: 112px;
  }

  .sota-news-section,
  .sota-news-playbook {
    padding: 46px 0;
  }

  .sota-news-quote {
    padding: 20px;
  }

  .sota-news-cta-actions,
  .sota-news-cta .btn {
    width: 100%;
  }

  .sota-news-cta .btn {
    white-space: normal;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .sota-news-shell {
    width: min(100% - 24px, 1180px);
  }

  .sota-news-hero {
    padding: 42px 0 38px;
  }

  .sota-news-hero h1,
  .sota-news-body h2,
  .sota-news-playbook h2 {
    letter-spacing: 0;
  }

  .sota-news-visual {
    min-height: 340px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
