
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root{
  --green:#075c2d;
  --green-2:#0a7138;
  --green-3:#dff0e4;
  --deep:#063d20;
  --cream:#f7f7f1;
  --paper:#fff;
  --ink:#15201a;
  --muted:#69756d;
  --line:#e3e8e3;
  --gold:#d9b84c;
  --danger:#a23b2d;
  --shadow:0 18px 50px rgba(8,48,27,.09);
  --radius:22px;
  --max:1180px;
  --border: rgba(0, 0, 0, 0.08);

}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream);color:var(--ink);font-family:"DM Sans",system-ui,sans-serif;line-height:1.65}
h1,h2,h3,h4{font-family:Manrope,system-ui,sans-serif;line-height:1.12;margin:0}
h1{font-size:clamp(3rem,7vw,6.2rem);letter-spacing:-.065em}
h2{font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-.045em}
h3{font-size:1.15rem}
p{margin:0}
a{text-decoration:none;color:inherit}
button,input,select{font:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--max),92%);margin:auto}

.topbar{background:var(--deep);color:#d9e9de;font-size:.78rem}
.topbar-inner{min-height:34px;display:flex;align-items:center;justify-content:space-between;gap:15px}
.topbar a{color:#fff;text-decoration:underline;text-underline-offset:3px}

.header{position:sticky;top:0;z-index:100;background:rgba(247,247,241,.94);backdrop-filter:blur(18px);border-bottom:1px solid rgba(227,232,227,.85)}
.nav{height:78px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.brand{display:flex;align-items:center;gap:11px;min-width:max-content}
.brand-mark{width:42px;height:42px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;font-family:Manrope;font-weight:800}
.brand-name{font-family:Manrope;font-weight:800;color:var(--green);font-size:1.05rem}
.brand-tag{display:block;font-size:.63rem;color:var(--muted);font-weight:500}
.nav-links{display:flex;align-items:center;gap:21px;font-size:.86rem;font-weight:600}
.nav-links a{position:relative;padding:8px 0}
.nav-links a:hover,.nav-links a.active{color:var(--green)}
.nav-links a.active:after{content:"";position:absolute;left:0;right:0;bottom:0;height:2px;background:var(--green);border-radius:99px}
.header-search{display:flex;align-items:center;border:1px solid var(--line);background:#fff;border-radius:999px;padding:5px 8px 5px 14px}
.header-search input{width:125px;border:0;outline:0;background:transparent;font-size:.8rem}
.header-search button{width:34px;height:34px;border:0;border-radius:50%;background:var(--green);color:#fff;cursor:pointer}
.menu-btn{display:none;width:42px;height:42px;border:0;border-radius:50%;background:var(--green);color:#fff;cursor:pointer}
/* ================================
   MOBILE NAVIGATION
================================ */

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  padding: 18px 5%;
  background: var(--cream);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-weight: 700;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a:last-child {
  border-bottom: none;
}


/* ================================
   MOBILE HEADER
================================ */


.nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid var(--border);
  border-left: 0.5px solid var(--border);
}

.nav-grid-item {
  padding: 26px 24px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  transition: background 0.15s ease;
}

.nav-grid-item:hover { background: var(--bg); }

.nav-grid-title { font-weight: 600; font-size: 15px; margin-bottom: 5px; }
.nav-grid-desc { font-size: 13px; color: var(--text-secondary); }
.hero{position:relative;min-height:650px;background:var(--green);color:#fff;overflow:hidden}
.hero:before{content:"";position:absolute;inset:0;background-image:linear-gradient(90deg,rgba(2,54,25,.98) 0%,rgba(2,54,25,.88) 38%,rgba(2,54,25,.43) 72%,rgba(2,54,25,.58) 100%),url("assets/hero.png");background-size:cover;background-position:center;opacity:1}
.hero-inner{position:relative;min-height:650px;display:flex;align-items:center;padding:75px 0}
.hero-copy{max-width:710px}
.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18);font-size:.78rem;font-weight:700;color:#e8f4eb;margin-bottom:20px}
.eyebrow.dark{background:var(--green-3);border-color:transparent;color:var(--green)}
.hero h1{max-width:780px}
.hero h1 span{color:#d8ef9d}
.hero-copy>p{max-width:650px;color:#e3eee6;font-size:1.08rem;margin:24px 0 28px}
.actions{display:flex;gap:11px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 18px;border-radius:12px;border:1px solid transparent;font-weight:800;cursor:pointer;transition:.2s}
.btn-primary{background:#fff;color:var(--green)}
.btn-primary:hover{transform:translateY(-2px)}
.btn-green{background:var(--green);color:#fff}
.btn-green:hover{background:var(--deep)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.38)}
.btn-outline{background:#fff;color:var(--green);border-color:var(--green)}
.hero-stats{display:flex;gap:28px;flex-wrap:wrap;margin-top:35px}
.hero-stat strong{font-family:Manrope;font-size:1.25rem}
.hero-stat span{display:block;font-size:.76rem;color:#bdd6c5}

.section{padding:76px 0}
.section-sm{padding:48px 0}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:25px;margin-bottom:30px}
.section-head p{max-width:650px;color:var(--muted);margin-top:10px}
.kicker{font-size:.75rem;font-weight:800;color:var(--green);letter-spacing:.08em;text-transform:uppercase;margin-bottom:9px}
.link{color:var(--green);font-weight:800;text-decoration:underline;text-underline-offset:4px}

.audience-grid,.card-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:24px;box-shadow:0 3px 18px rgba(12,46,27,.03);transition:.2s}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.icon{width:46px;height:46px;border-radius:14px;background:var(--green-3);display:grid;place-items:center;color:var(--green);font-size:1.25rem;margin-bottom:18px}
.card p{color:var(--muted);font-size:.9rem;margin-top:8px}
.card .arrow{margin-top:18px;color:var(--green);font-weight:800;font-size:.86rem}

.split-grid{display:grid;grid-template-columns:1.35fr 1fr;gap:18px}
.panel{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:27px}
.panel.soft{background:#eef5ee}
.feed{display:grid;gap:0}
.feed-item{display:grid;grid-template-columns:44px 1fr;gap:14px;padding:17px 0;border-bottom:1px solid var(--line)}
.feed-item:last-child{border-bottom:0}
.feed-icon{width:42px;height:42px;border-radius:12px;background:var(--green-3);display:grid;place-items:center}
.feed-title{font-weight:800}
.meta{font-size:.72rem;font-weight:800;color:var(--green);text-transform:uppercase;letter-spacing:.03em}
.muted{color:var(--muted)}

.resource-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:18px;overflow:hidden}
.resource{background:#fff;padding:21px;min-height:135px}
.resource .icon{margin-bottom:12px}
.resource h3{font-size:.98rem}
.resource p{font-size:.8rem;color:var(--muted);margin-top:5px}

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

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

.group-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.15s ease;
}

.group-card:hover { border-color: var(--green-soft); }

.group-dept { font-size: 14px; font-weight: 500; }

.group-join {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 12px;
}
.note {
  background: var(--bg);
  border-left: 3px solid var(--gold);
  border-radius: 0;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 8px 0 40px;
}

.note strong { color: var(--text); }
.section { padding: 72px 0; }
.section-muted { background: var(--surface); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.4px;
  margin-bottom: 32px;
}
.college-block { margin-bottom: 44px; }

.college-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.college-sub { font-size: 13px; color: var(--text-secondary); margin-bottom: 18px; }

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

.group-card {
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.15s ease;
}

.group-card:hover { border-color: var(--green-soft); }

.group-dept { font-size: 14px; font-weight: 500; }

.group-join {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  flex-shrink: 0;
  margin-left: 12px;
}

.event-list{display:grid;gap:12px}
.event{display:flex;gap:14px;align-items:flex-start;padding:14px;border:1px solid var(--line);border-radius:15px}
.date{min-width:52px;text-align:center;border-radius:12px;background:var(--green-3);color:var(--green);padding:7px 4px;font-weight:800}
.date strong{display:block;font-size:1.2rem;line-height:1}
.date span{font-size:.65rem}
.event p{font-size:.8rem;color:var(--muted);margin-top:3px}

.department{background:var(--green);color:#fff;border-radius:26px;padding:36px;overflow:hidden;position:relative}
.department:after{position:absolute;right:0;bottom:-65px;font:900 14rem/1 Manrope;color:rgba(255,255,255,.06)}
.department p{color:#d2e5d9;max-width:620px;margin-top:9px}
.searchbox{position:relative;z-index:2;display:flex;max-width:700px;background:#fff;border-radius:999px;padding:5px;margin-top:22px}
.searchbox input{flex:1;min-width:0;border:0;outline:0;padding:12px 15px}
.searchbox button{border:0;border-radius:999px;background:var(--green);color:#fff;padding:11px 19px;font-weight:800;cursor:pointer}
.tags{display:flex;gap:7px;flex-wrap:wrap;position:relative;z-index:2;margin-top:12px}
.tag{border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:5px 10px;font-size:.72rem}

.page-hero{padding:78px 0 55px;background:linear-gradient(180deg,#eaf4ec 0%,var(--cream) 100%)}
.page-hero h1{font-size:clamp(2.8rem,6vw,5rem);max-width:900px}
.page-hero p{max-width:750px;color:var(--muted);font-size:1.06rem;margin-top:16px}
.notice{border-left:4px solid var(--green);background:var(--green-3);padding:17px 19px;border-radius:0 14px 14px 0}
.alert{border-left-color:var(--danger);background:#f8e9e6}
.two-col{display:grid;grid-template-columns:1.2fr .8fr;gap:22px}
.three-col{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.checklist{display:grid;gap:11px;margin-top:15px}
.check{display:flex;gap:10px;align-items:flex-start;background:#fff;border:1px solid var(--line);border-radius:14px;padding:14px}
.check b{color:var(--green)}
.numbered{counter-reset:item;display:grid;gap:13px}
.step{counter-increment:item;display:grid;grid-template-columns:38px 1fr;gap:12px;align-items:start}
.step:before{content:counter(item);width:36px;height:36px;border-radius:50%;background:var(--green-3);color:var(--green);display:grid;place-items:center;font-weight:800}
.table-wrap{overflow:auto;border:1px solid var(--line);border-radius:18px;background:#fff}
table{width:100%;border-collapse:collapse;min-width:650px}
th,td{text-align:left;padding:13px 15px;border-bottom:1px solid var(--line);font-size:.86rem}
th{background:#f0f5f1;color:var(--green)}
tr:last-child td{border-bottom:0}
.filter-row{display:flex;gap:9px;flex-wrap:wrap;margin:20px 0}
.filter{border:1px solid var(--line);background:#fff;border-radius:999px;padding:8px 13px;font-weight:700;cursor:pointer}
.filter.active,.filter:hover{background:var(--green);color:#fff;border-color:var(--green)}
.search-page{display:flex;gap:10px;background:#fff;border:1px solid var(--line);border-radius:16px;padding:7px}
.search-page input{flex:1;border:0;outline:0;padding:10px}
.search-page button{border:0;background:var(--green);color:#fff;border-radius:11px;padding:10px 17px;font-weight:800}
.empty{padding:45px;text-align:center;color:var(--muted);background:#fff;border:1px dashed var(--line);border-radius:18px}
.page-hero {
    padding: 7rem 0 5rem;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
}

.page-intro {
    max-width: 620px;
    margin-top: 2rem;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted-text);
}

.explore-section {
    padding: 6rem 0;
}

.explore-section-alt {
    background: var(--surface-alt, #f5f5ef);
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.section-heading > p {
    max-width: 430px;
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
}

.eyebrow {
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.map-feature {
    border-top: 1px solid var(--border-color);
}

.map-placeholder {
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9e9e1;
    border-bottom: 1px solid var(--border-color);
}

.map-placeholder-content {
    text-align: center;
    max-width: 420px;
    padding: 2rem;
}

.placeholder-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.map-placeholder h3 {
    margin: 1rem 0 0.75rem;
    font-size: 2rem;
}
.subhead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.2px;
  margin: 40px 0 16px;
}

.subhead:first-child { margin-top: 0; }
.map-placeholder p {
    margin: 0;
    color: var(--muted-text);
}

.map-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.5rem 0;
}

.map-actions p {
    margin: 0;
    color: var(--muted-text);
    font-size: 0.9rem;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.3rem;
    text-decoration: none;
    font-weight: 600;
}

.button-primary {
    background: #174f32;
    color: white;
}

.sug-intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-number {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.sug-intro h3 {
    margin: 0 0 0.75rem;
    font-size: 2rem;
}

.sug-intro p {
    max-width: 650px;
    margin: 0;
    color: var(--muted-text);
    line-height: 1.7;
}

.text-link {
    white-space: nowrap;
    color: inherit;
    font-weight: 600;
    text-decoration: none;
}

.text-link span {
    margin-left: 0.5rem;
}

.executive-placeholder {
    min-height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    border: 1px dashed var(--border-color);
    text-align: center;
}

.executive-placeholder span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.executive-placeholder p {
    margin-top: 0.75rem;
    color: var(--muted-text);
}

.explore-links {
    border-top: 1px solid var(--border-color);
}

.explore-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    color: inherit;
    text-decoration: none;
}

.explore-link > div > span {
    font-size: 0.75rem;
    font-weight: 700;
}

.explore-link h3 {
    margin: 0.5rem 0;
    font-size: 1.5rem;
}

.explore-link p {
    margin: 0;
    color: var(--muted-text);
}

.explore-link .arrow {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.explore-link:hover .arrow {
    transform: translateX(6px);
}

@media (max-width: 768px) {

    .page-hero {
        padding: 5rem 0 4rem;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .explore-section {
        padding: 4rem 0;
    }

    .map-placeholder {
        min-height: 360px;
    }

    .map-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .sug-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .explore-link {
        align-items: flex-start;
    }

}
.footer{margin-top:20px;background:#063d20;color:#d5e6db;padding:55px 0 22px}
.footer-grid{display:grid;grid-template-columns:1.5fr repeat(3,1fr);gap:32px}
.footer h3{color:#fff;margin-bottom:12px}
.footer p,.footer a{font-size:.84rem;color:#bcd4c5}
.footer-links{display:grid;gap:7px}
.footer a:hover{color:#fff}
.footer-bottom{display:flex;justify-content:space-between;gap:20px;border-top:1px solid rgba(255,255,255,.14);margin-top:35px;padding-top:18px;font-size:.75rem;color:#9fbeaa}
.sources{font-size:.75rem;color:var(--muted);margin-top:28px}

@media(max-width:1050px){
 .nav-links{gap:13px}.header-search{display:none}
 .audience-grid{grid-template-columns:repeat(2,1fr)}
 .split-grid,.two-col{grid-template-columns:1fr}
 .three-col{grid-template-columns:1fr 1fr}
 .footer-grid{grid-template-columns:1.3fr 1fr 1fr}
 .nav-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:760px){
 .topbar-inner{justify-content:center;text-align:center}
 .nav{height:70px}.nav-links{display:none}.menu-btn{display:block}
 .hero,.hero-inner{min-height:610px}.hero-inner{padding:55px 0}
 .hero h1{font-size:3.45rem}
 .section{padding:55px 0}
 .section-head{display:block}
 .audience-grid,.card-grid,.three-col,.footer-grid{grid-template-columns:1fr}
 .resource-grid{grid-template-columns:1fr 1fr}
 .department{padding:27px}
 .footer-bottom{display:block}
}
@media(max-width:470px){
 .hero h1{font-size:2.8rem}
 .resource-grid{grid-template-columns:1fr}
 .actions .btn{width:100%}
 .nav-grid { grid-template-columns: 1fr; }
  .nav-grid-item { border-right: none; }
}
/* =========================================================
   MOBILE RESPONSIVE FIX
   Academics + Groups + shared layouts
   ========================================================= */

/* Prevent ANY element from creating page-wide overflow */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Make every main container fit the viewport */
.container {
  width: 100%;
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 4%;
  padding-right: 4%;
}

/* ---------------------------------------------------------
   ACADEMICS
   --------------------------------------------------------- */

.nav-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nav-grid-item {
  min-width: 0;
  overflow-wrap: anywhere;
}

.nav-grid-title,
.nav-grid-desc {
  min-width: 0;
  overflow-wrap: anywhere;
}

.college-block {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.college-block > * {
  max-width: 100%;
}

.two-col {
  min-width: 0;
}

.two-col > * {
  min-width: 0;
}

/* ---------------------------------------------------------
   GROUPS
   --------------------------------------------------------- */

.group-grid {
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.group-card {
  min-width: 0;
  max-width: 100%;
}

.group-dept {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

.group-join {
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   TABLES
   --------------------------------------------------------- */

.table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrap table {
  min-width: 650px;
}

/* ---------------------------------------------------------
   SEARCH / FORMS
   --------------------------------------------------------- */

.searchbox,
.search-page {
  max-width: 100%;
  width: 100%;
}

.searchbox input {
  min-width: 0;
}

.searchbox button {
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   IMAGES
   --------------------------------------------------------- */

img,
iframe,
video {
  max-width: 100%;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1050px) {

  .nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

/* ---------------------------------------------------------
   PHONE
   --------------------------------------------------------- */

@media (max-width: 760px) {

  .container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  /* Academics */
  .nav-grid {
    grid-template-columns: 1fr;
  }

  .nav-grid-item {
    padding: 20px 18px;
  }

  /* Groups */
  .group-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .group-card {
    width: 100%;
    padding: 16px;
  }

  .group-dept {
    font-size: 14px;
    line-height: 1.45;
    padding-right: 10px;
  }

  /* Headings */
  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .page-hero p {
    max-width: 100%;
  }

  .section-title {
    font-size: 24px;
  }

  /* Two-column sections */
  .two-col {
    grid-template-columns: 1fr;
  }

  /* Explore */
  .section-heading {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    min-height: 320px;
  }

  .map-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .map-actions .button {
    width: 100%;
    justify-content: center;
  }

  .sug-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .explore-link {
    align-items: flex-start;
    gap: 15px;
  }

  .explore-link > div {
    min-width: 0;
  }

  .explore-link h3 {
    overflow-wrap: anywhere;
  }

}

/* ---------------------------------------------------------
   SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 470px) {

  .container {
    padding-left: 4.5%;
    padding-right: 4.5%;
  }

  .nav-grid-item {
    padding: 18px 15px;
  }

  .group-card {
    padding: 15px;
  }

  .group-dept {
    font-size: 13px;
  }

  .group-join {
    font-size: 11px;
    margin-left: 8px;
  }

  .table-wrap {
    border-radius: 12px;
  }

  .table-wrap table {
    min-width: 600px;
  }

  .searchbox {
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .searchbox input {
    width: 100%;
    flex: 1 1 100%;
  }

  .searchbox button {
    width: 100%;
  }

  .explore-link {
    padding: 1.4rem 0;
  }

  .explore-link .arrow {
    flex-shrink: 0;
  }

}
@media (max-width: 760px) {

  .nav-links {
    display: none;
  }

  .header-search {
    display: none;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background:var(--green);color:#fff;
    border: 1px solid var(--line);
    border-radius: 82px;
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    position: relative;
    z-index: 1100;
  }

  .mobile-nav {
    position: relative;
    z-index: 1000;
  }

}
/* =========================
   SUG EXECUTIVES
========================== */

.executive-section {
    margin-top: 80px;
}

.executive-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.executive-section-heading > div {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.executive-section-heading h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.session-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--green);
    border: 1px solid rgba(0, 70, 45, 0.2);
    padding: 8px 13px;
    border-radius: 100px;
}


/* Grid */

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


/* Card */

.executive-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.executive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}


/* Image */

.executive-image {
    width: 100%;
    aspect-ratio: 4 / 4.6;
    overflow: hidden;
    background: #e9eee9;
}

.executive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.executive-card:hover .executive-image img {
    transform: scale(1.04);
}


/* Information */

.executive-info {
    padding: 22px 22px 24px;
}

.executive-position {
    display: block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
}

.executive-info h4 {
    margin: 0 0 7px;
    font-size: 1.25rem;
    line-height: 1.2;
}

.executive-info p {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
}

/* =========================================================
   GLOBAL SEARCH RESULTS
   ========================================================= */

.search-results-page {
  width: 100%;
  max-width: 900px;
}

.search-category {
  margin-bottom: 42px;
}

.search-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
}

.search-category-head .kicker {
  margin: 0;
}

.search-category-head > span {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 700;
}

.search-category-results {
  display: grid;
}

.search-result-item {
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-category {
  display: none;
}

.search-result-title {
  font-size: 1.15rem;
  margin: 0;
}

.search-result-title a {
  color: var(--ink);
}

.search-result-title a:hover {
  color: var(--green);
}

.search-result-description {
  color: var(--muted);
  font-size: .88rem;
  margin-top: 5px;
  max-width: 720px;
}

.search-result-source {
  margin-top: 7px;
  color: var(--green);
  font-size: .7rem;
  font-weight: 700;
}

.search-page {
  width: 100%;
  max-width: 900px;
  display: flex;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 7px;
}

.search-page input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 14px;
  background: transparent;
}

.search-page button {
  flex-shrink: 0;
  border: 0;
  background: var(--green);
  color: #fff;
  border-radius: 11px;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
}

.search-page button:hover {
  background: var(--deep);
}

@media (max-width: 600px) {

  .search-page {
    flex-wrap: wrap;
    border-radius: 14px;
  }

  .search-page input {
    width: 100%;
    flex: 1 1 100%;
  }

  .search-page button {
    width: 100%;
  }

  .search-category-head {
    align-items: flex-start;
  }

  .search-result-item {
    padding: 17px 2px;
  }

}
/* Tablet */

@media (max-width: 900px) {

    .executive-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .executive-section {
        margin-top: 55px;
    }

    .executive-section-heading {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 25px;
    }

    .executive-section-heading h3 {
        font-size: 2rem;
    }

    .executive-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .executive-image {
        aspect-ratio: 4 / 4.5;
    }

}