/*
Theme Name: YouthConnect
Theme URI: https://youthconnection.eu
Author: From Conflict to Connection Project
Description: Official theme for the From Conflict to Connection Erasmus+ project — supporting multilingual NVC youth work across Europe.
Version: 1.0.0
License: 
Text Domain: youthconnect
Tags: erasmus, nvc, youth, multilingual, responsive
*/

/* ============================================================
   CSS RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #0d1b2a;
  --navy-mid:  #1b2d42;
  --navy-light:#243447;
  --gold:      #e8a020;
  --gold-light:#f2bc55;
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --grey:      #8a9bb0;
  --text:      #2c3e50;
  --text-light:#556070;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(13,27,42,.12);
  --transition:0.3s ease;
  --max-width: 1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: relative;
  z-index: 10;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 70px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-logo .logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}

.site-logo .logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  max-width: 180px;
}

/* Primary nav */
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

#primary-nav a {
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

#primary-nav a:hover,
#primary-nav a.current { color: var(--white); background: rgba(255,255,255,.1); }

/* Language switcher inline */
.lang-switcher {
  position: relative;
  margin-left: 16px;
}

.lang-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background var(--transition);
}

.lang-switcher-toggle:hover { background: rgba(255,255,255,.2); }
.lang-switcher-toggle .arrow { font-size: 10px; }

.lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 200;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background var(--transition);
}

.lang-dropdown a:hover { background: var(--off-white); color: var(--navy); }
.lang-dropdown a.active { font-weight: 700; color: var(--gold); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  background: var(--navy-mid);
  padding: 16px 24px 24px;
}

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

.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.mobile-nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }

.mobile-lang {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mobile-lang a {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  transition: background var(--transition);
}

.mobile-lang a.active { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a5c 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("assets/images/ChatGPT Image 24. tra 2026. 17_59_37.png") center/cover no-repeat;
  opacity: 0.08;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: 20px;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 560px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  border: none;
}

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

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }

.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); color: var(--white); }

/* ============================================================
   CONFLICT SECTION
   ============================================================ */
.conflict-section {
  background: var(--navy-light);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}

.conflict-section .label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.conflict-section h2 { color: var(--white); font-size: 32px; margin-bottom: 20px; }

.conflict-section p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,.75);
  font-size: 15px;
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.8;
}

/* ============================================================
   ABOUT SECTION (HOME)
   ============================================================ */
.home-about { background: var(--white); }

.home-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-about-content .label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.home-about-content h2 { font-size: 36px; margin-bottom: 20px; }

.home-about-content p { color: var(--text-light); margin-bottom: 16px; }

.stats-row { display: flex; gap: 40px; margin: 32px 0; }

.stat-item .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

.home-about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--off-white);
}

.home-about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   OBJECTIVES SECTION
   ============================================================ */
.objectives { background: var(--off-white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 { font-size: 36px; margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 600px; margin: 0 auto; }

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.obj-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  border-top: 4px solid var(--gold);
  transition: transform var(--transition), box-shadow var(--transition);
}

.obj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.obj-card .obj-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.obj-card h4 { font-size: 16px; margin-bottom: 10px; }
.obj-card p { color: var(--text-light); font-size: 14px; line-height: 1.6; }

/* ============================================================
   QUOTE / WHY MATTERS
   ============================================================ */
.why-matters {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.why-matters h2 { color: var(--white); font-size: 28px; margin-bottom: 40px; }

.big-quote {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: clamp(20px, 3vw, 28px);
  font-style: italic;
  color: rgba(255,255,255,.9);
  line-height: 1.5;
  position: relative;
  padding: 0 40px;
}

.big-quote::before {
  content: '\201C';
  font-size: 80px;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: -16px;
  line-height: 1;
  font-family: Georgia, serif;
}

.quote-attr {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners { background: var(--white); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.partner-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.partner-card:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(232,160,32,.15); }

.partner-flag {
  font-size: 28px;
  flex-shrink: 0;
}

.partner-info h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.partner-info span { font-size: 13px; color: var(--grey); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { font-size: 36px; color: var(--navy); margin-bottom: 16px; }
.cta-section p { color: rgba(13,27,42,.75); font-size: 18px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}

.footer-logo .logo-text { font-size: 14px; font-weight: 700; color: var(--white); }

.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 320px; }

.footer-col h5 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a { color: rgba(255,255,255,.65); font-size: 14px; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col address { font-style: normal; font-size: 14px; line-height: 1.8; }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }

.eu-funding {
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 24px 0;
  margin-top: 0;
}

.eu-funding p {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  max-width: 800px;
  line-height: 1.7;
}

.eu-funding-logo {
  max-width: 320px;
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
  text-align: center;
}

.page-hero .label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-hero h1 { color: var(--white); font-size: clamp(32px, 4vw, 52px); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 18px; margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-need { background: var(--off-white); }

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

.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }

.about-content h2 { font-size: 32px; margin-bottom: 16px; }
.about-content p { color: var(--text-light); margin-bottom: 14px; }

.about-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--navy-light);
}

.about-img-box img { width: 100%; height: 100%; object-fit: cover; }

/* NVC method */
.nvc-method { background: var(--navy); color: var(--white); }
.nvc-method h2 { color: var(--white); }

.nvc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.nvc-step {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
}

.nvc-step .step-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.nvc-step h3 { color: var(--gold); font-size: 22px; margin-bottom: 12px; }
.nvc-step p { color: rgba(255,255,255,.7); font-size: 14px; }

/* What the project offers */
.project-offers { background: var(--white); }

.two-lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.check-list h3 { font-size: 20px; margin-bottom: 20px; }

.check-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-size: 15px;
  color: var(--text-light);
}

.check-list ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   RESOURCES PAGE
   ============================================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.resource-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
}

.resource-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.resource-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.resource-card .rc-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}

.resource-card h3 { font-size: 20px; margin-bottom: 0; }
.resource-card p { color: var(--text-light); font-size: 14px; margin-bottom: 24px; }

.btn-sm {
  padding: 10px 22px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 700;
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  transition: background var(--transition);
  text-decoration: none;
}

.btn-sm:hover { background: var(--gold); color: var(--navy); }

/* FAQ */
.faq-section { background: var(--off-white); }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  user-select: none;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--off-white); }

.faq-question .faq-arrow {
  font-size: 20px;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p { color: var(--text-light); font-size: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 40px;
}

.contact-info-card h3 { color: var(--white); font-size: 22px; margin-bottom: 12px; }
.contact-info-card p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 24px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-detail .cd-icon { font-size: 20px; flex-shrink: 0; }
.contact-detail .cd-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); margin-bottom: 4px; font-weight: 700; }
.contact-detail .cd-value { font-size: 14px; color: rgba(255,255,255,.85); }
.contact-detail .cd-value a { color: var(--gold-light); }

.contact-form-wrap { padding: 8px 0; }
.contact-form-wrap h2 { font-size: 28px; margin-bottom: 24px; }

.contact-photo-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--off-white);
}

.contact-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  border: 2px solid rgba(0,0,0,.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,.15);
}

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

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.post-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.post-card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy-light);
}

.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.post-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.post-category { background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.post-date { font-size: 13px; color: var(--grey); }

.post-card-body h2 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.post-card-body h2 a { color: var(--navy); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--gold); }

.post-card-body p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin-bottom: 20px; flex: 1; }

.read-more { color: var(--gold); font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.read-more:hover { color: var(--gold-light); }

/* Single post */
.single-post-layout {
  max-width: 820px;
  margin: 0 auto;
}

.post-content-area {
  width: 100%;
}

.single-post-content .post-header { margin-bottom: 32px; }
.single-post-content .post-header h1 { font-size: clamp(26px, 3vw, 42px); margin-bottom: 16px; }

.post-body { font-size: 17px; line-height: 1.9; }
.post-body h2 { font-size: 26px; margin: 40px 0 16px; }
.post-body h3 { font-size: 21px; margin: 32px 0 12px; }
.post-body p { margin-bottom: 20px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body ul li, .post-body ol li { margin-bottom: 8px; }
.post-body img { border-radius: var(--radius); margin: 24px 0; }
.post-body blockquote { border-left: 4px solid var(--gold); padding: 16px 24px; background: var(--off-white); margin: 24px 0; font-style: italic; border-radius: 0 8px 8px 0; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.pagination a { color: var(--navy); border-color: rgba(0,0,0,.1); }
.pagination a:hover, .pagination .current { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ============================================================
   HIGHLIGHT BOX
   ============================================================ */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
  margin: 48px 0;
}

.highlight-box h3 { color: var(--gold); font-size: 22px; margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,.8); }

/* ============================================================
   PROJECT HIGHLIGHTS (about page)
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.highlight-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  text-align: center;
}

.highlight-card .h-icon { font-size: 36px; margin-bottom: 16px; }
.highlight-card p { font-size: 14px; color: var(--text-light); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .home-about-grid,
  .about-grid,
  .contact-layout,
  .single-post-layout { grid-template-columns: 1fr; }
  .about-grid.reverse { direction: ltr; }
  .nvc-steps { grid-template-columns: 1fr; }
  .two-lists { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { gap: 24px; }
}

@media (max-width: 680px) {
  #primary-nav, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 56px 0; }
  .hero { padding: 72px 0 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .partners-grid { grid-template-columns: 1fr 1fr; }
  .objectives-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .partners-grid { grid-template-columns: 1fr; }
  .stats-row { flex-wrap: wrap; }
}

/* ============================================================
   WP CORE CLASSES
   ============================================================ */
.aligncenter { display: block; margin: 24px auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption p.wp-caption-text { font-size: 13px; color: var(--grey); text-align: center; margin-top: 6px; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; width: 1px; word-wrap: normal; }
