:root {
  --news-blue: #075bd8;
  --news-blue-dark: #063d91;
  --news-ink: #12233c;
  --news-muted: #64748b;
  --news-line: #dce7f4;
  --news-soft: #f3f7fd;
  --news-white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--news-ink);
  background: var(--news-white);
  font: 16px/1.6 Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.news-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--news-line);
  backdrop-filter: blur(14px);
}
.news-header-inner {
  width: min(1240px, calc(100% - 32px));
  min-height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.news-logo img { width: 58px; height: 58px; padding: 5px; border-radius: 50%; object-fit: contain; background: #fff; box-shadow: 0 6px 20px rgba(6,61,145,.12); }
.news-header nav { display: flex; align-items: center; gap: 22px; color: #40536c; font-weight: 750; }
.news-header nav a:hover { color: var(--news-blue); }
main { width: min(1240px, calc(100% - 32px)); margin: auto; }
.news-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
  padding: clamp(56px, 9vw, 108px) 0 38px;
}
.news-eyebrow { color: var(--news-blue); font-size: 13px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.news-intro h1 { max-width: 760px; margin: 8px 0 14px; font-size: clamp(38px, 6vw, 72px); line-height: 1.02; letter-spacing: -.045em; }
.news-intro p { max-width: 690px; margin: 0; color: var(--news-muted); font-size: clamp(17px, 2vw, 20px); }
.news-search { display: grid; gap: 8px; }
.news-search label { font-size: 13px; font-weight: 800; }
.news-search div { display: flex; padding: 5px; border: 1px solid #cbd9eb; border-radius: 14px; background: #fff; box-shadow: 0 12px 34px rgba(20,55,100,.08); }
.news-search input { min-width: 0; flex: 1; padding: 10px 12px; border: 0; outline: 0; color: var(--news-ink); background: transparent; }
.news-search button, .news-button { display: inline-flex; justify-content: center; align-items: center; padding: 10px 17px; border: 0; border-radius: 10px; color: #fff; background: var(--news-blue); font-weight: 800; cursor: pointer; }
.news-button.secondary { color: var(--news-blue-dark); background: #e8f1ff; }
.news-categories { display: flex; gap: 8px; padding: 2px 0 28px; overflow-x: auto; scrollbar-width: none; }
.news-categories::-webkit-scrollbar { display: none; }
.news-categories a { flex: none; padding: 8px 14px; border: 1px solid var(--news-line); border-radius: 999px; color: #53657d; background: #fff; font-size: 14px; font-weight: 750; }
.news-categories a:hover, .news-categories a.is-active { color: #fff; border-color: var(--news-blue); background: var(--news-blue); }
.news-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  min-height: 500px;
  overflow: hidden;
  border-radius: 26px;
  background: #071f46;
  color: #fff;
  box-shadow: 0 26px 70px rgba(7,31,70,.2);
}
.news-featured > img { width: 100%; height: 100%; object-fit: cover; }
.news-featured > div { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(28px, 5vw, 58px); }
.news-featured h2 { margin: 14px 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: -.035em; }
.news-featured p { color: #c3d5ee; }
.news-featured .news-button { margin-top: 20px; background: #fff; color: var(--news-blue-dark); }
.news-category { display: inline-flex; width: fit-content; padding: 5px 9px; border-radius: 999px; color: var(--news-blue-dark); background: #e5efff; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.news-meta { display: flex; flex-wrap: wrap; gap: 15px; color: var(--news-muted); font-size: 14px; }
.news-featured .news-meta { color: #aac1df; }
.news-feed { padding: clamp(54px, 8vw, 94px) 0; }
.news-section-heading { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 24px; }
.news-section-heading h2 { margin: 5px 0 0; font-size: clamp(27px, 4vw, 40px); line-height: 1.15; letter-spacing: -.03em; }
.news-section-heading > span { color: var(--news-muted); }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.news-card { overflow: hidden; border: 1px solid var(--news-line); border-radius: 18px; background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(24,58,102,.12); }
.news-card-image { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--news-soft); }
.news-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card-image img { transform: scale(1.035); }
.news-card-body { padding: 20px; }
.news-card-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; color: var(--news-muted); font-size: 13px; }
.news-card h3 { margin: 13px 0 9px; font-size: 21px; line-height: 1.25; letter-spacing: -.02em; }
.news-card h3 a:hover { color: var(--news-blue); }
.news-card p { margin: 0 0 18px; color: var(--news-muted); }
.news-read-link { color: var(--news-blue); font-weight: 800; }
.news-read-link span { display: inline-block; transition: transform .2s ease; }
.news-read-link:hover span { transform: translateX(4px); }
.news-empty { padding: 70px 24px; border: 1px dashed #bbcadc; border-radius: 18px; text-align: center; background: var(--news-soft); }
.news-empty h3 { margin: 0; font-size: 26px; }
.news-empty p { color: var(--news-muted); }
.news-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px; padding: 34px 20px; color: var(--news-muted); background: var(--news-soft); border-top: 1px solid var(--news-line); text-align: center; }
.news-footer img { width: 42px; height: 42px; padding: 4px; border-radius: 50%; background: #fff; object-fit: contain; }
.article-main { width: min(920px, calc(100% - 32px)); }
.article-page { padding: clamp(50px, 8vw, 92px) 0; }
.article-header { max-width: 820px; margin: 0 auto 34px; text-align: center; }
.article-header .news-category { margin: auto; }
.article-header h1 { margin: 18px 0; font-size: clamp(38px, 6vw, 66px); line-height: 1.06; letter-spacing: -.045em; }
.article-deck { margin: 0 auto 18px; color: var(--news-muted); font-size: clamp(18px, 2.5vw, 22px); }
.article-header .news-meta { justify-content: center; }
.article-hero { width: 100%; max-height: 620px; margin-bottom: 42px; border-radius: 24px; object-fit: cover; box-shadow: 0 24px 65px rgba(21,55,101,.16); }
.article-content { width: min(720px, 100%); margin: auto; font: 19px/1.85 Georgia, "Times New Roman", serif; color: #26364b; }
.article-source { width: min(720px, 100%); margin: 34px auto 0; padding-top: 20px; border-top: 1px solid var(--news-line); color: var(--news-muted); }
.article-source a { color: var(--news-blue); font-weight: 750; }
.article-actions { display: flex; flex-wrap: wrap; gap: 10px; width: min(720px, 100%); margin: 38px auto 0; }

@media (max-width: 900px) {
  .news-intro { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured > img { max-height: 430px; }
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .news-header-inner, main, .article-main { width: min(100% - 22px, 1240px); }
  .news-header-inner { min-height: 68px; }
  .news-logo img { width: 50px; height: 50px; }
  .news-header nav { gap: 13px; font-size: 14px; }
  .news-intro { padding-top: 46px; }
  .news-search div { flex-direction: column; }
  .news-search button { width: 100%; }
  .news-featured { min-height: 0; border-radius: 18px; }
  .news-featured > div { padding: 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-section-heading { align-items: flex-start; flex-direction: column; }
  .article-hero { border-radius: 16px; margin-bottom: 30px; }
  .article-content { font-size: 18px; line-height: 1.75; }
  .article-actions .news-button { width: 100%; }
}
