:root {
  --page-bg: #F5F1EC;
  --page-bg-2: #EEF4FB;
  --page-bg-3: #F8F4EF;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #FCFBFA;
  --surface-soft: rgba(255, 255, 255, 0.58);
  --surface-cream: rgba(252, 251, 250, 0.82);
  --text-title: #2F3442;
  --text-main: #536174;
  --text-body: #536174;
  --text-muted: #7A8494;
  --text-soft: #687386;
  --brand-red: #D96B86;
  --brand-red-dark: #C45672;
  --brand-red-soft: rgba(217, 107, 134, 0.14);
  --brand-pink-glass: rgba(217, 107, 134, 0.11);
  --brand-navy: #0F172A;
  --brand-blue: #2563EB;
  --border-soft: rgba(217, 107, 134, 0.14);
  --border-softer: rgba(31, 41, 64, 0.065);
  --border-glass: rgba(255, 255, 255, 0.4);
  --shadow-card: 0 18px 54px rgba(31, 41, 64, 0.085);
  --shadow-card-hover: 0 24px 70px rgba(31, 41, 64, 0.12);
  --shadow-soft: 0 14px 42px rgba(31, 41, 64, 0.07);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --bg: var(--page-bg);
  --text: var(--text-body);
  --muted: var(--text-muted);
  --line: var(--border-soft);
  --accent: var(--brand-red);
  --accent-dark: var(--brand-red-dark);
  --teal: var(--brand-blue);
  --amber: #F59E0B;
  --radius: var(--radius-md);
  --card-radius: var(--radius-xl);
  --media-radius: 28px;
  --shadow: var(--shadow-card);
  --shadow-hover: var(--shadow-card-hover);
  --max-width: 1180px;
  --content-width: 780px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--text-body);
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 255, 255, 0.82), transparent 31%),
    radial-gradient(circle at 82% 12%, rgba(217, 107, 134, 0.13), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(191, 219, 254, 0.34), transparent 34%),
    linear-gradient(180deg, #F8F4EF 0%, #F5F1EC 46%, #EEF4FB 100%);
  font-family: "Be Vietnam Pro", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

main,
.news-hero,
.content-layout {
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

body.is-page-transitioning main {
  opacity: 0.42;
  transform: translateY(4px);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: 68px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow:
    0 8px 30px rgba(31, 41, 64, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(165%);
  -webkit-backdrop-filter: blur(18px) saturate(165%);
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    min-height 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  min-height: 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.6));
  box-shadow:
    0 8px 28px rgba(31, 41, 64, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 20px;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 56px;
}

.brand,
.site-logo,
.logo-mark,
.site-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.brand-mark,
.site-logo-img-wrapper,
.logo-img-wrapper,
.header-avatar-wrapper {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #FFFFFF;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  contain: paint;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: none;
}

.brand-mark img,
.site-logo-img,
.logo-img,
.header-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: none;
}

.site-header.is-scrolled .brand-mark,
.site-header.is-scrolled .site-logo-img-wrapper,
.site-header.is-scrolled .logo-img-wrapper,
.site-header.is-scrolled .header-avatar-wrapper {
  width: 38px;
  height: 38px;
}

.brand-name {
  color: var(--text-title);
  font-size: 1.04rem;
  font-weight: 780;
  letter-spacing: -0.015em;
  transition: font-size 180ms ease, color 180ms ease;
}

.main-nav {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 14px 36px rgba(31, 41, 64, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  font-size: 0.92rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  isolation: isolate;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid transparent;
  color: #5F7088;
  border-radius: 999px;
  padding: 8px 13px;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.main-nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: inherit;
  opacity: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
  transition: opacity 180ms ease;
}

.main-nav a:hover {
  color: var(--text-title);
  transform: translateY(-1px);
}

.main-nav a:hover::before {
  opacity: 1;
}

.main-nav a[aria-current="page"] {
  color: var(--brand-red-dark);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(217, 107, 134, 0.07));
  box-shadow:
    0 9px 22px rgba(217, 107, 134, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(201, 60, 97, 0.04);
}

.main-nav a[aria-current="page"]::before {
  opacity: 0;
}

.main-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 18%;
  right: 18%;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  pointer-events: none;
}

.main-nav.has-glass-indicator a::before,
.main-nav.has-glass-indicator a[aria-current="page"]::after {
  display: none;
}

.main-nav.has-glass-indicator a[aria-current="page"] {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.nav-glass-indicator {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: var(--nav-bubble-width, 88px);
  height: var(--nav-bubble-height, 38px);
  border: 1px solid var(--border-glass);
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--nav-bubble-x, 6px), var(--nav-bubble-y, 6px), 0);
  overflow: hidden;
  transition:
    transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
    width 260ms cubic-bezier(0.22, 1, 0.36, 1),
    height 260ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 160ms ease;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.72), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(217, 107, 134, 0.06));
  box-shadow:
    0 10px 22px rgba(31, 41, 64, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -10px 22px rgba(217, 107, 134, 0.018);
  backdrop-filter: blur(16px) saturate(165%);
  -webkit-backdrop-filter: blur(16px) saturate(165%);
}

.nav-glass-indicator.is-visible {
  opacity: 1;
}

.nav-glass-indicator::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 54%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  animation: liquidSheen 3.6s ease-in-out infinite;
}

.nav-glass-indicator::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 18%;
  right: 18%;
  height: 1px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

@keyframes liquidSheen {
  0% {
    left: -60%;
    opacity: 0;
  }

  24% {
    opacity: 0.28;
  }

  56%,
  100% {
    left: 110%;
    opacity: 0;
  }
}

.menu-toggle {
  display: none;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--text-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.36));
  box-shadow:
    0 8px 24px rgba(31, 41, 64, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  font-weight: 700;
}

.news-hero {
  position: relative;
  isolation: isolate;
  width: min(calc(100% - 32px), var(--max-width));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 54px;
  align-items: center;
  padding: 64px 0 52px;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 7% 0 auto auto;
  z-index: -1;
  width: min(560px, 44vw);
  height: 390px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 45% 40%, rgba(217, 107, 134, 0.16), transparent 62%),
    radial-gradient(circle at 70% 60%, rgba(191, 219, 254, 0.42), transparent 58%);
  filter: blur(30px);
  opacity: 0.86;
  pointer-events: none;
  transform: translateZ(0);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  max-width: 470px;
  padding: 0;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--brand-red-dark);
  background: var(--brand-red-soft);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--text-title);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
}

h2 {
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

h3 {
  font-size: 1.15rem;
}

.hero-copy p:last-child,
.post-card p,
.featured-story p,
.sidebar-block p,
.post-meta,
.article-summary,
.policy-page p,
.policy-page li {
  color: var(--muted);
}

.hero-copy p:last-child,
.policy-page p,
.policy-page li {
  color: var(--text-muted);
}

.hero-copy h1 {
  max-width: 470px;
  color: var(--text-title);
  background: linear-gradient(90deg, #2F3442, #6B5E66);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.5rem, 4.7vw, 4rem);
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: -0.052em;
}

.hero-copy p:last-child {
  max-width: 440px;
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.8;
}

.featured-story,
.post-card,
.sidebar-block,
.author-note,
.related-section,
.plain-page {
  border: 1px solid var(--border-soft);
  border-radius: var(--card-radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  color: var(--text-main);
}

.featured-story {
  min-height: 360px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  transform: translateZ(0);
  transition:
    transform 680ms var(--ease-out),
    box-shadow 680ms var(--ease-out),
    border-color 680ms ease,
    background 680ms ease;
}

.featured-story:hover,
.post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 107, 134, 0.16);
  box-shadow: var(--shadow-card-hover);
}

.featured-story.featured-slider {
  position: relative;
  display: grid;
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.featured-story.featured-slider:hover {
  transform: none;
  border-color: transparent;
  box-shadow: none;
}

.featured-slide {
  grid-area: 1 / 1;
  min-width: 0;
  opacity: 0;
  transform: translate3d(28px, 0, 0) scale(0.985);
  pointer-events: none;
  transition:
    opacity 560ms var(--ease-out),
    transform 620ms var(--ease-out);
  will-change: opacity, transform;
}

.featured-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.featured-slide.is-leaving {
  opacity: 0;
  transform: translate3d(-22px, 0, 0) scale(0.985);
}

.featured-card {
  display: flex;
  height: auto;
  min-height: 0;
  width: min(100%, 620px);
  justify-self: end;
  flex-direction: column;
  color: var(--text-main);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(31, 41, 64, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 680ms var(--ease-out),
    box-shadow 680ms var(--ease-out),
    border-color 680ms ease,
    background 680ms ease;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.featured-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 107, 134, 0.16);
  box-shadow: var(--shadow-card-hover);
}

.featured-story a,
.featured-card,
.post-card a,
.popular-item,
.related-card,
.category-list a {
  text-decoration: none;
}

.featured-media {
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
}

.featured-media img,
.post-thumb img,
.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card img,
.post-card img {
  transition:
    transform 700ms var(--ease-out),
    filter 700ms var(--ease-out);
}

.featured-card:hover img,
.post-card:hover img {
  transform: scale(1.022);
  filter: saturate(1.04) brightness(1.02);
}

.featured-card:hover h2,
.post-card:hover h3 {
  color: var(--brand-red-dark);
}

.no-image {
  display: grid;
  place-items: center;
  color: #FFFFFF;
  background:
    linear-gradient(135deg, rgba(215, 38, 61, 0.92), rgba(8, 126, 139, 0.9));
}

.no-image span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  font-weight: 800;
}

.featured-body {
  padding: 28px 30px 30px;
}

.featured-card .featured-body {
  padding-bottom: 54px;
}

.featured-body h2 {
  max-width: 16ch;
  margin-bottom: 14px;
  color: var(--text-title);
  font-size: clamp(2rem, 2.8vw, 2.75rem);
  font-weight: 780;
  line-height: 1.06;
  letter-spacing: -0.045em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-body p {
  color: var(--text-muted);
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.72;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.featured-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 4;
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 8px 22px rgba(31, 41, 64, 0.06);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  transform: translateX(-50%);
}

.featured-dot {
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(148, 163, 184, 0.35);
  cursor: pointer;
  transition:
    width 280ms var(--ease-out),
    background 280ms ease,
    transform 280ms ease;
}

.featured-dot:hover,
.featured-dot:focus-visible {
  transform: scale(1.08);
  background: rgba(217, 107, 134, 0.45);
  outline: none;
}

.featured-dot.is-active {
  width: 18px;
  background: linear-gradient(90deg, var(--brand-red), rgba(217, 107, 134, 0.45));
  box-shadow: 0 4px 12px rgba(217, 107, 134, 0.16);
}

.story-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.84rem;
}

.category-pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 4px 10px;
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.content-layout {
  width: min(calc(100% - 32px), var(--max-width));
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  justify-content: center;
  padding: 56px 0 76px;
}

.content-layout.is-hidden {
  display: none;
}

.main-column {
  min-width: 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2 {
  position: relative;
  margin-bottom: 0;
  color: var(--text-title);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-red), rgba(217, 107, 134, 0.18));
}

.section-heading .eyebrow {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--brand-red-dark);
  background: var(--brand-red-soft);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
}

.section-description {
  max-width: 540px;
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

.search-box {
  display: grid;
  gap: 6px;
  min-width: 260px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.search-box input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 8px 12px;
  color: var(--text-main);
  background: var(--surface);
  outline: none;
}

.search-box input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.post-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--surface);
  transform: translateZ(0);
  transition:
    transform 680ms var(--ease-out),
    box-shadow 680ms var(--ease-out),
    border-color 680ms ease,
    background 680ms ease;
}

.post-card a,
.latest-post-card a {
  cursor: pointer;
}

.post-card:hover,
.latest-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 107, 134, 0.16);
  box-shadow: var(--shadow-card-hover);
}

.related-card:hover,
.popular-item:hover {
  border-color: rgba(215, 38, 61, 0.4);
}

.post-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--surface-soft);
}

.post-card img,
.article-hero img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.post-card-body {
  padding: 26px;
}

.post-card h3 {
  margin-bottom: 12px;
  color: var(--text-title);
  font-size: clamp(1.35rem, 2.05vw, 1.5rem);
  line-height: 1.22;
  letter-spacing: -0.025em;
  overflow-wrap: anywhere;
}

.post-card p {
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.68;
}

.post-card .post-meta {
  row-gap: 6px;
}

.read-more {
  color: var(--brand-red);
  font-weight: 800;
  text-decoration: none;
}

.read-more:hover {
  color: var(--brand-red-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.schedule-highlight-section {
  padding: 0 0 76px;
}

.schedule-highlight-section .section-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.section-link {
  justify-self: end;
  align-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--brand-red-dark);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 10px 24px rgba(47, 52, 66, 0.06);
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(12px) saturate(155%);
  -webkit-backdrop-filter: blur(12px) saturate(155%);
}

.section-link:hover {
  color: var(--text-title);
  background: rgba(255, 255, 255, 0.76);
}

.schedule-mini-grid {
  display: block;
}

.schedule-today-widget {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 40px rgba(47, 52, 66, 0.065);
  backdrop-filter: blur(18px) saturate(155%);
  -webkit-backdrop-filter: blur(18px) saturate(155%);
}

.schedule-today-widget h3 {
  margin: 0;
  color: var(--text-title);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.schedule-today-list {
  display: grid;
  gap: 8px;
}

.schedule-today-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: baseline;
  border-top: 1px solid rgba(47, 52, 66, 0.06);
  padding-top: 8px;
}

.schedule-today-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.schedule-today-time {
  color: #C95672;
  font-size: 0.9rem;
  font-weight: 850;
}

.schedule-today-title {
  min-width: 0;
  color: var(--text-title);
  font-weight: 800;
  line-height: 1.35;
}

.schedule-today-meta {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.35;
}

.schedule-page-hero {
  max-width: 860px;
  padding: 48px 0 18px;
}

.schedule-page-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
  color: var(--text-title);
  font-size: clamp(2.15rem, 3.6vw, 3.15rem);
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.schedule-page-hero p:not(.eyebrow):not(.schedule-vn-note) {
  max-width: 680px;
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.schedule-vn-note {
  margin-top: 8px;
  color: #7A6F73;
  font-size: 14px;
  font-weight: 750;
}

.schedule-day-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(50, 45, 60, 0.06);
  scrollbar-width: none;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.schedule-day-tabs::-webkit-scrollbar {
  display: none;
}

.schedule-day-tab,
.schedule-filter-btn {
  min-width: max-content;
  border: 0;
  border-radius: 999px;
  padding: 9px 13px;
  color: #766C73;
  background: transparent;
  font-weight: 750;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 220ms var(--ease-out),
    background 220ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.schedule-day-tab:hover,
.schedule-day-tab:focus-visible {
  color: #BF5F75;
}

.schedule-day-tab.is-active {
  color: #BF5F75;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 228, 234, 0.68));
  box-shadow:
    0 10px 20px rgba(191, 95, 117, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.schedule-days-section {
  padding: 0 0 14px;
}

.schedule-list-section {
  padding: 0 0 76px;
}

.schedule-count {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.schedule-list {
  display: grid;
  gap: 10px;
}

.schedule-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 28px rgba(45, 40, 55, 0.055);
}

.schedule-time {
  color: #BF5F75;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.2;
}

.schedule-main {
  min-width: 0;
}

.schedule-main h3 {
  margin: 0 0 4px;
  color: #2F3442;
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.schedule-main p {
  margin: 0;
  color: #6F7E95;
  font-size: 13.5px;
  line-height: 1.45;
}

.schedule-status {
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 800;
  color: #B5536B;
  background: #F8E6EB;
  white-space: nowrap;
}

.schedule-empty {
  display: grid;
  min-height: 110px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  padding: 18px;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  box-shadow: 0 10px 32px rgba(35, 40, 60, 0.05);
}

.schedule-empty strong,
.schedule-empty span {
  display: block;
}

.schedule-empty strong {
  margin-bottom: 4px;
  color: var(--text-title);
}

.sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
  position: sticky;
  top: 96px;
}

.sidebar-block {
  border-radius: 30px;
  padding: 22px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
  box-shadow:
    0 18px 52px rgba(31, 41, 64, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.sidebar-block h2 {
  margin-bottom: 14px;
  color: var(--text-title);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-list,
.popular-list {
  display: grid;
  gap: 10px;
}

.category-list a,
.popular-item {
  display: grid;
  gap: 8px;
  border: 1px solid var(--border-softer);
  border-radius: 18px;
  padding: 16px;
  background: rgba(252, 251, 250, 0.88);
  color: var(--text-main);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-list a:hover,
.popular-item:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 107, 134, 0.16);
  background: rgba(255, 255, 255, 0.86);
}

.category-list span,
.popular-item span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(248, 250, 252, 0.08);
  color: #F8FAFC;
  background: var(--brand-navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 26px 0;
}

.site-footer strong {
  display: block;
  margin-bottom: 6px;
  color: #F8FAFC;
  font-size: 1.1rem;
}

.site-footer p {
  max-width: 620px;
  margin-bottom: 0;
  color: #CBD5E1;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 700;
}

.site-footer a {
  color: #CBD5E1;
  text-decoration: none;
}

.site-footer a:hover {
  color: #FFFFFF;
}

.loading-box,
.empty-state {
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid var(--border-softer);
  border-radius: 28px;
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.42));
  background-size: 220% 100%;
  text-align: center;
  padding: 22px;
}

.loading-box {
  min-height: 320px;
  animation: skeletonShimmer 1.4s ease-in-out infinite;
}

@keyframes skeletonShimmer {
  0% {
    background-position: 120% 0;
  }

  100% {
    background-position: -120% 0;
  }
}

.empty-state {
  grid-column: 1 / -1;
}

.empty-state strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text-title);
  font-size: 1.08rem;
}

.article-shell {
  width: min(calc(100% - 32px), var(--max-width));
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(280px, 300px);
  max-width: 100%;
  gap: 42px;
  align-items: start;
  justify-content: center;
  padding: 46px 0 76px;
}

.article-main {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 34px;
  padding: 44px clamp(32px, 4vw, 54px);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.article-header {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 16px;
}

.article-header h1 {
  max-width: 760px;
  margin-top: 0;
  margin-bottom: 22px;
  color: var(--text-title);
  overflow-wrap: anywhere;
  font-size: clamp(2.25rem, 3vw, 3.25rem);
  font-weight: 780;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.article-summary {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.72;
  overflow-wrap: anywhere;
}

.article-header .post-meta {
  gap: 8px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.article-header .post-meta span {
  color: var(--text-muted);
}

.article-hero {
  width: 100%;
  max-width: 780px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 28px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: 0 22px 60px rgba(31, 41, 64, 0.1);
}

.article-body {
  width: 100%;
  max-width: var(--content-width);
  min-width: 0;
  margin: 0 auto;
  color: var(--text-body);
  font-size: 1.125rem;
  line-height: 1.82;
}

.article-body h2,
.article-body h3 {
  margin: 48px 0 18px;
  color: #243044;
  font-weight: 780;
}

.article-body h2,
.article-body h3,
.article-body p,
.article-body li,
.toc a,
.related-card {
  overflow-wrap: anywhere;
}

.article-body h2 {
  border-left: 4px solid var(--brand-red);
  padding-left: 16px;
  font-size: clamp(1.625rem, 2.2vw, 2.125rem);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.article-body h3 {
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  margin: 0 0 22px;
}

.article-body ul,
.article-body ol {
  padding-left: 24px;
}

.article-body blockquote {
  border-left: 4px solid var(--brand-red);
  border-radius: 0 18px 18px 0;
  padding: 14px 18px;
  color: var(--text-soft);
  background: var(--brand-red-soft);
}

.article-body strong,
.article-body b {
  color: var(--text-title);
  font-weight: 600;
}

.article-body a,
.sources a,
.plain-page a {
  color: var(--brand-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-body a:hover,
.sources a:hover,
.plain-page a:hover {
  color: #1D4ED8;
}

.sources {
  width: 100%;
  max-width: var(--content-width);
  margin: 26px auto 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.sources h2 {
  font-size: 1.05rem;
}

.sources ol {
  margin-bottom: 0;
}

.toc {
  width: 100%;
  max-width: var(--content-width);
  min-width: 0;
  margin: 0 auto 28px;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 18px 20px;
  background: var(--surface-soft);
}

.toc h2 {
  margin: 0 0 12px;
  color: var(--text-title);
  font-size: 1rem;
}

.toc ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.toc a {
  color: var(--text-soft);
  font-weight: 700;
  text-decoration: none;
}

.toc a:hover {
  color: var(--brand-red);
  text-decoration: none;
}

.post-image {
  max-width: min(100%, 760px);
  margin: 34px auto;
}

.post-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 28px;
  background: var(--surface-soft);
  box-shadow: 0 22px 60px rgba(31, 41, 64, 0.1);
}

.article-main .article-hero img,
.article-main .post-image img {
  cursor: pointer;
}

.post-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}

.video-note {
  margin: 1.5rem 0 0.75rem;
  color: var(--text-soft);
  font-size: 0.98rem;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 1rem 0 2rem;
  overflow: hidden;
  border-radius: var(--media-radius);
  background: #0f172a;
  box-shadow: 0 10px 24px rgba(31, 41, 64, 0.1);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.article-tools,
.author-note,
.related-section {
  max-width: var(--content-width);
  margin: 28px auto 0;
}

.article-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: var(--radius);
  padding: 0 12px;
  color: #FFFFFF;
  background: var(--brand-red);
  font-weight: 800;
  text-decoration: none;
}

.share-button:hover {
  background: var(--brand-red-dark);
}

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

.share-button.x {
  background: var(--brand-navy);
}

.author-note,
.related-section,
.plain-page {
  padding: 22px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.related-card {
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 16px;
  background: rgba(252, 251, 250, 0.88);
  color: var(--text-title);
  font-weight: 800;
  text-decoration: none;
  line-height: 1.45;
  transition: transform 180ms ease, background-color 180ms ease;
}

.related-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.86);
}

.plain-page {
  max-width: 820px;
  margin: 28px auto 44px;
}

.plain-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-page h2 {
  margin: 28px 0 10px;
}

.hide {
  display: none !important;
}

.adblock-note {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(420px, calc(100% - 32px));
  border: 1px solid #FED7AA;
  border-radius: 22px;
  padding: 14px 14px 14px 16px;
  color: #7C2D12;
  background: #FFF7ED;
  box-shadow: 0 20px 54px rgba(31, 41, 64, 0.12);
  backdrop-filter: blur(14px);
}

.adblock-note p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.adblock-note button {
  flex: 0 0 auto;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  padding: 0 13px;
  color: #FFFFFF;
  background: var(--brand-red);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.adblock-note button:hover {
  background: var(--brand-red-dark);
}

@media (max-width: 1120px) {
  .news-hero,
  .content-layout,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .news-hero {
    width: min(calc(100% - 32px), 860px);
    gap: 36px;
    padding-top: 54px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero-copy h1 {
    max-width: 620px;
  }

  .featured-story.featured-slider,
  .featured-card {
    justify-self: stretch;
    width: 100%;
  }

  .article-shell {
    width: min(calc(100% - 32px), 860px);
    gap: 28px;
    padding: 38px 0 64px;
  }

  .article-main {
    padding: 38px clamp(22px, 5vw, 42px);
  }

  .article-header h1 {
    font-size: clamp(2.1rem, 5vw, 3rem);
  }

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

}

@media (max-width: 900px) {
  .site-header {
    min-height: 56px;
  }

  .brand-mark,
  .site-logo-img-wrapper,
  .logo-img-wrapper,
  .header-avatar-wrapper {
    width: 40px;
    height: 40px;
  }

  .site-header.is-scrolled {
    min-height: 52px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 52px;
    padding: 6px 0;
  }

  .site-header.is-scrolled .brand-mark,
  .site-header.is-scrolled .site-logo-img-wrapper,
  .site-header.is-scrolled .logo-img-wrapper,
  .site-header.is-scrolled .header-avatar-wrapper {
    width: 36px;
    height: 36px;
  }

  .site-header.is-scrolled .brand-name,
  .site-header.is-scrolled .site-title {
    font-size: 15px;
  }

  .header-inner {
    min-height: 58px;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .main-nav {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 24px;
    padding: 6px;
    scrollbar-width: none;
  }

  .nav-glass-indicator {
    display: none;
  }

  .main-nav.has-glass-indicator a[aria-current="page"] {
    border-color: rgba(255, 255, 255, 0.46);
    background:
      radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.72), transparent 36%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(217, 107, 134, 0.07));
    box-shadow:
      0 10px 24px rgba(31, 41, 64, 0.055),
      inset 0 1px 0 rgba(255, 255, 255, 0.74),
      inset 0 -1px 0 rgba(201, 60, 97, 0.03);
  }

  .main-nav.has-glass-indicator a[aria-current="page"]::after {
    display: block;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 36px;
    display: flex;
    align-items: center;
    padding: 9px 12px;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .news-hero {
    width: min(calc(100% - 28px), 560px);
    max-width: 100%;
    gap: 28px;
    padding: 36px 0 34px;
    overflow: hidden;
  }

  .news-hero::before {
    width: 340px;
    height: 260px;
    inset: 34% -20% auto auto;
    opacity: 0.52;
  }

  .hero-copy {
    gap: 14px;
    padding: 0;
  }

  .hero-copy h1 {
    font-size: clamp(1.85rem, 7.4vw, 2.35rem);
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .hero-copy p:last-child {
    font-size: 0.94rem;
    line-height: 1.65;
  }

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

  .content-layout {
    width: min(calc(100% - 28px), 560px);
    padding: 38px 0 52px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .search-box {
    min-width: 0;
  }

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

  .post-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .schedule-highlight-section {
    width: min(calc(100% - 28px), 560px);
    padding-bottom: 54px;
  }

  .schedule-highlight-section .section-heading,
  .schedule-mini-grid {
    grid-template-columns: 1fr;
  }

  .section-link {
    justify-self: start;
  }

  .schedule-page-hero,
  .schedule-days-section,
  .schedule-list-section {
    width: min(calc(100% - 28px), 560px);
  }

  .schedule-page-hero {
    padding: 36px 0 20px;
  }

  .schedule-page-hero h1 {
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .schedule-day-tabs {
    border-radius: 22px;
  }

  .schedule-day-tab {
    padding: 0 10px;
    font-size: 0.88rem;
    min-height: 36px;
  }

  .schedule-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 15px;
  }

  .schedule-time {
    font-size: 16px;
  }

  .schedule-status {
    justify-self: start;
  }

  .schedule-today-widget {
    padding: 16px;
  }

  .schedule-today-row {
    grid-template-columns: 62px 1fr;
    gap: 8px;
  }

  .footer-grid {
    align-items: start;
  }

  .article-body {
    font-size: 1.0625rem;
    line-height: 1.78;
  }

  .article-header h1 {
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 780;
    margin-bottom: 18px;
  }

  .article-summary {
    font-size: 0.98rem;
  }

  .article-shell {
    width: min(calc(100% - 28px), 560px);
    gap: 24px;
    padding: 28px 0 52px;
  }

  .featured-story,
  .featured-card,
  .featured-slide,
  .post-card,
  .article-main,
  .sidebar-block,
  .author-note,
  .related-section,
  .plain-page {
    border-radius: 22px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .featured-story.featured-slider {
    min-height: auto;
    overflow: hidden;
  }

  .featured-card {
    border-radius: 22px;
  }

  .featured-body h2,
  .post-card h3,
  .hero-copy h1 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .featured-media {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .article-main {
    padding: 24px 18px;
  }

  .article-body h2,
  .article-body h3 {
    margin-top: 42px;
  }

  .article-body h2 {
    padding-left: 12px;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
  }

  .featured-body,
  .post-card-body {
    padding: 22px;
  }

  .featured-card .featured-body {
    padding-bottom: 50px;
  }

  .featured-body h2 {
    max-width: 16ch;
    font-size: clamp(1.65rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  .featured-dots {
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
  }

  .featured-slide {
    transform: translate3d(14px, 0, 0) scale(0.985);
    transition:
      opacity 680ms var(--ease-out),
      transform 740ms var(--ease-out);
  }

  .featured-slide.is-leaving {
    transform: translate3d(-14px, 0, 0) scale(0.985);
  }

  .article-hero,
  .post-image img,
  .video-embed {
    border-radius: 22px;
  }

  .adblock-note {
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
    border-radius: 18px;
    padding: 12px;
  }
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .main-nav,
  .sidebar-block,
  .featured-card {
    background: rgba(255, 255, 255, 0.94);
  }
}

@media (hover: none) {
  .featured-card:hover,
  .post-card:hover,
  .latest-post-card:hover {
    transform: none;
  }

  .featured-card:hover img,
  .post-card:hover img {
    transform: none;
    filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .main-nav a {
    transform: none !important;
  }

  .nav-glass-indicator {
    display: none;
  }

  .featured-slide {
    transition: none !important;
    transform: none !important;
    will-change: auto;
  }

  .featured-slider .featured-slide:not(.is-active) {
    display: none;
  }

  .featured-card:hover,
  .post-card:hover,
  .latest-post-card:hover {
    transform: none;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 1rem;
  }

  .featured-media {
    aspect-ratio: 16 / 10;
  }

  .featured-body,
  .post-card-body {
    padding: 20px;
  }

  .featured-card .featured-body {
    padding-bottom: 40px;
  }

  .share-button {
    width: 100%;
  }
}
