: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; }
}

/* Newsroom Pro 1.3 - sober krant/editorial ontwerp, geinspireerd op Nederlandse kwaliteitskranten */
:root {
  --newsroom-accent: #b00020;
  --newsroom-accent-dark: #790016;
  --newsroom-accent-soft: #f2dedb;
  --newsroom-bg: #f5f1e8;
  --newsroom-surface: #fffdf8;
  --newsroom-surface-soft: #f8f2e7;
  --newsroom-ink: #111111;
  --newsroom-text: #202020;
  --newsroom-muted: #655f56;
  --newsroom-border: #d9d0c2;
  --newsroom-shadow: 0 18px 45px rgba(17, 17, 17, 0.07);
  --newsroom-shadow-soft: 0 8px 22px rgba(17, 17, 17, 0.045);
  --newsroom-sans: Arial, Helvetica, "Nimbus Sans", sans-serif;
}

body {
  background: var(--newsroom-bg);
  color: var(--newsroom-text);
  font-family: var(--newsroom-sans);
}

h1, h2, h3, h4, h5, h6,
.site-title,
.homepage-lead__title,
.hero-story__title,
.news-card__title,
.article-header h1,
.section-heading h2,
.section-heading h3 {
  font-family: var(--newsroom-sans) !important;
  font-weight: 800;
}

.site-topbar {
  background: #111;
  border-bottom: 4px solid var(--newsroom-accent);
}
.site-header {
  background: rgba(255, 253, 248, 0.96);
  border-bottom: 1px solid #bdb3a5;
}
.site-header__inner {
  padding: 18px 0 16px;
  align-items: flex-end;
}
.site-title {
  color: var(--newsroom-accent);
  letter-spacing: -0.055em;
  text-transform: lowercase;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
}
.site-tagline {
  color: #3a342d;
  font-size: .98rem;
}
.primary-nav ul {
  gap: 6px 18px;
  border-top: 1px solid var(--newsroom-border);
  border-bottom: 1px solid var(--newsroom-border);
  padding: 10px 0;
}
.primary-nav a {
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.section-card,
.news-card,
.article-full {
  border-radius: 0;
  background: var(--newsroom-surface);
  border-color: var(--newsroom-border);
  box-shadow: none;
}
.section-card {
  padding: 24px;
  border-top: 3px solid #171717;
}
.section-heading {
  border-bottom: 1px solid var(--newsroom-border);
  padding-bottom: 12px;
}
.section-heading h2,
.section-heading h3 {
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.homepage-lead {
  background: var(--newsroom-surface);
  border-top: 6px solid var(--newsroom-accent);
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .75fr);
}
.homepage-lead__title {
  color: var(--newsroom-accent);
  text-transform: lowercase;
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.07em;
}
.homepage-lead__meta > div {
  border-radius: 0;
  background: var(--newsroom-surface-soft);
  border-color: var(--newsroom-border);
}
.homepage-lead__meta strong {
  color: var(--newsroom-accent);
}
.button-primary,
.newsletter-form button {
  border-radius: 0;
  background: var(--newsroom-accent);
  box-shadow: none;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.homepage-lead__stamp,
.breaking-news__label,
.breaking-news__items a {
  border-radius: 0;
}
.breaking-news {
  border-top-color: var(--newsroom-accent);
}
.breaking-news__label {
  background: var(--newsroom-accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.homepage-top {
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .85fr);
}
.hero-story {
  background: var(--newsroom-surface);
  border-top: 6px solid #171717;
}
.hero-story__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}
.hero-story__title {
  font-size: clamp(2.4rem, 5.8vw, 5rem);
  letter-spacing: -0.065em;
  line-height: .92;
}
.hero-story__excerpt,
.article-subtitle {
  color: #3d3730;
}
.hero-story__grid img,
.category-showcase__image img,
.news-card__image img,
.article-image img {
  border-radius: 0;
  filter: saturate(.95) contrast(1.02);
}

.digest-card,
.homepage-top__rail,
.category-showcase,
.latest-grid--luxury {
  background: var(--newsroom-surface);
}
.digest-card {
  border-radius: 0;
  border-color: var(--newsroom-border);
  border-top: 2px solid var(--newsroom-border);
}
.digest-card h3,
.rail-list__item h3,
.category-showcase__compact h3,
.category-showcase__content h3 {
  font-family: var(--newsroom-sans) !important;
  font-weight: 800;
  letter-spacing: -.03em;
}
.rail-list__item,
.category-showcase__compact {
  border-bottom-color: #c9beae;
}
.rail-list__meta,
.news-card__meta,
.article-meta {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .78rem;
}
.trending-list li::marker {
  color: var(--newsroom-accent);
}
.news-card {
  border-top: 3px solid #171717;
}
.news-card:hover {
  transform: none;
  box-shadow: var(--newsroom-shadow-soft);
}
.news-card__title {
  letter-spacing: -.04em;
}
.category-showcase {
  border-top-color: var(--newsroom-accent);
}
.newsletter-cta {
  background: #151515;
  border-top-color: var(--newsroom-accent);
}
.archive-header h1,
.article-header h1 {
  color: var(--newsroom-ink);
  letter-spacing: -0.065em;
}
.article-full {
  border-top: 6px solid #171717;
}
.article-content {
  font-size: 1.08rem;
  max-width: 720px;
}
.ad-slot {
  border-radius: 0;
}

@media (max-width: 900px) {
  .primary-nav ul {
    border: 0;
    padding: 0;
  }
  .site-header__inner {
    align-items: flex-start;
  }
}

/* Newsroom Pro 1.4 - cleaner NRC-achtige v3: minder grote koppen, premiumblok verwijderd */
:root {
  --newsroom-bg: #f4efe6;
  --newsroom-surface: #fffdf8;
  --newsroom-border: #d6ccbd;
  --newsroom-accent: #a40d1f;
  --newsroom-accent-dark: #7a0715;
}
.site-home, .site-main, .single-news { padding-top: 22px; }
.container { width: min(1180px, calc(100% - 36px)); }
.site-title { font-size: clamp(2rem, 4.4vw, 3.35rem); }
.site-tagline { margin-top: 4px; font-size: .92rem; }
.site-header__inner { padding: 14px 0 12px; }
.primary-nav a { font-size: .82rem; }
.section-card { padding: 21px; margin-bottom: 20px; border-top-width: 2px; }
.section-heading { margin-bottom: 15px; padding-bottom: 10px; }
.section-heading h2, .section-heading h3 { font-size: clamp(1.05rem, 1.55vw, 1.38rem); letter-spacing: .015em; }
.breaking-news { padding: 14px 16px; }
.breaking-news__label { padding: 7px 10px; font-size: .76rem; }
.breaking-news__items a { padding: 7px 10px; font-size: .88rem; }
.homepage-top { grid-template-columns: minmax(0, 1.62fr) minmax(300px, .8fr); gap: 20px; }
.hero-story { padding: 24px; border-top-width: 4px; }
.hero-story__grid { gap: 24px; }
.hero-story__title { font-size: clamp(1.9rem, 4vw, 3.35rem); line-height: 1; letter-spacing: -.05em; }
.hero-story__excerpt { font-size: 1rem; margin-bottom: 18px; }
.eyebrow { font-size: .75rem; margin-bottom: 9px; }
.button-primary, .newsletter-form button { padding: 11px 15px; font-size: .82rem; }
.digest-strip__grid { gap: 14px; }
.digest-card { padding: 14px; }
.digest-card h3 { font-size: 1.05rem; line-height: 1.16; }
.digest-card p { font-size: .92rem; }
.homepage-top__rail .section-heading h2 { font-size: 1rem; }
.rail-list { gap: 14px; }
.rail-list__item h3, .category-showcase__compact h3 { font-size: 1rem; line-height: 1.2; letter-spacing: -.02em; }
.rail-list__item p { font-size: .9rem; line-height: 1.45; }
.homepage-feature-grid, .homepage-bottom { gap: 20px; margin-bottom: 20px; }
.trending-list { gap: 10px; font-size: .94rem; }
.news-card { border-top-width: 2px; }
.news-card__content { padding: 14px; }
.news-card__title { font-size: 1.12rem; line-height: 1.17; letter-spacing: -.025em; }
.news-card__excerpt { font-size: .92rem; line-height: 1.48; }
.news-card__meta, .rail-list__meta, .article-meta { font-size: .72rem; }
.category-showcase__grid { grid-template-columns: minmax(0, 1.25fr) minmax(250px, .75fr); gap: 18px; }
.category-showcase__lead { gap: 16px; }
.category-showcase__content h3 { font-size: clamp(1.25rem, 1.9vw, 1.58rem); line-height: 1.12; letter-spacing: -.03em; }
.category-showcase__content p { font-size: .95rem; line-height: 1.5; }
.newsletter-cta h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.newsletter-cta p { font-size: .94rem; }
.archive-header h1 { font-size: clamp(1.8rem, 3.5vw, 2.55rem); }
.article-full { padding: 28px; border-top-width: 4px; }
.article-header h1 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1; letter-spacing: -.052em; }
.article-subtitle { font-size: 1.08rem; }
.article-content { font-size: 1.03rem; line-height: 1.72; }
@media (max-width: 1100px) {
  .homepage-top, .homepage-bottom, .homepage-feature-grid, .hero-story__grid, .category-showcase__grid, .category-showcase__lead { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .container { width: min(100% - 24px, 1180px); }
  .section-card { padding: 16px; }
  .hero-story { padding: 18px; }
  .hero-story__title { font-size: clamp(1.75rem, 8vw, 2.35rem); }
  .article-header h1 { font-size: clamp(1.9rem, 8vw, 2.55rem); }
  .site-title { font-size: clamp(1.85rem, 10vw, 2.6rem); }
}

/* Newsroom Pro 1.5 - Lees ook blok en rustigere breaking news */
.breaking-news {
  background: var(--newsroom-surface);
  border-top-color: var(--newsroom-accent);
}
.breaking-news__items {
  gap: 18px;
  padding-bottom: 0;
}
.breaking-news__items a {
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
  font-size: .9rem;
  line-height: 1.35;
}
.breaking-news__items a + a::before {
  content: "•";
  color: var(--newsroom-accent);
  margin-right: 18px;
}

.related-news {
  margin-top: 24px;
}
.related-news__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.related-news__item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--newsroom-border);
}
.related-news__item:nth-last-child(-n+2) {
  border-bottom: 0;
  padding-bottom: 0;
}
.related-news__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.related-news__meta {
  margin: 0 0 5px;
  color: var(--newsroom-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .72rem;
  font-weight: 700;
}
.related-news__content h3 {
  margin: 0 0 7px;
  font-size: 1rem;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.related-news__content p:last-child {
  margin: 0;
  color: var(--newsroom-muted);
  font-size: .9rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .related-news__grid {
    grid-template-columns: 1fr;
  }
  .related-news__item,
  .related-news__item:nth-last-child(-n+2) {
    grid-template-columns: 96px minmax(0, 1fr);
    border-bottom: 1px solid var(--newsroom-border);
    padding-bottom: 14px;
  }
  .related-news__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

/* Newsroom Pro NRC v5 - rubriek/thema labels */
.newsroom-term-labels {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin: 8px 0 10px;
}
.newsroom-term-label {
  --label-color: var(--newsroom-accent);
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 4px 8px;
  border: 1px solid color-mix(in srgb, var(--label-color) 36%, var(--newsroom-border));
  border-left: 3px solid var(--label-color);
  background: color-mix(in srgb, var(--label-color) 9%, var(--newsroom-surface));
  color: color-mix(in srgb, var(--label-color) 72%, #111111);
  font-size: .68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-decoration: none;
}
.newsroom-term-label:hover {
  background: color-mix(in srgb, var(--label-color) 9%, var(--newsroom-surface));
  border-color: color-mix(in srgb, var(--label-color) 36%, var(--newsroom-border));
  border-left-color: var(--label-color);
  color: color-mix(in srgb, var(--label-color) 72%, #111111);
}
.hero-story .newsroom-term-labels {
  margin: 2px 0 12px;
}
.article-header .newsroom-term-labels {
  justify-content: center;
  margin: 14px 0 0;
}
.category-showcase__compact .newsroom-term-labels,
.rail-list .newsroom-term-labels {
  gap: 5px;
  margin: 6px 0 8px;
}
.category-showcase__compact .newsroom-term-label,
.rail-list .newsroom-term-label {
  font-size: .62rem;
  padding: 3px 6px;
}
@media (max-width: 700px) {
  .newsroom-term-label { font-size: .64rem; padding: 4px 7px; }
  .article-header .newsroom-term-labels { justify-content: flex-start; }
}

.newsletter-form {
  display: grid;
  gap: 12px;
}

.newsletter-form > input[type="email"] {
  min-width: 0;
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.45;
  color: #5c5148;
  grid-column: 1 / -1;
}

.newsletter-consent input {
  margin-top: 3px;
}

.newsletter-message {
  margin: 14px 0;
  padding: 11px 13px;
  border: 1px solid #ded2c5;
  background: #fff;
  font-size: 14px;
}

.newsletter-message--success {
  border-color: #9fb79f;
}

.newsletter-message--error {
  border-color: #cc9b9b;
}

/* v7 Paywall */
.newsroom-paywall-intro {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--newsroom-text);
  margin-bottom: 24px;
}
.newsroom-paywall-box {
  margin: 28px 0 10px;
  padding: 28px;
  border: 1px solid var(--newsroom-border);
  border-top: 4px solid var(--newsroom-accent);
  background: linear-gradient(180deg, #fff 0%, var(--newsroom-surface-soft) 100%);
  box-shadow: var(--newsroom-shadow-soft);
}
.newsroom-paywall-box__kicker {
  margin: 0 0 8px;
  color: var(--newsroom-accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
  font-weight: 800;
}
.newsroom-paywall-box h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.newsroom-paywall-box p {
  max-width: 620px;
}
.newsroom-paywall-box__button {
  margin-top: 8px;
}
.newsroom-paywall-box__note {
  font-size: .9rem;
  color: var(--newsroom-muted);
  margin-bottom: 0;
}

/* v9 SEO/GEO/Social polish */
.newsroom-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 22px;
  color: var(--newsroom-muted);
  font-size: .92rem;
  font-weight: 700;
}
.newsroom-breadcrumbs a { color: var(--newsroom-muted); }
.newsroom-breadcrumbs a:hover { color: var(--newsroom-accent); }
.newsroom-social-share {
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--newsroom-border);
}
.newsroom-social-share h2 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  letter-spacing: -.02em;
}
.newsroom-social-share div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.newsroom-social-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border: 1px solid var(--newsroom-border);
  background: var(--newsroom-surface-soft);
  font-weight: 800;
  font-size: .92rem;
}
.newsroom-social-share a:hover {
  background: #fff;
  border-color: var(--newsroom-accent);
}

/* Newsroom Pro NRC v12 - author bylines and author archives */
.newsroom-byline {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  margin: 18px 0 14px;
  padding: 14px 0;
  border-top: 1px solid var(--newsroom-border);
  border-bottom: 1px solid var(--newsroom-border);
}
.newsroom-byline__photo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--newsroom-border);
}
.newsroom-byline p { margin: 0; }
.newsroom-byline__label {
  color: var(--newsroom-muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
}
.newsroom-byline__name { font-weight: 800; line-height: 1.25; }
.newsroom-byline__title,
.newsroom-byline__bio {
  color: var(--newsroom-muted);
  font-size: .9rem;
  line-height: 1.4;
}
.author-hero {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}
.author-hero__photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--newsroom-border);
}
.author-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.05em;
}
.author-hero__title { margin: 0 0 10px; color: var(--newsroom-accent); font-weight: 800; }
.author-hero__bio { margin: 0; max-width: 760px; color: var(--newsroom-muted); font-size: 1.05rem; }
.news-card--author { overflow: hidden; }
.news-card--author .news-card__body { padding: 16px; }
.news-card--author h3 { margin: 6px 0 8px; font-size: 1.15rem; line-height: 1.16; }
.news-card--author p { color: var(--newsroom-muted); }
@media (max-width: 680px) {
  .author-hero { grid-template-columns: 1fr; text-align: left; }
  .author-hero__photo { width: 96px; height: 96px; }
}

/* v13 future-proof block editor alignment helpers */
.alignwide{max-width:1240px;margin-left:auto;margin-right:auto}.alignfull{width:100%;max-width:none}.wp-block-group.has-background{border-radius:0}.wp-block-button__link{border-radius:999px;font-weight:800}.breaking-news__items a{background:transparent;border-color:transparent;border-radius:0;padding-left:0;padding-right:18px}@media(max-width:700px){.homepage-lead__title,.hero-title,.article-header h1{font-size:clamp(2rem,10vw,3rem);letter-spacing:-.045em}}

/* Newsroom v16 - subtle article tags */
.newsroom-article-tags {
  margin: 34px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--newsroom-border);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}

.newsroom-article-tags__label {
  color: var(--newsroom-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.newsroom-article-tags__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.newsroom-article-tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid color-mix(in srgb, var(--newsroom-muted) 18%, transparent);
  background: color-mix(in srgb, var(--newsroom-muted) 8%, #ffffff);
  color: color-mix(in srgb, var(--newsroom-muted) 82%, #222222);
  font-size: .76rem;
  line-height: 1;
  font-weight: 700;
  text-decoration: none;
}

.newsroom-article-tag:hover {
  background: color-mix(in srgb, var(--newsroom-muted) 14%, #ffffff);
  color: var(--newsroom-ink);
}

@media (max-width: 700px) {
  .newsroom-article-tags { align-items: flex-start; flex-direction: column; }
}

/* v21 Liveblog */
.newsroom-liveblog {
  margin: 34px 0 28px;
  padding: 24px;
  border: 1px solid var(--newsroom-border);
  background: var(--newsroom-surface-soft);
  border-radius: 22px;
}
.newsroom-liveblog__header {
  margin-bottom: 18px;
  border-bottom: 1px solid var(--newsroom-border);
  padding-bottom: 14px;
}
.newsroom-liveblog__header h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.newsroom-liveblog__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.newsroom-liveblog__item {
  position: relative;
  padding: 18px 18px 18px 22px;
  background: #fff;
  border: 1px solid var(--newsroom-border);
  border-left: 4px solid var(--newsroom-accent);
  border-radius: 16px;
}
.newsroom-liveblog__item.is-pinned {
  background: #fffaf5;
}
.newsroom-liveblog__time {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: var(--newsroom-muted);
  font-size: .9rem;
  font-weight: 700;
}
.newsroom-liveblog__time span {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--newsroom-accent-soft);
  color: var(--newsroom-accent-dark);
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.newsroom-liveblog__item h3 {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.2;
}
.newsroom-liveblog__body p {
  margin: 0 0 10px;
}
.newsroom-liveblog__body p:last-child {
  margin-bottom: 0;
}

/* v25 Search upgrade */
.site-header__tools {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-search { position: relative; min-width: 240px; }
.newsroom-search { position: relative; display: flex; gap: 8px; align-items: stretch; }
.newsroom-search input[type="search"] {
  width: min(360px, 100%);
  border: 1px solid var(--newsroom-border);
  border-radius: 999px;
  background: #fff;
  padding: 11px 14px;
  font: inherit;
  color: var(--newsroom-text);
  outline: none;
}
.newsroom-search input[type="search"]:focus {
  border-color: var(--newsroom-accent);
  box-shadow: 0 0 0 3px rgba(198, 12, 48, .1);
}
.newsroom-search button,
.search-filter-form button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: var(--newsroom-ink);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.newsroom-search__suggestions {
  position: absolute;
  z-index: 90;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  min-width: 320px;
  background: #fff;
  border: 1px solid var(--newsroom-border);
  box-shadow: var(--newsroom-shadow);
  border-radius: 18px;
  overflow: hidden;
}
.newsroom-search__result {
  display: grid;
  gap: 2px;
  padding: 13px 15px;
  border-bottom: 1px solid var(--newsroom-border);
}
.newsroom-search__result:last-child { border-bottom: 0; }
.newsroom-search__result:hover { background: var(--newsroom-surface-soft); color: inherit; }
.newsroom-search__type {
  font-size: .72rem;
  color: var(--newsroom-accent);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
.newsroom-search__result strong { line-height: 1.25; color: var(--newsroom-ink); }
.newsroom-search__result small,
.newsroom-search__empty { color: var(--newsroom-muted); font-size: .9rem; }
.newsroom-search__empty { margin: 0; padding: 14px; }
.search-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.search-hero .newsroom-search { max-width: 760px; }
.search-hero .newsroom-search input[type="search"] { width: 100%; }
.search-filters { padding: 18px 22px; }
.search-filter-form {
  display: flex;
  align-items: end;
  gap: 14px;
  flex-wrap: wrap;
}
.search-filter-form label { display: grid; gap: 6px; font-weight: 800; color: var(--newsroom-muted); }
.search-filter-form select {
  min-width: 190px;
  border: 1px solid var(--newsroom-border);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font: inherit;
}
.search-results-grid { margin-top: 24px; }
.pagination-wrap { margin: 28px 0; }
.pagination-wrap .nav-links { display: flex; gap: 10px; flex-wrap: wrap; }
.pagination-wrap a,
.pagination-wrap span {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--newsroom-border);
  background: #fff;
}
.pagination-wrap .current { background: var(--newsroom-ink); color: #fff; }

@media (max-width: 900px) {
  .site-header__tools { width: 100%; justify-content: flex-start; }
  .site-search { width: 100%; }
  .newsroom-search { width: 100%; }
  .newsroom-search input[type="search"] { width: 100%; }
  .newsroom-search__suggestions { min-width: 0; }
  .search-filter-form { align-items: stretch; }
  .search-filter-form label,
  .search-filter-form select,
  .search-filter-form button { width: 100%; }
}


/* v28 Newsletter feedback */
.newsletter-message {
  scroll-margin-top: 96px;
  border-left-width: 4px;
  font-weight: 500;
}
.newsletter-message strong {
  margin-right: 4px;
}
.newsletter-message--success {
  background: #f3faf4;
  border-color: #6fa873;
  color: #235b2a;
}
.newsletter-message--error {
  background: #fff6f4;
  border-color: #c96b5f;
  color: #8f2e25;
}

/* v29 content types + performance-aware UI */
.newsroom-content-type-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--newsroom-accent);
}
.newsroom-content-type-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}
.article-header .newsroom-content-type-label {
  margin-bottom: 14px;
}
.news-card .newsroom-content-type-label {
  margin-bottom: 6px;
}


/* v35: external source logo */
.article-source { display:inline-flex; align-items:center; gap:6px; }
.article-source__logo { width:22px; height:22px; object-fit:contain; border-radius:3px; background:#fff; border:1px solid #e5e1dc; padding:2px; }

/* v39 paywall plan buttons */
.newsroom-paywall-plans {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}
.newsroom-paywall-box__secondary {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #d8d2c8;
  color: #222;
  background: #fff;
  text-decoration: none;
  font-size: 14px;
}
.newsroom-paywall-box__secondary:hover {
  border-color: #9b1c1f;
  color: #9b1c1f;
}

/* Newsroom Pro 1.47.2 - article polish and button readability */
.article-full--enhanced {
  background: var(--newsroom-surface, #fffdf8);
  border: 1px solid var(--newsroom-border, #d6ccbd);
  border-top: 4px solid var(--newsroom-ink, #171717);
  box-shadow: var(--newsroom-shadow-soft, 0 12px 34px rgba(0,0,0,.06));
}
.article-header--enhanced { border-bottom: 1px solid var(--newsroom-border, #d6ccbd); padding-bottom: 22px; margin-bottom: 24px; }
.article-kicker-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.newsroom-premium-pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 4px 9px; background: var(--newsroom-ink, #171717); color: #fff; font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .055em; }
.article-meta--enhanced { align-items: center; margin-top: 14px; }
.article-meta__dateline { color: var(--newsroom-ink, #171717); font-weight: 900; }
.article-source { display: inline-flex; align-items: center; gap: 6px; }
.article-source a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.article-source__logo { max-width: 56px; max-height: 24px; object-fit: contain; vertical-align: middle; }
.article-image--enhanced { margin: 24px 0; }
.article-image--enhanced img { width: 100%; height: auto; display: block; border-radius: 0; }
.article-image--enhanced figcaption { margin-top: 8px; color: var(--newsroom-muted, #6f665d); font-size: .86rem; line-height: 1.45; }
.article-summary-box { max-width: 720px; margin: 24px 0 26px; padding: 18px 20px; background: #fbf7ef; border: 1px solid var(--newsroom-border, #d6ccbd); border-left: 4px solid var(--newsroom-accent, #a40d1f); }
.article-summary-box h2 { margin: 0 0 10px; font-family: var(--newsroom-sans); font-size: .88rem; text-transform: uppercase; letter-spacing: .065em; }
.article-summary-box ul { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.article-summary-box li { line-height: 1.45; }
.article-content > p:first-child { font-size: 1.12em; line-height: 1.68; }
.button-primary,
.newsletter-form button,
.wp-block-button__link,
a.button,
button.button,
.read-more,
.newsroom-read-more,
.news-card .button-primary {
  color: #fff !important;
}
.button-primary:hover,
.button-primary:focus,
.newsletter-form button:hover,
.newsletter-form button:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
a.button:hover,
a.button:focus,
button.button:hover,
button.button:focus,
.read-more:hover,
.read-more:focus,
.newsroom-read-more:hover,
.newsroom-read-more:focus {
  color: #fff !important;
  background: var(--newsroom-accent-dark, #7a0715);
  border-color: var(--newsroom-accent-dark, #7a0715);
}
.button-secondary:hover,
.button-secondary:focus { color: var(--newsroom-accent-dark, #7a0715) !important; background: transparent; }
/* Laatste berichten: compactere koppen zodat de rail niet schreeuwerig wordt. */
.homepage-top__rail .rail-list__item h3,
.latest-grid .news-card__title,
.latest-grid--luxury .news-card__title,
.newsroom-latest-news .news-card__title,
.newsroom-home-latest .news-card__title {
  font-size: clamp(.96rem, 1.05vw, 1.12rem);
  line-height: 1.22;
  letter-spacing: -.018em;
}
.homepage-top__rail .rail-list__item p,
.newsroom-latest-news .news-card__excerpt,
.newsroom-home-latest .news-card__excerpt { font-size: .9rem; }
@media (max-width: 700px) {
  .article-full--enhanced { padding: 18px; }
  .article-summary-box { padding: 15px 16px; }
}


/* v1.47.3 refined newsletter signup */
.newsletter-cta.newsletter-cta--refined {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: clamp(20px, 4vw, 44px);
  align-items: center;
  background: linear-gradient(135deg, #fffaf2 0%, #f5efe5 100%);
  color: var(--newsroom-ink, #171717);
  border: 1px solid var(--newsroom-border, #d6ccbd);
  box-shadow: 0 16px 45px rgba(40, 29, 20, .08);
  padding: clamp(22px, 4vw, 42px);
}
.newsletter-cta--refined .newsletter-cta__content,
.newsletter-cta--refined .newsletter-cta__form {
  min-width: 0;
}
.newsletter-cta--refined .newsletter-cta__eyebrow {
  margin: 0 0 8px;
  color: var(--newsroom-accent, #a40d1f);
  font-family: var(--newsroom-sans);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.newsletter-cta--refined h2 {
  margin: 0 0 10px;
  color: var(--newsroom-ink, #171717);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -.035em;
}
.newsletter-cta--refined p {
  max-width: 54ch;
  margin: 0;
  color: var(--newsroom-muted, #6f665d);
  line-height: 1.6;
}
.newsletter-cta--refined .newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}
.newsletter-cta--refined .newsletter-form input[type="email"] {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid var(--newsroom-border, #d6ccbd);
  background: #fff;
  color: var(--newsroom-ink, #171717);
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02);
}
.newsletter-cta--refined .newsletter-form input[type="email"]::placeholder {
  color: #9a9086;
}
.newsletter-cta--refined .newsletter-form input[type="email"]:focus {
  border-color: var(--newsroom-accent, #a40d1f);
  outline: 3px solid color-mix(in srgb, var(--newsroom-accent, #a40d1f) 16%, transparent);
  outline-offset: 0;
}
.newsletter-cta--refined .newsletter-form button {
  height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border-color: var(--newsroom-accent, #a40d1f);
  background: var(--newsroom-accent, #a40d1f);
  color: #fff !important;
  white-space: nowrap;
  box-shadow: none;
}
.newsletter-cta--refined .newsletter-form button:hover,
.newsletter-cta--refined .newsletter-form button:focus {
  background: var(--newsroom-ink, #171717);
  border-color: var(--newsroom-ink, #171717);
  color: #fff !important;
}
.newsletter-cta--refined .newsletter-consent {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  margin-top: 2px;
  color: var(--newsroom-muted, #6f665d);
  font-size: .82rem;
  line-height: 1.45;
}
.newsletter-cta--refined .newsletter-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--newsroom-accent, #a40d1f);
}
.newsletter-cta--refined .newsletter-message {
  margin: 0 0 12px;
  border-radius: 14px;
  background: #fff;
}
@media (max-width: 780px) {
  .newsletter-cta.newsletter-cta--refined {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  .newsletter-cta--refined .newsletter-form {
    grid-template-columns: 1fr;
  }
  .newsletter-cta--refined .newsletter-form button {
    width: 100%;
  }
}

/* v1.47.7: homepage block title controls + newsletter layout hardening */
.newsletter-cta.newsletter-cta--refined,
.newsletter-cta--refined *,
.newsletter-cta--refined *::before,
.newsletter-cta--refined *::after {
  box-sizing: border-box;
}
.newsletter-cta--refined .newsletter-cta__form,
.newsletter-cta--refined .newsletter-form,
.newsletter-cta--refined .newsletter-form input[type="email"],
.newsletter-cta--refined .newsletter-form button {
  max-width: 100%;
}
.newsletter-cta--refined .newsletter-form button {
  min-width: 0;
}
.homepage-bottom__sidebar .newsletter-cta.newsletter-cta--refined,
.sidebar .newsletter-cta.newsletter-cta--refined,
aside .newsletter-cta.newsletter-cta--refined {
  grid-template-columns: 1fr;
  gap: 18px;
  padding: clamp(20px, 3vw, 30px);
}
.homepage-bottom__sidebar .newsletter-cta--refined .newsletter-form,
.sidebar .newsletter-cta--refined .newsletter-form,
aside .newsletter-cta--refined .newsletter-form {
  grid-template-columns: 1fr;
}
.homepage-bottom__sidebar .newsletter-cta--refined .newsletter-form button,
.sidebar .newsletter-cta--refined .newsletter-form button,
aside .newsletter-cta--refined .newsletter-form button {
  width: 100%;
}
@media (max-width: 1100px) {
  .newsletter-cta.newsletter-cta--refined {
    grid-template-columns: 1fr;
  }
  .newsletter-cta--refined .newsletter-form {
    grid-template-columns: 1fr;
  }
  .newsletter-cta--refined .newsletter-form button {
    width: 100%;
  }
}

/* Built-in Newsroom branding */
.newsroom-mode-logo-link{display:inline-flex;align-items:center;line-height:1;text-decoration:none}
.newsroom-mode-logo{display:block;width:auto;max-width:min(260px,58vw);height:42px;object-fit:contain}
@media(max-width:700px){.newsroom-mode-logo{height:34px;max-width:210px}}


/* Newsroom CMS premium brand/UI kit */
:root{--nr-primary:#0D1B2A;--nr-primary-2:#111827;--nr-accent:#E63946;--nr-blue:#2563EB;--nr-success:#22C55E;--nr-bg:#FFFFFF;--nr-surface:#F8FAFC;--nr-surface-2:#F1F5F9;--nr-border:#E5E7EB;--nr-text:#0F172A;--nr-muted:#6B7280;--nr-radius:14px;--nr-shadow:0 12px 32px rgba(15,23,42,.08);--nr-shadow-soft:0 6px 18px rgba(15,23,42,.06)}
[data-theme="dark"],body.newsroom-dark-mode{--nr-bg:#0B0F14;--nr-surface:#111827;--nr-surface-2:#162033;--nr-border:#243244;--nr-text:#FFFFFF;--nr-muted:#A7B0BE;--nr-shadow:0 12px 32px rgba(0,0,0,.35);background:#0B0F14;color:#fff}
@media(prefers-color-scheme:dark){body:not(.newsroom-light-mode){--nr-bg:#0B0F14;--nr-surface:#111827;--nr-surface-2:#162033;--nr-border:#243244;--nr-text:#FFFFFF;--nr-muted:#A7B0BE;--nr-shadow:0 12px 32px rgba(0,0,0,.35)}}
body{background:var(--nr-bg);color:var(--nr-text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif}.container{max-width:1180px}.site-topbar{background:var(--nr-primary);color:rgba(255,255,255,.82);border:0}.site-header{background:rgba(255,255,255,.88);backdrop-filter:saturate(160%) blur(18px);border-bottom:1px solid var(--nr-border);box-shadow:var(--nr-shadow-soft);position:sticky;top:0;z-index:50}.admin-bar .site-header{top:32px}@media(max-width:782px){.admin-bar .site-header{top:46px}}body.newsroom-dark-mode .site-header{background:rgba(11,15,20,.9)}.site-header__inner{min-height:86px;gap:28px}.site-branding{display:flex;align-items:center;gap:14px}.newsroom-mode-logo-link{display:inline-flex;align-items:center;text-decoration:none}.newsroom-mode-logo{display:block;width:min(360px,54vw);height:auto;max-height:64px;object-fit:contain}.newsroom-mode-logo--dark{display:none}body.newsroom-dark-mode .newsroom-mode-logo--light{display:none}body.newsroom-dark-mode .newsroom-mode-logo--dark{display:block}@media(prefers-color-scheme:dark){body:not(.newsroom-light-mode) .newsroom-mode-logo--light{display:none}body:not(.newsroom-light-mode) .newsroom-mode-logo--dark{display:block}}.newsroom-text-logo{font-weight:850;letter-spacing:.09em;color:var(--nr-text);font-size:1.2rem;text-transform:uppercase}.site-tagline{font-size:.78rem;color:var(--nr-muted);max-width:260px;margin:0}.primary-nav a{border-radius:999px;padding:.55rem .85rem;color:var(--nr-text);font-weight:650}.primary-nav a:hover,.primary-nav .current-menu-item>a{background:var(--nr-surface-2);color:var(--nr-blue)}.button,.wp-block-button__link,.newsletter-submit,.search-submit,button[type="submit"]{border-radius:10px!important;font-weight:750}.hero,.newsroom-hero,.section,.card,.article-card,.news-card,.site-main article{border-radius:var(--nr-radius)}.card,.article-card,.news-card,.home-section,.newsletter-box{background:var(--nr-surface);border:1px solid var(--nr-border);box-shadow:var(--nr-shadow-soft)}.article-card:hover,.news-card:hover{transform:translateY(-2px);box-shadow:var(--nr-shadow);transition:.18s ease}.section-title,h1,h2,h3{letter-spacing:-.03em}.kicker,.rubriek,.category-label{color:var(--nr-accent);font-weight:850;letter-spacing:.08em;text-transform:uppercase}.site-footer{background:var(--nr-primary);color:#fff}.newsroom-theme-toggle{border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.08);color:#fff;border-radius:999px;padding:.4rem .75rem;font-weight:700}.site-search input[type="search"]{border-radius:999px;border:1px solid var(--nr-border);background:var(--nr-surface);color:var(--nr-text);padding:.65rem 1rem}@media(max-width:760px){.site-header__inner{min-height:72px}.site-tagline{display:none}.newsroom-mode-logo{width:min(260px,68vw)}}

