/* ============================================================
   PARGON — Modern Academic Minimalism
   Primary: #1A2B3C | Secondary: #F2F4F7 | Accent1: #5A7D9D
   Accent2: #C1D3E0 | Tertiary: #E8F0F7
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:wght@400;500;600;700;800&family=PT+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'PT Serif', Georgia, serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #1A2B3C;
  background-color: #F2F4F7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: #5A7D9D; text-decoration: none; transition: color 0.25s ease; }
a:hover { color: #1A2B3C; }

ul, ol { list-style: none; }

/* ─── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Schibsted Grotesk', system-ui, sans-serif;
  font-weight: 700;
  color: #1A2B3C;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.2rem;
  line-height: 1.65;
  color: #3a4f62;
}

blockquote {
  border-left: 3px solid #5A7D9D;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #E8F0F7;
  border-radius: 0 6px 6px 0;
}

blockquote p {
  font-style: italic;
  font-size: 1.1rem;
  color: #1A2B3C;
  margin: 0;
}

/* ─── Container ─────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow { max-width: 820px; margin: 0 auto; padding: 0 20px; }
.container--medium { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

/* ─── Section Spacing ───────────────────────────────────────── */
.section { padding: 90px 0; }
.section--sm { padding: 60px 0; }
.section--lg { padding: 120px 0; }

.section__header {
  margin-bottom: 56px;
}

.section__header--centered { text-align: center; }

.section__eyebrow {
  display: block;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5A7D9D;
  margin-bottom: 12px;
}

.section__title { margin-bottom: 16px; }

.section__subtitle {
  font-size: 1.1rem;
  color: #3a4f62;
  max-width: 680px;
}

.section__subtitle--centered { margin: 0 auto; }

.section-divider {
  width: 48px;
  height: 3px;
  background: #5A7D9D;
  margin: 20px 0 0;
}

.section-divider--centered { margin: 20px auto 0; }

/* ─── Navigation ─────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #C1D3E0;
  box-shadow: 0 2px 8px rgba(26,43,60,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #1A2B3C;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}

.nav-logo span { color: #5A7D9D; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1A2B3C;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: #5A7D9D;
  background: #E8F0F7;
}

.nav-links .dropdown { position: relative; }

.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #C1D3E0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(26,43,60,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  padding: 8px 0;
  z-index: 10;
}

.nav-links .dropdown:hover .dropdown-menu,
.nav-links .dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 0;
  white-space: nowrap;
}

.nav-cta {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff !important;
  background: #1A2B3C !important;
  padding: 10px 22px !important;
  border-radius: 4px !important;
}

.nav-cta:hover {
  background: #5A7D9D !important;
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A2B3C;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── Hero Section ───────────────────────────────────────────── */
.hero {
  background: #1A2B3C;
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,125,157,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-content h1 {
  color: #fff;
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
}

.hero-content p {
  color: #C1D3E0;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.9;
}

/* ─── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: #5A7D9D;
  color: #fff;
  border-color: #5A7D9D;
}

.btn--primary:hover {
  background: #fff;
  color: #1A2B3C;
  border-color: #fff;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}

.btn--dark {
  background: #1A2B3C;
  color: #fff;
  border-color: #1A2B3C;
}

.btn--dark:hover {
  background: #5A7D9D;
  border-color: #5A7D9D;
  color: #fff;
}

.btn--light {
  background: #E8F0F7;
  color: #1A2B3C;
  border-color: #C1D3E0;
}

.btn--light:hover {
  background: #C1D3E0;
  border-color: #5A7D9D;
  color: #1A2B3C;
}

.btn--sm { padding: 8px 18px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Cards ────────────────────────────────────────────────────── */
.card {
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.card__image { overflow: hidden; }

.card__image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card__image img { transform: scale(1.03); }

.card__body { padding: 24px; }

.card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.card__tag {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A7D9D;
  background: #E8F0F7;
  padding: 3px 10px;
  border-radius: 3px;
}

.card__date {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.78rem;
  color: #6b7e8f;
}

.card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  line-height: 1.35;
}

.card__title a { color: #1A2B3C; }
.card__title a:hover { color: #5A7D9D; }

.card__excerpt {
  font-size: 0.92rem;
  color: #4a5f71;
  line-height: 1.65;
  margin-bottom: 16px;
}

.card__footer {
  padding: 14px 24px;
  border-top: 1px solid #E8F0F7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card__author {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.8rem;
  color: #5A7D9D;
  font-weight: 500;
}

.card__readmore {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1A2B3C;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card__readmore:hover { color: #5A7D9D; }

/* ─── Grid Layouts ───────────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

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

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

/* ─── Breadcrumbs ───────────────────────────────────────────── */
.breadcrumbs {
  padding: 16px 0;
  border-bottom: 1px solid #C1D3E0;
  background: #fff;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumbs__list li {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.82rem;
  color: #6b7e8f;
}

.breadcrumbs__list li a { color: #5A7D9D; }
.breadcrumbs__list li a:hover { color: #1A2B3C; }

.breadcrumbs__list li::after {
  content: '/';
  margin-left: 8px;
  color: #C1D3E0;
}

.breadcrumbs__list li:last-child::after { content: ''; }
.breadcrumbs__list li:last-child { color: #1A2B3C; font-weight: 500; }

/* ─── Article Layout ─────────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

.article-content h2 { margin: 2.5rem 0 1rem; }
.article-content h3 { margin: 2rem 0 0.75rem; }
.article-content p { margin-bottom: 1.4rem; }
.article-content ul, .article-content ol { margin: 1.2rem 0 1.4rem 1.5rem; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { margin-bottom: 0.5rem; line-height: 1.7; }

.article-header { margin-bottom: 48px; }
.article-header h1 { margin-bottom: 20px; }

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #C1D3E0;
  border-bottom: 1px solid #C1D3E0;
  flex-wrap: wrap;
}

.article-meta__item {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.82rem;
  color: #5A7D9D;
  font-weight: 500;
}

.article-hero-image {
  width: 100%;
  border-radius: 6px;
  margin: 32px 0;
  overflow: hidden;
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}

/* ─── Sidebar ─────────────────────────────────────────────────── */
.sidebar { position: sticky; top: 88px; }

.sidebar-widget {
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  padding: 24px;
  margin-bottom: 28px;
}

.sidebar-widget__title {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A2B3C;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #E8F0F7;
}

.sidebar-links li { border-bottom: 1px solid #E8F0F7; }
.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  display: block;
  padding: 10px 0;
  font-size: 0.88rem;
  color: #1A2B3C;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 500;
}

.sidebar-links a:hover { color: #5A7D9D; padding-left: 4px; }

/* ─── Stats Strip ─────────────────────────────────────────────── */
.stats-strip {
  background: #1A2B3C;
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item__label {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #C1D3E0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Feature Blocks ──────────────────────────────────────────── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-block--reverse { direction: rtl; }
.feature-block--reverse > * { direction: ltr; }

.feature-image {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,43,60,0.12);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-text h2 { margin-bottom: 16px; }
.feature-text p { color: #3a4f62; margin-bottom: 20px; }

.feature-list {
  margin: 20px 0 28px;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #3a4f62;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5A7D9D;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ─── Expert Cards ───────────────────────────────────────────── */
.expert-card {
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 28px;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.expert-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.expert-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-bottom: 1px solid #E8F0F7;
  margin-bottom: 20px;
}

.expert-card__name {
  font-size: 1.1rem;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 700;
  color: #1A2B3C;
  margin-bottom: 4px;
  padding: 0 20px;
}

.expert-card__role {
  font-size: 0.82rem;
  color: #5A7D9D;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 500;
  margin-bottom: 12px;
}

.expert-card__bio {
  font-size: 0.88rem;
  color: #4a5f71;
  padding: 0 20px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ─── Course Cards ───────────────────────────────────────────── */
.course-card {
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
}

.course-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.course-card__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.course-card__body { padding: 24px; }

.course-card__level {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5A7D9D;
  margin-bottom: 8px;
}

.course-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.course-card__title a { color: #1A2B3C; }
.course-card__title a:hover { color: #5A7D9D; }

.course-card__desc {
  font-size: 0.88rem;
  color: #4a5f71;
  margin-bottom: 16px;
  line-height: 1.6;
}

.course-card__footer {
  padding: 14px 24px;
  border-top: 1px solid #E8F0F7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-card__duration {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.8rem;
  color: #6b7e8f;
}

/* ─── Newsletter / CTA Sections ───────────────────────────────── */
.cta-section {
  background: #E8F0F7;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { color: #3a4f62; margin-bottom: 32px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  border: 1px solid #C1D3E0;
  border-radius: 4px;
  font-family: 'PT Serif', serif;
  font-size: 0.95rem;
  background: #fff;
  color: #1A2B3C;
  outline: none;
  transition: border-color 0.25s;
}

.newsletter-form input[type="email"]:focus { border-color: #5A7D9D; }

/* ─── Contact Form ────────────────────────────────────────────── */
.contact-form {
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 24px; }

.form-group label {
  display: block;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A2B3C;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #C1D3E0;
  border-radius: 4px;
  font-family: 'PT Serif', serif;
  font-size: 0.95rem;
  color: #1A2B3C;
  background: #F2F4F7;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #5A7D9D;
  background: #fff;
}

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

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

/* ─── Tabs ─────────────────────────────────────────────────────── */
.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid #C1D3E0;
  margin-bottom: 40px;
}

.tabs__btn {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #6b7e8f;
  padding: 12px 24px;
  background: none;
  border: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.tabs__btn:hover { color: #1A2B3C; }
.tabs__btn.active { color: #1A2B3C; border-bottom-color: #1A2B3C; }

.tabs__pane { display: none; }
.tabs__pane.active { display: block; }

/* ─── Accordion ──────────────────────────────────────────────── */
.accordion { border: 1px solid #E8F0F7; border-radius: 6px; overflow: hidden; }

.accordion__item { border-bottom: 1px solid #E8F0F7; }
.accordion__item:last-child { border-bottom: none; }

.accordion__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  background: #fff;
  transition: background 0.2s;
}

.accordion__head:hover { background: #E8F0F7; }

.accordion__question {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A2B3C;
}

.accordion__icon {
  font-size: 1.2rem;
  color: #5A7D9D;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion__item.open .accordion__icon { transform: rotate(45deg); }

.accordion__body {
  display: none;
  padding: 0 24px 20px;
  background: #fff;
  font-size: 0.92rem;
  color: #3a4f62;
  line-height: 1.7;
}

.accordion__item.open .accordion__body { display: block; }

/* ─── Tags Cloud ─────────────────────────────────────────────── */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  color: #5A7D9D;
  background: #E8F0F7;
  border: 1px solid #C1D3E0;
  padding: 5px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.tag:hover, .tag.active {
  background: #5A7D9D;
  color: #fff;
  border-color: #5A7D9D;
}

/* ─── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}

.pagination a, .pagination span {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #C1D3E0;
  border-radius: 4px;
  color: #1A2B3C;
  background: #fff;
  transition: all 0.2s;
}

.pagination a:hover { background: #E8F0F7; border-color: #5A7D9D; }
.pagination .current { background: #1A2B3C; color: #fff; border-color: #1A2B3C; }

/* ─── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #1A2B3C;
  color: #C1D3E0;
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #8da3b5;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-contact-info { margin-top: 16px; }

.footer-contact-info li {
  font-size: 0.85rem;
  color: #8da3b5;
  margin-bottom: 6px;
  display: flex;
  gap: 8px;
}

.footer-contact-info a { color: #C1D3E0; }
.footer-contact-info a:hover { color: #fff; }

.footer-col__title {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 18px;
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: #8da3b5;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(193,211,224,0.15);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6b7e8f;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: #6b7e8f;
}

.footer-bottom-links a:hover { color: #C1D3E0; }

/* ─── Page Header Banner ──────────────────────────────────────── */
.page-header {
  background: #1A2B3C;
  padding: 60px 0;
  color: #fff;
}

.page-header h1 { color: #fff; margin-bottom: 12px; }

.page-header p {
  color: #C1D3E0;
  font-size: 1.05rem;
  max-width: 600px;
}

/* ─── Research Cards ─────────────────────────────────────────── */
.research-card {
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  padding: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  transition: box-shadow 0.25s, transform 0.25s;
  border-left: 4px solid #5A7D9D;
}

.research-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-2px);
}

.research-card__year {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #5A7D9D;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.research-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.research-card__title a { color: #1A2B3C; }
.research-card__title a:hover { color: #5A7D9D; }

.research-card__abstract {
  font-size: 0.9rem;
  color: #4a5f71;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* ─── Resource Items ─────────────────────────────────────────── */
.resource-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  align-items: flex-start;
  transition: box-shadow 0.25s;
}

.resource-item:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.07); }

.resource-item__icon {
  width: 48px;
  height: 48px;
  background: #E8F0F7;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #5A7D9D;
}

.resource-item__body { flex: 1; }

.resource-item__title {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A2B3C;
  margin-bottom: 6px;
}

.resource-item__desc {
  font-size: 0.88rem;
  color: #4a5f71;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ─── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #C1D3E0;
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #5A7D9D;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #5A7D9D;
}

.timeline__year {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #5A7D9D;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline__title {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1A2B3C;
  margin-bottom: 6px;
}

.timeline__text {
  font-size: 0.9rem;
  color: #4a5f71;
  line-height: 1.65;
}

/* ─── Highlight Box ──────────────────────────────────────────── */
.highlight-box {
  background: #E8F0F7;
  border: 1px solid #C1D3E0;
  border-radius: 6px;
  padding: 28px 32px;
  margin: 32px 0;
}

.highlight-box p { margin: 0; color: #1A2B3C; font-style: italic; }

/* ─── Info Table ─────────────────────────────────────────────── */
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 24px 0;
}

.info-table th {
  background: #1A2B3C;
  color: #fff;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E8F0F7;
  color: #3a4f62;
  line-height: 1.6;
}

.info-table tr:last-child td { border-bottom: none; }
.info-table tr:nth-child(even) td { background: #F2F4F7; }

/* ─── Policy Pages ───────────────────────────────────────────── */
.policy-content {
  max-width: 820px;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 2.5rem 0 1rem;
  font-size: 1.5rem;
  color: #1A2B3C;
}

.policy-content h3 {
  margin: 1.8rem 0 0.75rem;
  font-size: 1.15rem;
}

.policy-content p, .policy-content li {
  font-size: 0.95rem;
  color: #3a4f62;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.policy-content ul, .policy-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}

.policy-content ul { list-style: disc; }
.policy-content ol { list-style: decimal; }

.policy-updated {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.82rem;
  color: #5A7D9D;
  font-weight: 500;
  margin-bottom: 32px;
  padding: 10px 16px;
  background: #E8F0F7;
  border-radius: 4px;
  display: inline-block;
}

/* ─── Thank You Page ─────────────────────────────────────────── */
.thankyou-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  background: #E8F0F7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.2rem;
}

/* ─── Mobile Nav ──────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #C1D3E0;
  z-index: 999;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}

.mobile-nav.open { display: block; }

.mobile-nav a {
  display: block;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1A2B3C;
  padding: 12px 0;
  border-bottom: 1px solid #E8F0F7;
}

.mobile-nav a:hover { color: #5A7D9D; }

.mobile-nav .mobile-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5A7D9D;
  margin: 16px 0 6px;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-block, .feature-block--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .section { padding: 60px 0; }
  .section--lg { padding: 80px 0; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: #6b7e8f; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.bg-white { background: #fff; }
.bg-light { background: #F2F4F7; }
.bg-dark { background: #1A2B3C; }
.rounded { border-radius: 6px; }
.visually-hidden { position: absolute; clip: rect(0 0 0 0); width: 1px; height: 1px; overflow: hidden; }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A2B3C;
  color: #C1D3E0;
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
}

.cookie-banner p {
  flex: 1;
  font-size: 0.85rem;
  color: #C1D3E0;
  margin: 0;
  min-width: 240px;
}

.cookie-banner a { color: #C1D3E0; text-decoration: underline; }

.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.cookie-btns button {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
}

.cookie-accept {
  background: #5A7D9D;
  color: #fff;
  border-color: #5A7D9D !important;
}

.cookie-accept:hover { background: #4a6d8c; }

.cookie-decline {
  background: transparent;
  color: #C1D3E0;
  border-color: rgba(193,211,224,0.3) !important;
}

.cookie-decline:hover { background: rgba(255,255,255,0.05); }

/* ─── Filters / Tags strip ───────────────────────────────────── */
.filters-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0 32px;
  border-bottom: 1px solid #C1D3E0;
  margin-bottom: 48px;
}

/* ─── Search Box ─────────────────────────────────────────────── */
.search-box {
  position: relative;
  max-width: 520px;
}

.search-box input {
  width: 100%;
  padding: 12px 48px 12px 18px;
  border: 1px solid #C1D3E0;
  border-radius: 4px;
  font-family: 'PT Serif', serif;
  font-size: 0.95rem;
  background: #fff;
  color: #1A2B3C;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus { border-color: #5A7D9D; }

.search-box button {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #5A7D9D;
  font-size: 1.1rem;
}

/* ─── Alert / Notice ─────────────────────────────────────────── */
.notice {
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 16px 0;
}

.notice--info { background: #E8F0F7; border-left: 3px solid #5A7D9D; color: #1A2B3C; }
.notice--success { background: #edf7f0; border-left: 3px solid #3d9b6b; color: #1a3a2b; }

/* About Values ─────────────────────────────────────────────────── */
.value-card {
  padding: 32px;
  background: #fff;
  border: 1px solid #E8F0F7;
  border-radius: 6px;
  border-top: 4px solid #5A7D9D;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.value-card__number {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #E8F0F7;
  margin-bottom: 12px;
}

.value-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { font-size: 0.9rem; color: #4a5f71; margin: 0; line-height: 1.65; }

/* Partner logos ─────────────────────────────────────────────────── */
.partners-strip {
  padding: 48px 0;
  background: #fff;
  border-top: 1px solid #E8F0F7;
  border-bottom: 1px solid #E8F0F7;
}

.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-name {
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #C1D3E0;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.partner-name:hover { color: #5A7D9D; }

/* Back to top ──────────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: #5A7D9D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 500;
}

.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: #1A2B3C; }
