:root {
  --newsroom-accent: #c60c30;
  --newsroom-accent-dark: #7f0b22;
  --newsroom-accent-soft: #f8d8df;
  --newsroom-bg: #f3f0ea;
  --newsroom-surface: #ffffff;
  --newsroom-surface-soft: #faf8f4;
  --newsroom-ink: #121212;
  --newsroom-text: #232323;
  --newsroom-muted: #66615a;
  --newsroom-border: #e7e0d5;
  --newsroom-shadow: 0 16px 50px rgba(18, 18, 18, 0.08);
  --newsroom-shadow-soft: 0 8px 24px rgba(18, 18, 18, 0.05);
  --newsroom-serif: Georgia, "Times New Roman", serif;
  --newsroom-sans: Inter, Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(198, 12, 48, 0.06), transparent 24%),
    linear-gradient(180deg, #f7f3ec 0%, var(--newsroom-bg) 260px);
  color: var(--newsroom-text);
  font-family: var(--newsroom-sans);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; transition: color .18s ease, opacity .18s ease, transform .18s ease; }
a:hover { color: var(--newsroom-accent); }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.container--narrow { width: min(860px, calc(100% - 32px)); margin: 0 auto; }
h1, h2, h3, h4, h5, h6, .site-title {
  font-family: var(--newsroom-sans);
}

.site-topbar {
  background: linear-gradient(90deg, #191716 0%, #211d1c 60%, #2a0d14 100%);
  color: rgba(255,255,255,0.84);
  font-size: .92rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-topbar__inner { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(18,18,18,.08);
}
.site-header__inner, .site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 22px 0;
}
.site-footer {
  margin-top: 56px;
  background: #181716;
  color: rgba(255,255,255,.82);
}
.custom-logo-link img { max-height: 56px; width: auto; }
.site-branding { max-width: 640px; }
.site-title {
  display: inline-block;
  font-family: var(--newsroom-sans);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: .98;
  letter-spacing: -.03em;
}
.site-tagline {
  margin: 8px 0 0;
  color: var(--newsroom-muted);
  max-width: 620px;
}
.primary-nav ul, .footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0;
  padding: 0;
}
.primary-nav a, .footer-nav a {
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.primary-nav a:hover, .footer-nav a:hover { color: var(--newsroom-accent); }
.site-home, .site-main, .single-news { padding-top: 30px; }
.section-card, .news-card, .article-full {
  background: var(--newsroom-surface);
  border: 1px solid var(--newsroom-border);
  border-radius: 26px;
  box-shadow: var(--newsroom-shadow-soft);
}
.section-card { padding: 26px; margin-bottom: 24px; }
.section-heading {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.section-heading h2, .section-heading h3 {
  margin: 0;
  font-family: var(--newsroom-sans);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.section-heading--split a, .section-heading--split span {
  color: var(--newsroom-muted);
  font-weight: 700;
  font-size: .95rem;
}
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.homepage-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .85fr);
  gap: 24px;
  align-items: stretch;
  background: linear-gradient(135deg, #fff 0%, #fff8f3 58%, #f8d9df 100%);
  box-shadow: var(--newsroom-shadow);
}
.homepage-lead__title {
  margin: 0 0 16px;
  font-family: var(--newsroom-sans);
  font-size: clamp(2.6rem, 6vw, 4.9rem);
  line-height: .92;
  letter-spacing: -.055em;
  color: var(--newsroom-ink);
}
.homepage-lead__text {
  font-size: 1.12rem;
  color: var(--newsroom-muted);
  max-width: 720px;
}
.homepage-lead__actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.homepage-lead__stamp {
  display: inline-flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,18,18,.08);
  background: rgba(255,255,255,.75);
  font-weight: 700;
  color: var(--newsroom-muted);
}
.homepage-lead__meta {
  display: grid;
  gap: 14px;
}
.homepage-lead__meta > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(18,18,18,.06);
}
.homepage-lead__meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--newsroom-accent);
}
.homepage-lead__meta span { color: var(--newsroom-muted); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--newsroom-accent);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .84rem;
  font-weight: 800;
}
.button-primary, .newsletter-form button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--newsroom-accent) 0%, var(--newsroom-accent-dark) 100%);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(198, 12, 48, 0.22);
}
.button-primary:hover, .newsletter-form button:hover { color: #fff; transform: translateY(-1px); }

.breaking-news {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  overflow: hidden;
}
.breaking-news__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--newsroom-accent);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(198, 12, 48, 0.18);
}
.breaking-news__items {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.breaking-news__items::-webkit-scrollbar { display: none; }
.breaking-news__items a {
  white-space: nowrap;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--newsroom-surface-soft);
  border: 1px solid var(--newsroom-border);
  font-weight: 700;
}

.homepage-top, .homepage-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(310px, .9fr);
  gap: 24px;
  margin-bottom: 24px;
}
.hero-story {
  padding: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fef5f6 100%);
  box-shadow: var(--newsroom-shadow);
}
.hero-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: center;
}
.hero-story__title {
  margin: 0 0 16px;
  font-family: var(--newsroom-sans);
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  line-height: .95;
  letter-spacing: -.05em;
}
.hero-story__excerpt {
  color: var(--newsroom-muted);
  font-size: 1.08rem;
  margin-bottom: 24px;
}
.hero-story__grid img, .category-showcase__image img, .news-card__image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.digest-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.digest-card {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
  border: 1px solid var(--newsroom-border);
}
.digest-card h3 {
  margin: 8px 0 10px;
  font-family: var(--newsroom-sans);
  font-size: 1.35rem;
  line-height: 1.12;
}
.digest-card p:last-child { color: var(--newsroom-muted); margin-bottom: 0; }
.homepage-top__rail {
  background: linear-gradient(180deg, #fff 0%, #f8f3ed 100%);
  box-shadow: var(--newsroom-shadow-soft);
}
.rail-list { display: grid; gap: 18px; }
.rail-list__item, .category-showcase__compact {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--newsroom-border);
}
.rail-list__item:last-child, .category-showcase__compact:last-child { border-bottom: 0; padding-bottom: 0; }
.rail-list__meta, .news-card__meta, .article-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--newsroom-muted);
  font-size: .92rem;
}
.rail-list__item h3, .category-showcase__compact h3 {
  margin: 6px 0 8px;
  font-family: var(--newsroom-sans);
  font-size: 1.2rem;
  line-height: 1.18;
}
.rail-list__item p:last-child, .category-showcase__compact p:last-child { color: var(--newsroom-muted); margin-bottom: 0; }

.homepage-feature-grid {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 24px;
}
.trending-news, .editors-picks { height: 100%; }
.trending-list {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 14px;
}
.trending-list li::marker { color: var(--newsroom-accent); font-weight: 800; }
.trending-list a { font-weight: 700; }

.news-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.news-card:hover { transform: translateY(-2px); box-shadow: var(--newsroom-shadow); }
.news-card__content { padding: 18px; }
.news-card__title {
  margin: 8px 0 10px;
  font-family: var(--newsroom-sans);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.news-card__excerpt { color: var(--newsroom-muted); margin: 0; }
.category-showcase {
  background: linear-gradient(180deg, #fff 0%, #faf7f3 100%);
}
.category-showcase__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .85fr);
  gap: 22px;
}
.category-showcase__lead {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(0, 1fr);
  gap: 18px;
}
.category-showcase__content h3 {
  margin: 8px 0 10px;
  font-family: var(--newsroom-sans);
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  line-height: 1.08;
}
.category-showcase__content p { color: var(--newsroom-muted); }
.latest-grid--luxury {
  background: linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
}
.newsletter-cta {
  background: linear-gradient(180deg, #171615 0%, #241c1d 100%);
  color: #fff;
  box-shadow: var(--newsroom-shadow);
}
.newsletter-cta h2 {
  font-family: var(--newsroom-sans);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.06;
}
.newsletter-cta p { color: rgba(255,255,255,.76); }
.newsletter-form { display: flex; flex-wrap: wrap; gap: 12px; }
.newsletter-form input {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.58); }
.archive-header h1 {
  margin: 0 0 8px;
  font-family: var(--newsroom-sans);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: .98;
}
.article-full {
  padding: 34px;
  box-shadow: var(--newsroom-shadow);
}
.article-header h1 {
  margin: 0 0 14px;
  font-family: var(--newsroom-sans);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .94;
  letter-spacing: -.05em;
}
.article-subtitle {
  margin-top: 0;
  color: var(--newsroom-muted);
  font-size: 1.24rem;
}
.article-image { margin: 26px 0; }
.article-image img { border-radius: 20px; }
.article-content { font-size: 1.09rem; }
.article-content p { margin: 0 0 1.2em; }
.ad-slot {
  margin: 16px 0;
  padding: 14px;
  border-radius: 16px;
  border: 1px dashed #d2b96d;
  background: #fbf5e2;
}
.footer-nav a, .site-footer p { color: rgba(255,255,255,.82); }

@media (max-width: 1100px) {
  .homepage-lead,
  .homepage-top,
  .homepage-bottom,
  .homepage-feature-grid,
  .hero-story__grid,
  .category-showcase__grid,
  .category-showcase__lead {
    grid-template-columns: 1fr;
  }
  .digest-strip__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .site-header__inner,
  .site-footer__inner,
  .site-topbar__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .breaking-news { grid-template-columns: 1fr; }
  .site-header { position: static; }
}
