/* ============================================================
   MeaVerba — Hoofdstijlblad
   Kleuren: Navy #0F1F3D  |  Blauw #2F57A0  |  Oranje #E88835
   Lettertypes: Playfair Display + Inter
   ============================================================ */

:root {
  --navy:   #0F1F3D;
  --blue:   #2F57A0;
  --orange: #E88835;
  --white:  #FFFFFF;
  --light:  #F2F5FA;
  --text:   #1C2438;
  --muted:  #5C6678;
  --border: #DDE3EE;
  --shadow: rgba(15, 31, 61, 0.10);

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --w:  1200px;
  --sp: 96px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img   { display: block; max-width: 100%; height: auto; }
a     { color: inherit; }
*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
}
h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.3;
}
p {
  font-size: clamp(0.975rem, 1.2vw, 1.0625rem);
  margin-bottom: 1.25em;
}
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

/* ===== LAYOUT ===== */
.container {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 48px;
}
.section     { padding: var(--sp) 0; }
.section--sm { padding: 64px 0; }
.section--xl { padding: 128px 0; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.bg-navy .eyebrow,
.bg-blue .eyebrow  { color: var(--orange); }
.bg-orange .eyebrow { color: rgba(255,255,255,.7); }

/* ===== SECTION HEAD ===== */
.section-head         { margin-bottom: 56px; }
.section-head.centered { text-align: center; }
.section-head .eyebrow { display: block; }
.section-head h2       { margin-top: 0; }
.section-head p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 18px;
}
.section-head.centered p { margin-left: auto; margin-right: auto; }
.bg-navy .section-head p { color: rgba(255,255,255,.6); }
.bg-blue  .section-head p { color: rgba(255,255,255,.7); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-decoration: none;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, border-color .18s, color .18s, transform .18s, box-shadow .18s;
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: #cc7520;
  border-color: #cc7520;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,136,53,.35);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn--ghost-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--ghost-blue:hover {
  background: var(--blue);
  color: var(--white);
}
.btn--white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  font-weight: 600;
}
.btn--white:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.arrow::after { content: ' →'; }

/* ===== SITE HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-transparent { background: transparent; }
.site-header.is-solid {
  background: var(--navy);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 6px 32px rgba(0,0,0,.28);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w);
  margin: 0 auto;
  padding: 12px 48px;
}
.site-logo            { text-decoration: none; flex-shrink: 0; }
.site-logo img        { height: 110px; width: auto; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.primary-nav a:not(.btn) {
  display: block;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  padding: 8px 14px;
  border-radius: 3px;
  transition: color .15s, background .15s;
}
.primary-nav a:not(.btn):hover,
.primary-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }
.primary-nav .btn     { margin-left: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  line-height: 0;
  position: relative;
  z-index: 910;
}
.nav-toggle .icon-close  { display: none; }
.nav-open .icon-open  { display: none; }
.nav-open .icon-close { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  max-width: var(--w);
  margin: 0 auto;
  padding: 144px 48px 48px;
  width: 100%;
}
.hero__content .eyebrow { margin-bottom: 20px; font-size: 1.125rem; }
.hero__title   { color: var(--white); margin-bottom: 10px; }
.hero__subtitle {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  color: var(--orange);
  line-height: 1.3;
  margin-bottom: 36px;
}
.hero__lead {
  color: rgba(255,255,255,.76);
  font-size: 1.05rem;
  line-height: 1.82;
  max-width: 540px;
  margin-bottom: 48px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__visual {
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
}
.hero__visual img {
  width: 100%;
}

/* ===== SPLIT (two-column) ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split--reverse .split__visual { order: -1; }

.split__visual {
  border-radius: 4px;
  overflow: hidden;
  background: var(--light);
}
.split__visual img { width: 100%; display: block; }

.bg-navy .split__visual,
.bg-blue  .split__visual { background: rgba(255,255,255,.07); }
.bg-navy .split__visual img,
.bg-blue  .split__visual img {
}

.split__content h2  { margin-bottom: 24px; }

/* Dark section text */
.bg-navy h2, .bg-navy h3, .bg-navy p, .bg-navy li { color: rgba(255,255,255,.9); }
.bg-blue  h2, .bg-blue  h3, .bg-blue  p, .bg-blue li { color: rgba(255,255,255,.9); }
.bg-navy p  { color: rgba(255,255,255,.74); }
.bg-blue  p { color: rgba(255,255,255,.8); }
.bg-orange h2, .bg-orange h3, .bg-orange p { color: var(--white); }

/* ===== PULLQUOTE ===== */
.pullquote {
  border-left: 3px solid var(--orange);
  padding: 18px 24px;
  margin: 28px 0;
  background: var(--light);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.65;
  border-radius: 0 3px 3px 0;
}
.bg-navy .pullquote { background: rgba(255,255,255,.06); color: rgba(255,255,255,.9); }
.bg-blue  .pullquote { background: rgba(255,255,255,.12); color: var(--white); }

/* ===== CARDS (3-col feature) ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.bg-white .card { background: var(--light); border-color: transparent; }
.bg-light .card { background: var(--white); }
.card:hover     { transform: translateY(-4px); box-shadow: 0 16px 48px var(--shadow); }
.card__number {
  font-family: var(--serif);
  font-size: 3.25rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 18px;
  opacity: .9;
}
.card h3 { font-size: 1.08rem; margin-bottom: 12px; color: var(--text); }
.card p  { font-size: 0.9rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ===== STEPS (numbered process) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
  margin-top: 0;
}
.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 18%;
  right: 18%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.step        { position: relative; z-index: 1; }
.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
.step h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--text); }
.step p  { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ===== BIGQUOTE ===== */
.bigquote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.bigquote__mark {
  font-family: var(--serif);
  font-size: 6rem;
  line-height: .45;
  color: var(--orange);
  display: block;
  margin-bottom: 44px;
  user-select: none;
}
.bigquote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.65;
  font-style: italic;
}
.bigquote__source {
  margin-top: 40px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* ===== STATS ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 56px;
}
.stat {
  padding: 40px 28px;
  background: rgba(255,255,255,.05);
  text-align: center;
}
.stat__value {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.stat__label { font-size: 0.85rem; color: rgba(255,255,255,.6); line-height: 1.55; }

/* ===== BYLINE ===== */
.byline {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}
.byline__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.byline__name  { font-family: var(--serif); font-size: 1.05rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.byline__title { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ===== AI NOTE ===== */
.ai-note {
  display: flex;
  gap: 14px;
  padding: 18px 22px;
  background: var(--light);
  border-radius: 3px;
  margin-top: 28px;
  align-items: flex-start;
}
.ai-note__icon { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.ai-note p     { font-size: 0.875rem; color: var(--muted); margin: 0; line-height: 1.7; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: 160px 48px 88px;
  background: var(--navy);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .28;
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.page-hero__visual {
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
}
.page-hero__visual img {
  width: 100%;
}
.page-hero .eyebrow    { margin-bottom: 16px; }
.page-hero h1          { color: var(--white); max-width: 680px; }
.page-hero__lead {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 24px;
  line-height: 1.85;
}

/* ===== CONTACT PAGE ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2  { margin-bottom: 24px; }
.contact-info p   { color: var(--muted); }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color .15s;
}
.contact-link:hover { color: var(--blue); }
.contact-link svg   { color: var(--blue); flex-shrink: 0; }

/* Form */
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form .form-row.full  { grid-template-columns: 1fr; }
.field                         { display: flex; flex-direction: column; gap: 6px; }
.field label                   { font-size: 0.8rem; font-weight: 500; color: var(--text); }
.field input,
.field textarea {
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47,87,160,.12);
}
.field textarea  { min-height: 130px; resize: vertical; }
.form-submit     { margin-top: 8px; }
.form-note {
  padding: 16px 20px;
  background: var(--light);
  border-radius: 3px;
  margin-top: 24px;
}
.form-note p { font-size: 0.82rem; font-style: italic; color: var(--muted); margin: 0; line-height: 1.7; }
.form-alert {
  padding: 14px 20px;
  border-radius: 3px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}
.form-alert--success { background: #EBF5EC; color: #1B6230; border: 1px solid #A8D5B2; }
.form-alert--error   { background: #FDEAEA; color: #8B1D1D; border: 1px solid #F5AAAA; }
.form-alert a        { text-decoration: underline; }

/* ===== FOOTER ===== */
.site-footer { background: #07101F; }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  max-width: var(--w);
  margin: 0 auto;
  padding: 80px 48px 64px;
}
.footer-brand .footer-logo { height: 38px; width: auto; margin-bottom: 22px; display: block; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,.45); max-width: 300px; line-height: 1.75; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul             { list-style: none; }
.footer-col ul li          { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color .15s;
}
.footer-col ul li a:hover  { color: var(--white); }
.footer-bottom {
  max-width: var(--w);
  margin: 0 auto;
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p,
.footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ===== 404 ===== */
.not-found {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  padding: 120px 48px 80px;
}
.not-found__inner { max-width: 520px; text-align: center; }
.not-found__code {
  font-family: var(--serif);
  font-size: 8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 24px;
  opacity: .8;
}
.not-found h1 { color: var(--white); margin-bottom: 16px; font-size: 2rem; }
.not-found p  { color: rgba(255,255,255,.65); margin-bottom: 36px; }

/* ===== FADE-UP ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ===== BACKGROUNDS ===== */
.bg-white  { background: var(--white); }
.bg-light  { background: var(--light); }
.bg-navy   { background: var(--navy); }
.bg-blue   { background: var(--blue); }
.bg-orange { background: var(--orange); }

/* ===== RESPONSIVE — tablet ===== */
@media (max-width: 1024px) {
  :root { --sp: 72px; }

  .container    { padding: 0 32px; }
  .header-inner { padding: 20px 32px; }
  .footer-main  { grid-template-columns: 1fr 1fr; gap: 48px; }
  .footer-bottom { padding: 22px 32px; }

  .hero__inner         { grid-template-columns: 1fr; }
  .hero__visual        { display: none; }

  .split               { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__visual { order: 0; }

  .cards               { grid-template-columns: 1fr 1fr; }
  .steps               { grid-template-columns: 1fr; gap: 32px; }
  .steps::before       { display: none; }
  .stats               { grid-template-columns: 1fr; }

  .page-hero           { padding: 148px 32px 80px; }
  .page-hero__inner    { grid-template-columns: 1fr; }
  .page-hero__visual   { display: none; }

  .contact-wrap        { grid-template-columns: 1fr; gap: 56px; }
}

/* ===== RESPONSIVE — mobile ===== */
@media (max-width: 768px) {
  :root { --sp: 56px; }

  .container        { padding: 0 20px; }
  .header-inner     { padding: 18px 20px; }

  .primary-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 800;
  }
  .primary-nav.is-open  { display: flex; }
  .primary-nav a:not(.btn) { font-size: 1.1rem; padding: 12px 32px; }
  .primary-nav .btn     { margin-left: 0; margin-top: 12px; }
  .nav-toggle           { display: flex; }

  .hero__inner     { padding: 140px 20px 80px; }
  .hero__lead      { font-size: .975rem; }
  .hero__cta       { flex-direction: column; align-items: flex-start; }

  .page-hero       { padding: 136px 20px 60px; }

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

  .footer-main     { grid-template-columns: 1fr; padding: 56px 20px 48px; gap: 36px; }
  .footer-bottom   { padding: 20px; flex-direction: column; gap: 8px; text-align: center; }

  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-wrap    { gap: 40px; }

  .bigquote blockquote { font-size: 1.2rem; }
}


/* ===== BEGRIPPEN GRID ===== */
.begrippen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

@media (max-width: 768px) {
  .begrippen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ===================================================
   KOPIJ — CATEGORIEPAGINA
   =================================================== */

/* Hero */
.kopij-hero {
  background: #0d1b3e;
  padding: 80px 0 60px;
}
.kopij-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.kopij-hero__image img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
  display: block;
}
.kopij-hero__text .eyebrow {
  color: #E88835;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.kopij-hero__text h1 {
  color: #fff;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.kopij-hero__lead {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
}

/* Grid artikelen */
.kopij-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}
.kopij-card {
  border: 1px solid var(--border, #e5e5e5);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  background: #fff;
}
.kopij-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
}
.kopij-card__thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.kopij-card__body {
  padding: 28px;
}
.kopij-card__date {
  font-size: .78rem;
  color: var(--muted, #888);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}
.kopij-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
.kopij-card__title a {
  text-decoration: none;
  color: #0d1b3e;
}
.kopij-card__title a:hover { color: #E88835; }
.kopij-card__excerpt {
  font-size: .9rem;
  color: var(--muted, #666);
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}
.kopij-card__btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: .85rem;
}
.kopij-pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.kopij-empty {
  color: var(--muted, #888);
  font-size: 1.05rem;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .kopij-hero__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .kopij-hero__image img {
    max-width: 280px;
    margin: 0 auto;
  }
  .kopij-grid {
    grid-template-columns: 1fr;
  }
}