/* ==========================================================================
   Study Partners — shared stylesheet
   ========================================================================== */

:root{
  --green-dark: #16311f;
  --green: #1b6b3d;
  --green-light: #2f8a54;
  --gold: #dba632;
  --gold-dark: #b3822c;
  --cream: #faf6ec;
  --white: #ffffff;
  --ink: #22291f;
  --muted: #5b665c;
  --border: #e6e0cf;
  --shadow: 0 10px 30px rgba(22, 49, 31, 0.08);
  --radius: 14px;
  --max-width: 1160px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
h1, h2, h3, h4{
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1{ font-size: clamp(2rem, 4vw, 3rem); }
h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3{ font-size: 1.3rem; }
p{ margin: 0 0 1em; color: var(--muted); }
a{ color: var(--green); text-decoration: none; }
a:hover{ text-decoration: underline; }
img{ max-width: 100%; display: block; }
ul{ padding-left: 1.2em; }
.container{
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
section{ padding: 72px 0; }
.section-tight{ padding: 40px 0; }
.text-center{ text-align: center; }
.eyebrow{
  display: inline-block;
  color: var(--gold-dark);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin-bottom: .6em;
}
.lede{ font-size: 1.15rem; max-width: 640px; }
.center-col{ margin-left: auto; margin-right: auto; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .96rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover{ text-decoration: none; transform: translateY(-2px); }
.btn-gold{ background: var(--gold); color: var(--green-dark); }
.btn-gold:hover{ background: var(--gold-dark); }
.btn-outline{ background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.12); }
.btn-outline-dark{ background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline-dark:hover{ background: var(--green); color: var(--white); }
.btn-whatsapp{ background: #25D366; color: #08331b; }
.btn-whatsapp:hover{ background: #1ebd58; }
.btn-block{ width: 100%; justify-content: center; }
.cta-row{ display: flex; gap: 14px; flex-wrap: wrap; }

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 700;
}
.brand img{ height: 46px; width: auto; }
.brand-name{ font-family: Georgia, serif; font-size: 1.25rem; }
.brand-name small{ display:block; font-size: .6rem; letter-spacing: .18em; color: var(--gold-dark); font-family: -apple-system, sans-serif; font-weight: 700; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.nav-links a.active{ color: var(--green); }
.nav-actions{ display: flex; align-items: center; gap: 12px; }
.nav-toggle{
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--green-dark);
}
.mobile-panel{ display: none; }

@media (max-width: 880px){
  .nav-links{
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 16px;
    display: none;
    max-height: 80vh;
    overflow-y: auto;
  }
  .nav-links.open{ display: flex; }
  .nav-actions .btn-gold{ display: none; }
  .nav-toggle{ display: block; }
}

/* Nav dropdowns ("Partners", "More") */
.nav-dropdown{ position: relative; }
.nav-dropdown-toggle{
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown-toggle .caret{ font-size: .7em; transition: transform .15s ease; }
.nav-dropdown.open .nav-dropdown-toggle .caret{ transform: rotate(180deg); }
.nav-dropdown-toggle:hover{ color: var(--green); }
.nav-dropdown-menu{
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow);
  min-width: 210px;
  padding: 8px;
  list-style: none;
  display: none;
  z-index: 60;
}
.nav-dropdown.open .nav-dropdown-menu{ display: block; }
.nav-dropdown-menu li{ margin: 0; }
.nav-dropdown-menu a{
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink);
}
.nav-dropdown-menu a:hover{ background: var(--cream); text-decoration: none; }

@media (max-width: 880px){
  .nav-dropdown-menu{
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 14px;
    margin-top: 8px;
    min-width: 0;
  }
}

/* Hero */
.hero{
  background: linear-gradient(135deg, var(--green-dark), var(--green) 60%, var(--green-light));
  color: var(--white);
  padding: 90px 0 80px;
}
.hero .eyebrow{ color: var(--gold); }
.hero h1{ color: var(--white); }
.hero p.lede{ color: rgba(255,255,255,.88); }
.hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-badges{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-badge{
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  color: var(--white);
}
.hero-card{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 28px;
}
.hero-card h3{ color: var(--white); }
.hero-card ol{ color: rgba(255,255,255,.9); padding-left: 1.2em; }
.hero-card li{ margin-bottom: 8px; }

@media (max-width: 880px){
  .hero-grid{ grid-template-columns: 1fr; }
}

/* Page header (non-home pages) */
.page-header{
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

/* Cards / grids */
.grid{ display: grid; gap: 24px; }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 880px){
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
}
@media (min-width: 881px) and (max-width: 1080px){
  .grid-4{ grid-template-columns: repeat(2, 1fr); }
}

.card{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.card h3{ margin-bottom: .4em; }
.icon-badge{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.bg-cream{ background: var(--cream); }
.bg-green{ background: var(--green-dark); color: var(--white); }
.bg-green h2, .bg-green h3{ color: var(--white); }
.bg-green p{ color: rgba(255,255,255,.85); }

/* Timeline (process/services) */
.timeline{ position: relative; margin-top: 40px; }
.timeline-item{
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding-bottom: 40px;
  position: relative;
}
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-num{
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 1;
}
.timeline-item::before{
  content: "";
  position: absolute;
  left: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before{ display: none; }
.timeline-content h3{ margin-bottom: 8px; }
.timeline-content ul{ margin: 10px 0 0; color: var(--muted); }
.timeline-content li{ margin-bottom: 6px; }

/* Pricing */
.price-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card.featured{ border-color: var(--gold); position: relative; }
.price-tag{
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-amount{
  font-family: Georgia, serif;
  font-size: 1.6rem;
  color: var(--green-dark);
  margin: 6px 0 18px;
}
.price-card ul{ list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.price-card li{ padding: 8px 0; border-bottom: 1px dashed var(--border); color: var(--ink); }
.price-card li:last-child{ border-bottom: none; }
.price-note{
  background: var(--cream);
  border: 1px dashed var(--gold-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 20px;
  font-size: .92rem;
}

/* FAQ */
.faq-item{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 24px;
  margin-bottom: 14px;
  background: var(--white);
}
.faq-item summary{
  cursor: pointer;
  font-weight: 700;
  color: var(--green-dark);
  padding: 16px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-left: 12px;
}
.faq-item[open] summary::after{ content: "\2212"; }
.faq-item p{ padding-bottom: 16px; margin: 0; }

/* Forms */
.form-grid{ display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.form-grid .full{ grid-column: 1 / -1; }
@media (max-width: 700px){ .form-grid{ grid-template-columns: 1fr; } }
label{ display: block; font-weight: 600; margin-bottom: 6px; font-size: .92rem; color: var(--ink); }
input, select, textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
}
input:focus, select:focus, textarea:focus{ outline: 2px solid var(--green-light); border-color: var(--green-light); }
.form-note{ font-size: .85rem; color: var(--muted); margin-top: 10px; }

/* Contact tiles */
.contact-tile{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
}
.contact-tile .icon-badge{ margin-bottom: 0; flex-shrink: 0; }

/* Footer */
.site-footer{
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 56px 0 28px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 880px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
.site-footer h4{ color: var(--white); font-size: 1rem; margin-bottom: 14px; }
.site-footer .brand-name{ color: var(--white); }
.site-footer .brand-name small{ color: var(--gold); }
.site-footer a{ color: rgba(255,255,255,.8); }
.site-footer ul{ list-style: none; padding: 0; margin: 0; }
.site-footer li{ margin-bottom: 10px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
}

/* WhatsApp floating button */
.wa-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
  z-index: 60;
  text-decoration: none;
}
.wa-float:hover{ transform: scale(1.06); text-decoration: none; }

/* Utilities */
.tag{
  display: inline-block;
  background: var(--cream);
  color: var(--green-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .78rem;
  font-weight: 700;
  margin: 0 6px 6px 0;
}
.badge-soon{
  background: var(--gold);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.divider{ height: 1px; background: var(--border); margin: 48px 0; border: none; }
.flag{ font-size: 1.6rem; }

/* ==========================================================================
   Student portal / admin additions
   ========================================================================== */

.config-warning{
  background: #fff4e0;
  border: 1px solid var(--gold-dark);
  color: #6b4c12;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: .92rem;
}
.config-warning code{
  background: rgba(0,0,0,.06);
  padding: 2px 6px;
  border-radius: 4px;
}

.auth-shell{
  max-width: 460px;
  margin: 0 auto;
}
.auth-shell .card{ padding: 36px; }
.form-error{
  background: #fdeceb;
  border: 1px solid #e5b3ad;
  color: #8a2f24;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  margin-bottom: 16px;
  display: none;
}
.form-success{
  background: #eaf6ee;
  border: 1px solid #a9d8b8;
  color: #1a5c33;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  margin-bottom: 16px;
  display: none;
}
.form-error.show, .form-success.show{ display: block; }

/* Status stepper */
.stepper{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
.step{
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 12px 8px;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: .82rem;
  font-weight: 700;
}
.step.done{ background: var(--green); color: var(--white); border-color: var(--green); }
.step.current{ background: var(--gold); color: var(--green-dark); border-color: var(--gold-dark); }

/* Status badges */
.status-badge{
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: capitalize;
}
.status-badge.lead{ background: #eee; color: #555; }
.status-badge.consulted{ background: #e3edff; color: #1c4a8a; }
.status-badge.applied{ background: #fff3d6; color: #8a6812; }
.status-badge.admitted{ background: #e0f3e8; color: #1a6b3d; }
.status-badge.visa_pending{ background: #fde8d6; color: #9a4a12; }
.status-badge.enrolled{ background: var(--green); color: var(--white); }
.status-badge.submitted{ background: #eee; color: #555; }
.status-badge.approved{ background: #e0f3e8; color: #1a6b3d; }
.status-badge.rejected{ background: #fdeceb; color: #8a2f24; }

/* Data table (documents, admin student list) */
.data-table{ width: 100%; border-collapse: collapse; font-size: .92rem; }
.data-table th, .data-table td{
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.data-table th{ color: var(--green-dark); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.table-wrap{ overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.table-wrap .data-table{ margin: 0; }
.table-wrap .data-table th, .table-wrap .data-table td{ border-bottom: 1px solid var(--border); }
.data-table tr:last-child td{ border-bottom: none; }
.link-btn{
  background: none;
  border: none;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-size: .88rem;
}
.link-btn:hover{ text-decoration: underline; }
.link-btn.danger{ color: #8a2f24; }

.empty-state{
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

/* Portal layout */
.portal-header{
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.portal-grid{ display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: start; }
@media (max-width: 880px){ .portal-grid{ grid-template-columns: 1fr; } }
.portal-sidebar .card{ padding: 22px; }
.portal-sidebar h3{ font-size: 1.05rem; }
.portal-sidebar dl{ margin: 0; }
.portal-sidebar dt{ font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-top: 14px; }
.portal-sidebar dd{ margin: 2px 0 0; font-weight: 600; color: var(--ink); }

.upload-row{
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}
@media (max-width: 700px){ .upload-row{ grid-template-columns: 1fr; } }

.foundation-banner{
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 40px;
}
.foundation-banner h3{ color: var(--gold); }
.foundation-banner p{ color: rgba(255,255,255,.88); }
.foundation-tracks{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.foundation-track{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: 14px;
  font-size: .88rem;
  font-weight: 600;
  text-align: center;
}

.uni-stats{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0 0;
}
.uni-stats span{
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: .75rem;
  color: var(--green-dark);
  font-weight: 700;
}

.lang-compare{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 760px){ .lang-compare{ grid-template-columns: 1fr; } }
.lang-path{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}
.lang-path h4{ color: var(--green-dark); margin-bottom: 10px; }
.lang-path ol{ margin: 0; padding-left: 1.2em; color: var(--muted); }
.lang-path li{ margin-bottom: 6px; }

/* Social links + share buttons */
.social-links{
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.social-links a{
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.social-links a:hover{ color: var(--gold); text-decoration: none; }

.share-bar{
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.share-bar a, .share-bar button{
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--green-dark);
  cursor: pointer;
  text-decoration: none;
}
.share-bar a:hover, .share-bar button:hover{ background: var(--gold); border-color: var(--gold-dark); text-decoration: none; }

/* Testimonials */
.testimonial-filters{
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 36px;
}
.filter-btn{
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
}
.filter-btn.active{ background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.testimonial-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.testimonial-media{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--cream);
  position: relative;
}
.testimonial-media-wrap{ position: relative; }
.play-badge{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(22,49,31,.75);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.testimonial-body{ padding: 18px; }
.testimonial-quote{ font-style: italic; color: var(--ink); margin-bottom: 10px; }
.testimonial-meta{ font-size: .82rem; color: var(--muted); }

.video-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}
.video-modal.open{ display: flex; }
.video-modal-inner{
  background: #000;
  width: min(900px, 100%);
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video-modal-inner iframe, .video-modal-inner img{
  width: 100%; height: 100%; border: none; object-fit: contain;
}
.video-modal-close{
  position: absolute;
  top: -40px; right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

/* Degree directory */
.degree-card{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}
.degree-card .tag{ margin-right: 6px; }
.degree-meta{ display: flex; gap: 16px; flex-wrap: wrap; margin: 12px 0; font-size: .85rem; color: var(--muted); }
.degree-meta strong{ color: var(--green-dark); }
