:root {
  --bg: #eef1f4;
  --card: #ffffff;
  --text: #121417;
  --muted: #667085;
  --border: #e5e7eb;
  --accent: #c91f1f;
  --accent-dark: #ab1717;
  --headline: #111827;
  --shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
  --max-width: 980px;
  --soft-red: #fff5f5;
  --soft-gray: #f8fafc;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.breaking-bar {
  background: #111111;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breaking-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.breaking-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  padding: 5px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

.breaking-text {
  color: rgba(255, 255, 255, 0.92);
}

.topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 0;
}

.topbar-links {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.3px;
  color: var(--accent);
  text-transform: uppercase;
}

.topbar-brand {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  line-height: 1.1;
}

.article-wrap {
  padding: 22px 0 40px;
}

.article-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 34px 38px 40px;
}

.reader-update {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--soft-red);
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.reader-update-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.article-label {
  margin: 0 0 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
}

.headline {
  margin: 0;
  font-size: clamp(2rem, 4.7vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.03em;
  color: var(--headline);
}

.subheadline {
  margin: 16px 0 22px;
  font-size: clamp(1.03rem, 1.8vw, 1.3rem);
  color: #374151;
  line-height: 1.5;
}

.hero-media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #f8fafc;
  margin-bottom: 18px;
}

.hero-media img {
  width: 100%;
  height: auto;
}

.top-highlight-box {
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid #f3d1d1;
  border-radius: 8px;
  background: var(--soft-red);
}

.top-highlight-box p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: #374151;
}

.cta-top-wrap,
.mid-cta-wrap,
.cta-bottom-wrap {
  display: flex;
  justify-content: center;
}

.cta-top-wrap {
  margin: 20px 0 18px;
}

.cta-top-early {
  margin-top: 0;
}

.mid-cta-wrap {
  margin: 30px 0;
}

.cta-bottom-wrap {
  margin-top: 34px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(201, 31, 31, 0.18);
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.cta-button.large {
  width: 100%;
  max-width: 780px;
  min-height: 64px;
  font-size: 20px;
}

.byline-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 0 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.author-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 54px;
  border: 2px solid #f2f4f7;
}

.byline-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.byline-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Arial, Helvetica, sans-serif;
}

.byline-prefix {
  color: #475467;
  font-size: 14px;
}

.byline-name {
  color: #0b63c9;
  font-weight: 700;
  font-size: 16px;
}

.byline-role {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: var(--muted);
}

.article-date {
  margin-left: auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #475467;
}

.meta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0 26px;
  color: #475467;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.article-body {
  margin-top: 28px;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: #17202a;
}

.article-body p {
  margin: 0 0 22px;
}

.article-body h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  color: #111827;
}

.article-body blockquote {
  margin: 26px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--soft-gray);
  color: #1f2937;
  font-style: italic;
}

.inline-emphasis-box,
.final-highlight-box {
  margin: 24px 0;
  padding: 18px 20px;
  border-radius: 8px;
  background: var(--soft-gray);
  border: 1px solid var(--border);
}

.inline-emphasis-box strong {
  display: block;
  margin-bottom: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #111827;
}

.inline-emphasis-box p,
.final-highlight-box p {
  margin: 0;
}

.site-footer {
  margin-top: 20px;
  padding: 26px 0 90px;
  background: #e9edf2;
  border-top: 1px solid var(--border);
}

.footer-inner p {
  margin: 0;
  color: #667085;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
}

.sticky-mobile-cta {
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}



@media (max-width: 768px) {
  .breaking-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .article-wrap {
    padding: 14px 0 20px;
  }

  .article-card {
    padding: 22px 16px 28px;
  }

  .topbar-inner {
    padding: 14px 0;
  }

  .topbar-brand {
    font-size: 24px;
  }

  .headline {
    font-size: clamp(1.85rem, 8vw, 2.7rem);
    line-height: 1.05;
  }

  .subheadline {
    font-size: 1rem;
    margin-bottom: 18px;
  }

  .hero-media {
    margin-bottom: 14px;
  }

  .top-highlight-box {
    padding: 14px 14px;
    margin-bottom: 16px;
  }

  .top-highlight-box p {
    font-size: 0.95rem;
  }

  .byline-row {
    align-items: flex-start;
    gap: 12px;
    padding-top: 16px;
  }

  .article-date {
    width: 100%;
    margin-left: 0;
    padding-top: 2px;
  }

  .meta-row {
    gap: 10px;
    font-size: 13px;
    margin-bottom: 22px;
  }

  .article-body {
    font-size: 1.06rem;
  }

  .article-body h2 {
    font-size: 1.45rem;
  }

  .cta-button,
  .cta-button.large {
    width: 100%;
    font-size: 18px;
    min-height: 56px;
  }

  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 999;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 10px;
    background: var(--accent);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(201, 31, 31, 0.28);
  }

  .sticky-mobile-cta:hover {
    background: var(--accent-dark);
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .expert-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 28px 0 26px;
  padding: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #f8fafc;
}

.expert-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 84px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.08);
}

.expert-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expert-content strong {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  color: #111827;
}

.expert-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #1f2937;
}

.expert-content span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #667085;
}

@media (max-width: 768px) {
  .expert-note {
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 16px;
    gap: 14px;
  }

  .expert-avatar {
    width: 76px;
    height: 76px;
    flex-basis: 76px;
  }

  .expert-content {
    width: 100%;
  }

  .expert-content strong {
    font-size: 17px;
  }

  .expert-content p {
    font-size: 0.96rem;
  }

  .expert-content span {
    font-size: 12px;
  }
}

}