:root {
  --navy-950: #071a2f;
  --navy-900: #0b2440;
  --navy-800: #123a61;
  --navy-700: #185081;
  --gold-500: #f5ad2f;
  --gold-400: #ffc35c;
  --cream: #fff8e8;
  --sky: #eaf5ff;
  --ink: #17202b;
  --muted: #66717e;
  --line: #dce4eb;
  --surface: #ffffff;
  --background: #f6f8fa;
  --success: #18794e;
  --danger: #b42318;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 16px 45px rgba(11, 36, 64, 0.09);
  --shadow-sm: 0 8px 24px rgba(11, 36, 64, 0.07);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Noto Sans Myanmar", "Myanmar Text", "Pyidaungsu", Inter, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: white;
  background: var(--navy-900);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 235, 0.85);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-900);
  font-weight: 800;
  line-height: 1.25;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 13px 13px 13px 4px;
  font-family: Georgia, serif;
  font-size: 21px;
  box-shadow: 0 7px 18px rgba(245, 173, 47, 0.3);
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  padding: 9px 13px;
  color: #344252;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Noto Sans Myanmar", "Myanmar Text", "Pyidaungsu", Inter, sans-serif;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  color: var(--navy-800);
  background: var(--sky);
}

.nav-cta {
  color: var(--navy-950) !important;
  background: var(--gold-500) !important;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  border: 0;
  color: var(--navy-900);
  background: var(--sky);
  border-radius: 11px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 21px;
  height: 2px;
  display: block;
  margin: 5px auto;
  content: "";
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 195, 92, 0.24), transparent 23%),
    linear-gradient(130deg, var(--navy-950), var(--navy-800));
}

.hero::before {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.025), 0 0 0 120px rgba(255, 255, 255, 0.018);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 4px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 1.32;
  letter-spacing: -0.035em;
}

.hero-copy {
  max-width: 730px;
  margin: 22px 0 30px;
  color: #dce9f5;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.search-box {
  max-width: 650px;
  display: flex;
  gap: 10px;
  padding: 8px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.2);
}

.search-box input {
  min-width: 0;
  flex: 1;
  padding: 10px 14px;
  border: 0;
  outline: none;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn:focus-visible,
.filter-btn:focus-visible,
.menu-toggle:focus-visible,
.share-btn:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(245, 173, 47, 0.45);
  outline-offset: 2px;
}

.btn-primary {
  color: var(--navy-950);
  background: var(--gold-500);
  box-shadow: 0 8px 20px rgba(245, 173, 47, 0.22);
}

.btn-navy {
  color: white;
  background: var(--navy-800);
}

.btn-outline {
  color: var(--navy-800);
  background: white;
  border-color: var(--line);
}

.hero-art {
  min-height: 370px;
  position: relative;
}

.globe {
  position: absolute;
  inset: 8% 4% auto auto;
  width: min(330px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, rgba(255,255,255,.15) 49%, rgba(255,255,255,.15) 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, rgba(255,255,255,.15) 49%, rgba(255,255,255,.15) 51%, transparent 52%),
    rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 60px rgba(255,255,255,.07), 0 30px 60px rgba(0,0,0,.18);
}

.globe::before,
.globe::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.globe::before {
  inset: 0 28%;
}

.globe::after {
  inset: 28% 0;
}

.globe strong {
  z-index: 1;
  color: var(--gold-400);
  font-family: Georgia, serif;
  font-size: 80px;
}

.floating-note {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 20px;
  width: 220px;
  padding: 18px;
  color: var(--ink);
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.floating-note span {
  display: block;
  color: var(--gold-500);
  font-size: 24px;
}

.floating-note p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.section {
  padding: 78px 0;
}

.section-sm {
  padding: 52px 0;
}

.section-white {
  background: var(--surface);
}

.section-cream {
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.45;
}

.section-heading p {
  max-width: 610px;
  margin: 8px 0 0;
  color: var(--muted);
}

.text-link {
  flex: 0 0 auto;
  color: var(--navy-700);
  font-weight: 800;
}

.text-link:hover {
  color: #a86500;
}

.featured-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.story-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 0;
  color: white;
  background: linear-gradient(145deg, var(--navy-800), #2d81a8);
  isolation: isolate;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.story-card:hover .story-image img,
.featured-card:hover .story-image img {
  transform: scale(1.035);
}

.story-image::before,
.story-image::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
}

.story-image:has(img)::before,
.story-image:has(img)::after {
  display: none;
}

.story-image::before {
  width: 230px;
  height: 230px;
  top: -80px;
  right: -30px;
  background: rgba(255, 255, 255, 0.12);
}

.story-image::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: -20px;
  background: rgba(245, 173, 47, 0.42);
}

.story-image[data-theme="history"] {
  background: linear-gradient(145deg, #57392d, #ae744e);
}

.story-image[data-theme="science"] {
  background: linear-gradient(145deg, #26366e, #7458af);
}

.story-image[data-theme="animal"] {
  background: linear-gradient(145deg, #175246, #4a966c);
}

.story-image[data-theme="culture"] {
  background: linear-gradient(145deg, #8a3d35, #d6814c);
}

.story-image[data-theme="mystery"] {
  background: linear-gradient(145deg, #28223f, #625779);
}

.story-image[data-theme="people"] {
  background: linear-gradient(145deg, #8b4b17, #d49a3f);
}

.story-image[data-theme="space"] {
  background: linear-gradient(145deg, #101b3d, #344f90);
}

.story-image .image-label {
  font-family: Georgia, serif;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  font-weight: 700;
  opacity: 0.9;
}

.featured-card .story-image {
  min-height: 430px;
}

.featured-content {
  align-self: center;
  padding: clamp(28px, 5vw, 55px);
}

.category-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: #8b5800;
  background: #fff0cb;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-labels,
.article-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.story-card .card-labels {
  justify-content: flex-start;
}

.article-type-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  color: var(--navy-800);
  background: var(--sky);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.type-quick {
  color: #17633f;
  background: #e1f7ea;
}

.type-standard {
  color: #8b5800;
  background: #fff0cb;
}

.type-deep {
  color: #5b3a91;
  background: #efe7ff;
}

.type-pillar {
  color: #a32d2d;
  background: #ffe8e5;
}

.article-range {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.featured-content h3 {
  margin: 17px 0 14px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 3.5vw, 2.5rem);
  line-height: 1.55;
}

.featured-content p {
  color: var(--muted);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.story-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.story-card .story-image {
  min-height: 205px;
}

.story-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.story-card h3 {
  margin: 13px 0 9px;
  color: var(--navy-950);
  font-size: 1.12rem;
  line-height: 1.65;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-card .meta {
  margin-top: auto;
  padding-top: 18px;
  margin-bottom: 0;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 50px 24px;
  color: var(--muted);
  text-align: center;
  background: white;
  border: 1px dashed #b8c5d0;
  border-radius: var(--radius);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 28px;
}

.filter-btn {
  padding: 9px 15px;
  color: #485563;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  background: var(--navy-800);
  border-color: var(--navy-800);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  color: white;
  background: var(--navy-800);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  isolation: isolate;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card:nth-child(2n) {
  background: #86521d;
}

.category-card:nth-child(3n) {
  background: #3f376d;
}

.category-card:nth-child(4n) {
  background: #1f6655;
}

.category-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 26, 47, 0.12) 5%, rgba(7, 26, 47, 0.9) 88%);
  border-radius: inherit;
}

.category-card > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.category-card:hover > img {
  transform: scale(1.06);
}

.category-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 14px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.category-card h3 {
  margin: 18px 0 7px;
  font-size: 1rem;
  line-height: 1.65;
}

.category-card p {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.7;
}

.fact-section {
  color: white;
  background: var(--navy-950);
}

.fact-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.fact-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 22px;
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 700;
}

.fact-wrap h2 {
  margin: 0 0 7px;
  color: var(--gold-400);
  font-size: 15px;
}

.fact-wrap p {
  margin: 0;
  color: #edf4fa;
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.newsletter {
  overflow: hidden;
  position: relative;
  padding: clamp(34px, 6vw, 64px);
  color: white;
  background: linear-gradient(130deg, var(--navy-800), var(--navy-950));
  border-radius: var(--radius-lg);
}

.newsletter::after {
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  content: "";
  background: rgba(245, 173, 47, 0.14);
  border-radius: 50%;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.newsletter h2 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
}

.newsletter p {
  margin: 0;
  color: #cbdceb;
}

.inline-form {
  display: flex;
  gap: 10px;
}

.inline-form input {
  min-width: 0;
  flex: 1;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
}

.form-message {
  min-height: 26px;
  margin: 8px 0 0;
  font-size: 13px;
}

.form-message.success {
  color: #9ff1c6;
}

.form-message.error {
  color: #ffc3bd;
}

.page-hero {
  padding: 66px 0;
  color: white;
  background:
    radial-gradient(circle at 82% 25%, rgba(245, 173, 47, 0.22), transparent 22%),
    var(--navy-950);
}

.page-hero h1 {
  color: white;
}

.page-hero p {
  max-width: 720px;
  margin: 13px 0 0;
  color: #cbdceb;
}

.breadcrumbs {
  margin-bottom: 14px;
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 800;
}

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

.content-card {
  padding: clamp(26px, 5vw, 52px);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.prose {
  max-width: 790px;
  margin-inline: auto;
}

.prose h2 {
  margin: 38px 0 12px;
  color: var(--navy-950);
  font-size: 1.45rem;
  line-height: 1.55;
}

.prose h3 {
  color: var(--navy-900);
}

.prose p,
.prose li {
  color: #3e4955;
  line-height: 2;
}

.prose a {
  color: var(--navy-700);
  text-decoration: underline;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 60px;
}

.about-visual {
  min-height: 460px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--gold-500);
  background: linear-gradient(145deg, var(--navy-950), var(--navy-700));
  border-radius: var(--radius-lg);
  font-family: Georgia, serif;
  font-size: 110px;
  font-weight: 700;
}

.about-visual::before {
  position: absolute;
  inset: 40px;
  content: "";
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.value-card strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border-radius: 12px;
  font-family: Georgia, serif;
  font-size: 20px;
}

.value-card h3 {
  color: var(--navy-950);
}

.value-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
}

.contact-info {
  padding: 34px;
  color: white;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.contact-info h2 {
  margin-top: 0;
}

.contact-info p {
  color: #ceddea;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.contact-item {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.contact-item span {
  display: block;
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 7px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #cfd9e2;
  border-radius: 10px;
}

.form-group textarea {
  min-height: 170px;
  resize: vertical;
}

.contact-form .form-message.success {
  color: var(--success);
}

.contact-form .form-message.error {
  color: var(--danger);
}

.article-header {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.article-header h1 {
  margin: 16px 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.45;
}

.article-header .meta {
  justify-content: center;
}

.article-cover {
  min-height: min(540px, 58vw);
  border-radius: var(--radius-lg);
}

.article-figure {
  margin: 38px 0 0;
}

.article-figure figcaption {
  max-width: 900px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.article-layout {
  max-width: 960px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 34px;
  margin: 50px auto 0;
}

.share-tools {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 9px;
}

.share-tools span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.share-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--navy-800);
  background: white;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.share-btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
}

.share-facebook:hover {
  background: #1877f2;
}

.share-messenger:hover {
  background: #0084ff;
}

.share-instagram:hover {
  background: #c13584;
}

.share-x:hover {
  background: #111111;
}

.share-telegram:hover {
  background: #229ed9;
}

.share-copy:hover {
  background: var(--navy-700);
}

.article-body {
  min-width: 0;
}

.article-body > section,
.article-body > aside {
  scroll-margin-top: 110px;
}

.article-introduction {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-introduction h2 {
  margin-top: 0;
}

.article-introduction p {
  color: #283747;
  font-size: 1.05rem;
  font-weight: 500;
}

.article-section {
  margin-top: 40px;
}

.article-section h2 {
  position: relative;
  padding-left: 18px;
}

.article-section h2::before {
  position: absolute;
  top: 0.3em;
  bottom: 0.3em;
  left: 0;
  width: 5px;
  content: "";
  background: var(--gold-500);
  border-radius: 4px;
}

.article-body > p:first-child::first-letter {
  float: left;
  margin: 9px 9px 0 0;
  color: var(--navy-800);
  font-family: Georgia, serif;
  font-size: 4.3rem;
  font-weight: 700;
  line-height: 0.8;
}

.info-box {
  margin: 30px 0;
  padding: 24px;
  background: var(--cream);
  border-left: 5px solid var(--gold-500);
  border-radius: 4px var(--radius) var(--radius) 4px;
}

.info-box.takeaway {
  background: var(--sky);
  border-left-color: var(--navy-700);
}

.info-box h3 {
  margin-top: 0;
}

.info-box h2 {
  margin-top: 0;
  font-size: 1.25rem;
}

.facts-box li + li {
  margin-top: 8px;
}

.timeline-box,
.sources-box {
  margin: 34px 0;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.timeline-box h2,
.sources-box h2 {
  margin-top: 0;
  font-size: 1.3rem;
}

.timeline-box ol {
  position: relative;
  display: grid;
  gap: 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-box ol::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 7px;
  width: 2px;
  content: "";
  background: var(--line);
}

.timeline-box li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 20px;
  padding-left: 30px;
}

.timeline-box li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 16px;
  height: 16px;
  content: "";
  background: var(--gold-500);
  border: 4px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--gold-500);
}

.timeline-box strong {
  color: var(--navy-800);
}

.timeline-box span {
  color: #465463;
}

.sources-box {
  background: #fbfcfd;
}

.sources-box > p {
  margin-top: -4px;
  color: var(--muted);
  font-size: 14px;
}

.sources-box ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.sources-box a {
  color: var(--navy-700);
  font-weight: 700;
  text-decoration: none;
}

.sources-box a:hover {
  text-decoration: underline;
}

.story-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}

.story-nav a {
  padding: 19px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.story-nav a:last-child {
  text-align: right;
}

.story-nav span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.story-nav strong {
  color: var(--navy-900);
  font-size: 14px;
}

.site-footer {
  padding: 64px 0 22px;
  color: #d7e1eb;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr 0.65fr;
  gap: 45px;
}

.footer-brand p {
  max-width: 390px;
  color: #9eb1c3;
  font-size: 14px;
}

.site-footer .brand {
  color: white;
}

.site-footer h3 {
  margin: 0 0 17px;
  color: white;
  font-size: 14px;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  color: #9eb1c3;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 48px;
  padding-top: 20px;
  color: #8398ac;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
}

.back-to-top {
  position: fixed;
  z-index: 50;
  right: 20px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-500);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font-size: 19px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 0 auto;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    display: grid;
    gap: 3px;
    padding: 18px 16px 28px;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s;
  }

  .site-nav.open {
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 12px 14px;
  }

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

  .hero-art {
    display: none;
  }

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

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

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

  .footer-grid > :last-child {
    grid-column: 2;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding: 58px 0;
  }

  .hero h1 {
    letter-spacing: -0.02em;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading {
    align-items: start;
  }

  .featured-card,
  .newsletter-inner,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .featured-card .story-image {
    min-height: 280px;
  }

  .newsletter-inner {
    gap: 26px;
  }

  .fact-wrap {
    grid-template-columns: auto 1fr;
  }

  .fact-wrap .btn {
    grid-column: 1 / -1;
  }

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .share-tools {
    position: static;
    display: flex;
    align-items: center;
  }

  .share-tools span {
    margin-right: 7px;
  }
}

@media (max-width: 560px) {
  .brand-text small {
    display: none;
  }

  .search-box,
  .inline-form {
    display: grid;
  }

  .story-grid,
  .category-grid,
  .form-grid,
  .story-nav,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 205px;
  }

  .timeline-box li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .timeline-box,
  .sources-box {
    padding: 22px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    display: inline-block;
    margin-top: 12px;
  }

  .fact-wrap {
    grid-template-columns: 1fr;
  }

  .fact-icon {
    width: 58px;
    height: 58px;
  }

  .about-visual {
    min-height: 330px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
