/* ============================================================
   EDSPIREX THEME — MAIN STYLESHEET
   Edit colors in: Appearance > Customize > Edspirex Brand Colors
   ============================================================ */

:root {
  --maroon:      #6B0F2B;
  --maroon-deep: #4a0a1e;
  --maroon-mid:  #8B1A3A;
  --pink:        #E91E8C;
  --pink-light:  #ff4da6;
  --white:       #ffffff;
  --off-white:   #fdf6f8;
  --gray-light:  #f0e8eb;
  --text:        #1a0a10;
  --text-muted:  #8a6070;
  --nav-height:  70px;
  --radius:      20px;
  --radius-sm:   12px;
  --shadow:      0 20px 50px rgba(107,15,43,0.12);
  --transition:  all 0.3s ease;
}

/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

/* ── UTILITY ─────────────────────────────────────────────── */
.section-inner   { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-inner.narrow { max-width: 860px; }
.section-tag {
  display: inline-block;
  background: rgba(107,15,43,0.08);
  color: var(--maroon);
  padding: 0.3rem 1rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--maroon-deep);
  line-height: 1.15; margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--pink); }
.section-sub {
  color: var(--text-muted);
  font-size: 1rem; line-height: 1.75;
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .section-sub { margin: 0 auto; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--pink); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(233,30,140,0.35);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover {
  background: var(--pink-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(233,30,140,0.5);
  color: var(--white);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--white);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.4);
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.btn-outline:hover {
  border-color: var(--pink); color: var(--pink);
  transform: translateY(-3px);
}
.btn-outline-maroon {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: transparent; color: var(--maroon);
  padding: 0.75rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  border: 2px solid var(--maroon);
  transition: var(--transition);
}
.btn-outline-maroon:hover {
  background: var(--maroon); color: var(--white);
  transform: translateY(-2px);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.fade-up {
  opacity: 0; transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.15s; }
.fade-up:nth-child(6) { transition-delay: 0.25s; }

/* ── NAVBAR ──────────────────────────────────────────────── */
.edsp-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(74,10,30,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(233,30,140,0.15);
  transition: background 0.3s;
}
.edsp-nav.scrolled { background: rgba(74,10,30,1); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 5%;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem; font-weight: 900;
  color: var(--white); letter-spacing: 1px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--pink); }
.nav-logo img { height: 42px; width: auto; }
.custom-logo-link { display: flex; align-items: center; }

.nav-links {
  display: flex; align-items: center; gap: 0.3rem;
  list-style: none; flex: 1; justify-content: center;
}
.nav-links li a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: 8px;
  transition: var(--transition); display: block;
}
.nav-links li a:hover, .nav-links li.current-menu-item a { color: var(--pink); }

.nav-cta {
  background: var(--pink); color: var(--white) !important;
  padding: 0.5rem 1.4rem; border-radius: 50px;
  font-weight: 700 !important; font-size: 0.88rem;
  transition: var(--transition); white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--pink-light) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 6px; z-index: 10;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; overflow: hidden;
  background: var(--maroon-deep);
  border-top: 1px solid rgba(233,30,140,0.15);
  max-height: 0; transition: max-height 0.4s ease;
}
.mobile-menu.open { display: block; max-height: 500px; }

.mobile-nav-links { list-style: none; padding: 1rem 5%; }
.mobile-nav-links li a {
  display: block; color: rgba(255,255,255,0.85);
  font-size: 1rem; font-weight: 500;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav-links li a:hover { color: var(--pink); }
.mobile-cta {
  display: block; margin: 1rem 5% 1.5rem;
  background: var(--pink); color: var(--white);
  padding: 0.85rem 1.5rem; border-radius: 50px;
  font-weight: 700; text-align: center;
  transition: var(--transition);
}
.mobile-cta:hover { background: var(--pink-light); color: var(--white); }

/* ── HERO ────────────────────────────────────────────────── */
.edsp-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 55%, var(--maroon-mid) 100%);
  display: flex; align-items: center;
  padding: calc(var(--nav-height) + 60px) 5% 80px;
  position: relative; overflow: hidden;
}
.edsp-hero::before {
  content: '';
  position: absolute; top: -15%; right: -8%;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(233,30,140,0.14) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.edsp-hero::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(233,30,140,0.09) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-content {
  max-width: 720px; position: relative; z-index: 1;
  animation: fadeUp 0.9s ease both;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.35);
  color: var(--pink-light);
  padding: 0.4rem 1.1rem; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.5px; margin-bottom: 1.5rem;
}
.edsp-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900; color: var(--white);
  line-height: 1.08; margin-bottom: 1.5rem;
}
.edsp-hero h1 em {
  font-style: normal; color: var(--pink);
  text-shadow: 0 0 50px rgba(233,30,140,0.45);
}
.edsp-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 580px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-item { text-align: left; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem; font-weight: 900; color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 0.3rem;
}

/* ── SERVICES ────────────────────────────────────────────── */
.edsp-services { padding: 90px 0; background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.4rem;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem; color: var(--text);
  border: 1px solid rgba(107,15,43,0.07);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--maroon));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; line-height: 1; }
.service-thumb { margin-bottom: 1rem; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 16/9; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--maroon-deep); }
.service-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── HOW IT WORKS ────────────────────────────────────────── */
.edsp-how { padding: 90px 0; background: var(--white); }
.how-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.how-left .section-sub { margin-bottom: 2.5rem; }
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.4rem; border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.step:hover { background: var(--off-white); }
.step-num {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--maroon));
  color: var(--white);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(233,30,140,0.3);
}
.step-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--maroon-deep); }
.step-text p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.how-visual {
  background: linear-gradient(145deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  border-radius: 24px; padding: 3rem; text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 60px rgba(74,10,30,0.3);
}
.how-visual::before {
  content: '🎓'; font-size: 9rem; opacity: 0.07;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); pointer-events: none;
}
.how-visual-tag {
  display: inline-block;
  background: rgba(233,30,140,0.18);
  border: 1px solid rgba(233,30,140,0.3);
  color: var(--pink-light);
  padding: 0.3rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.how-visual h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem; font-weight: 900;
  color: var(--white); line-height: 1.3;
  margin-bottom: 1rem;
}
.how-visual p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }

/* ── SCHOLARSHIPS ────────────────────────────────────────── */
.edsp-scholarships { padding: 90px 0; background: var(--off-white); }
.scholarships-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.scholar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.scholar-card {
  border-radius: var(--radius); padding: 2.5rem;
  color: var(--white); position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.scholar-card:hover { transform: translateY(-6px); color: var(--white); }
.scholar-card.full    { background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-deep) 100%); }
.scholar-card.partial { background: linear-gradient(135deg, #C41862 0%, var(--maroon) 100%); }
.scholar-card.intern  { background: linear-gradient(135deg, var(--maroon-mid) 0%, var(--maroon-deep) 100%); }
.scholar-card::after {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
  pointer-events: none;
}
.scholar-emoji { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.scholar-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.scholar-card p  { font-size: 0.88rem; opacity: 0.8; line-height: 1.65; margin-bottom: 1.5rem; }
.scholar-link { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--white); font-size: 0.85rem; font-weight: 700; opacity: 0.9; }
.scholar-link:hover { opacity: 1; color: var(--white); }

/* ── UPDATES ─────────────────────────────────────────────── */
.edsp-updates { padding: 90px 0; background: var(--white); }
.updates-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem;
}
.updates-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.4rem; }
.update-card {
  border: 1.5px solid rgba(107,15,43,0.09); border-radius: var(--radius);
  padding: 1.8rem; transition: var(--transition); cursor: pointer;
}
.update-card:hover { border-color: var(--pink); box-shadow: 0 10px 40px rgba(233,30,140,0.1); transform: translateY(-4px); }
.update-tag {
  display: inline-block; padding: 0.25rem 0.85rem; border-radius: 50px;
  font-size: 0.73rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1rem;
}
.update-tag.visa       { background: rgba(233,30,140,0.1); color: var(--pink); }
.update-tag.scholarship{ background: rgba(107,15,43,0.08); color: var(--maroon); }
.update-tag.event      { background: rgba(139,26,58,0.1); color: var(--maroon-mid); }
.update-tag.update     { background: rgba(107,15,43,0.08); color: var(--maroon); }
.update-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--maroon-deep); line-height: 1.45; }
.update-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }
.update-date   { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }

/* ── NEWSLETTER ──────────────────────────────────────────── */
.edsp-newsletter {
  padding: 90px 5%;
  background: linear-gradient(135deg, var(--maroon-deep), var(--maroon));
  text-align: center; position: relative; overflow: hidden;
}
.edsp-newsletter::before {
  content: ''; position: absolute; top: -40%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(233,30,140,0.12) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.edsp-newsletter h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15; margin-bottom: 1rem;
}
.edsp-newsletter h2 em { font-style: normal; color: var(--pink); }
.edsp-newsletter > .newsletter-inner > p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; }
.newsletter-form {
  display: flex; gap: 0; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; overflow: hidden; padding: 5px;
}
.newsletter-form input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--white); padding: 0.8rem 1.2rem;
  font-size: 0.95rem; font-family: 'DM Sans', sans-serif;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--pink); color: var(--white); border: none;
  padding: 0.8rem 1.8rem; border-radius: 50px;
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.newsletter-form button:hover { background: var(--pink-light); }
.newsletter-form button.success { background: #28a745; }
.nl-note { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin-top: 1rem; }
.nl-message { margin-top: 0.8rem; font-size: 0.9rem; min-height: 1.2em; }
.nl-message.success { color: #7fff9f; }
.nl-message.error   { color: #ffb3b3; }

/* ── FOOTER ──────────────────────────────────────────────── */
.edsp-footer {
  background: var(--maroon-deep);
  color: rgba(255,255,255,0.6);
  padding: 70px 0 30px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem; font-weight: 900;
  color: var(--white); display: inline-block;
  margin-bottom: 1rem; letter-spacing: 1px;
}
.footer-logo span { color: var(--pink); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--pink); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--white); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 1.2rem; letter-spacing: 0.5px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--pink); }

/* ── BLOG / POSTS ────────────────────────────────────────── */
.edsp-main {
  padding: calc(var(--nav-height) + 50px) 0 80px;
  min-height: 70vh;
}
.edsp-main.edsp-single,
.edsp-main.edsp-page { padding-top: calc(var(--nav-height) + 40px); }

.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.post-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid rgba(107,15,43,0.08); transition: var(--transition); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-thumb img { transform: scale(1.05); }
.post-body { padding: 1.5rem; }
.post-body h2 { font-size: 1.1rem; font-weight: 700; margin: 0.5rem 0; color: var(--maroon-deep); line-height: 1.4; }
.post-body h2 a { color: inherit; transition: color 0.2s; }
.post-body h2 a:hover { color: var(--pink); }
.post-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.post-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-muted); }
.read-more { color: var(--pink); font-weight: 600; }
.read-more:hover { color: var(--maroon); }

.single-header { margin-bottom: 2rem; }
.single-header h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; color: var(--maroon-deep); margin: 0.8rem 0; }
.single-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; }
.single-thumb img { width: 100%; height: auto; }
.single-content { font-size: 1rem; line-height: 1.8; color: var(--text); }
.single-content h2, .single-content h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--maroon-deep); margin: 2rem 0 1rem; }
.single-content p { margin-bottom: 1.2rem; }
.single-content a { color: var(--pink); }
.single-content a:hover { color: var(--maroon); }
.single-footer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--gray-light); }

.page-header h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; color: var(--maroon-deep); margin-bottom: 2rem; }
.page-content { font-size: 1rem; line-height: 1.8; }
.page-content h2, .page-content h3 { font-family: 'Playfair Display', Georgia, serif; color: var(--maroon-deep); margin: 1.8rem 0 0.8rem; }
.page-thumb { border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; }

.pagination { margin-top: 3rem; text-align: center; }
.pagination .nav-links a, .pagination .nav-links span { padding: 0.5rem 1rem; margin: 0 0.2rem; border-radius: 8px; background: var(--off-white); color: var(--maroon); font-weight: 600; transition: var(--transition); }
.pagination .nav-links a:hover, .pagination .nav-links .current { background: var(--maroon); color: var(--white); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media ( max-width: 1024px ) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media ( max-width: 900px ) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .how-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .how-right { display: none; }
}
@media ( max-width: 680px ) {
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .scholarships-header, .updates-header { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; border-radius: 16px; }
  .newsletter-form input { padding: 0.9rem 1.2rem; }
  .newsletter-form button { border-radius: 10px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }
}
@media ( max-width: 480px ) {
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; text-align: center; }
}

/* ── WORDPRESS ADMIN BAR FIX ─────────────────────────────── */
.admin-bar .edsp-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .edsp-nav { top: 46px; } }

/* ── ALIGNMENTS (WordPress blocks) ──────────────────────── */
.alignleft  { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; text-align: center; }
