/* ============================================================
   BSA UTEP — editorial community theme
   Preserves the association green, red, cream, and UTEP orange.
   ============================================================ */

:root {
  --green: #026048;
  --green-deep: #013c2d;
  --green-mid: #08785b;
  --green-band: #c5ebc6;
  --green-wash: #edf7ee;
  --green-pale: #f4faf5;
  --red: #ec293a;
  --red-deep: #bd1d2b;
  --orange: #ff8200;
  --orange-dim: #b85e00;
  --blue: #041e42;
  --sand: #f6f1e6;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #15221c;
  --ink-soft: #4a5d54;
  --rule: rgba(2, 96, 72, 0.16);
  --shadow-sm: 0 8px 24px rgba(1, 64, 47, 0.08);
  --shadow-md: 0 22px 60px rgba(1, 64, 47, 0.14);
  --display: "Fraunces", Georgia, serif;
  --body: "Hind Siliguri", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --wrap: 1220px;
  --gut: clamp(1.25rem, 4.5vw, 3.5rem);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main { overflow: hidden; }
img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-deep); }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; border-radius: 3px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip {
  position: fixed; left: -9999px; top: 1rem;
  z-index: 9999; padding: 0.75rem 1.25rem;
  background: var(--orange); color: var(--green-deep); font-weight: 700;
}
.skip:focus { left: 1rem; }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 0.55em;
}
h1 { font-size: clamp(2.65rem, 6vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.45rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.012em; }
p { margin-top: 0; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--orange-dim);
  margin: 0 0 0.9rem;
}
.eyebrow.on-dark { color: var(--orange); }
.lead {
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  line-height: 1.58;
  color: var(--ink-soft);
  max-width: 50ch;
}
.text-link { font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; transition: transform 0.2s ease; }
.text-link:hover span { transform: translateX(4px); }

/* ---------- Header ---------- */

.utility-bar { background: var(--green-deep); color: rgba(255,255,255,0.78); font-size: 0.77rem; }
.utility-inner {
  min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  letter-spacing: 0.035em;
}
.utility-inner a { color: var(--orange); text-decoration: none; font-weight: 600; white-space: nowrap; }
.utility-links { display: flex; align-items: center; gap: 1rem; }
.utility-links .utility-join { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.2); color: #fff; }

.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(197, 235, 198, 0.96);
  border-bottom: 1px solid rgba(1,64,47,0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(1,64,47,0.08);
}
.head-inner {
  min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: 0.8rem; color: var(--green-deep); text-decoration: none; min-width: 230px; }
.brand-mark, .custom-logo { width: 56px; height: 56px; flex: none; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.13; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(1,64,47,0.72); }

.site-nav ul { display: flex; align-items: center; gap: clamp(0.65rem, 1.35vw, 1.2rem); list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; position: relative; color: var(--green-deep); text-decoration: none;
  font-size: 0.91rem; font-weight: 600; padding: 0.55rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0.2rem; height: 2px;
  background: var(--red); transition: right 0.2s ease;
}
.site-nav a:hover { color: var(--green-deep); }
.site-nav a:hover::after,
.site-nav .current-menu-item > a::after,
.site-nav .current_page_item > a::after { right: 0; }

.nav-toggle {
  display: none; align-items: center; gap: 0.55rem;
  border: 1px solid rgba(1,64,47,0.42); border-radius: 999px;
  background: rgba(255,255,255,0.35); color: var(--green-deep);
  padding: 0.55rem 0.8rem; font: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer;
}
.nav-toggle-lines { width: 18px; display: grid; gap: 3px; }
.nav-toggle-lines span { display: block; height: 2px; background: currentColor; border-radius: 2px; }

/* ---------- Kantha divider ---------- */

.stitch {
  height: 10px; border: 0; margin: 0;
  background-image:
    repeating-linear-gradient(90deg, var(--red) 0 14px, transparent 14px 27px),
    repeating-linear-gradient(90deg, transparent 0 7px, var(--green) 7px 21px, transparent 21px 34px);
  background-size: 100% 2px, 100% 2px;
  background-position: 0 3px, 0 7px;
  background-repeat: repeat-x;
}

/* ---------- Hero slider ---------- */

.slider { position: relative; background: var(--green-deep); overflow: hidden; }
.hero { min-height: clamp(560px, 76vh, 760px); }
.slides { display: flex; height: 100%; min-height: inherit; transition: transform 0.8s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.slide { position: relative; min-width: 100%; min-height: inherit; }
.slide img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.hero-placeholder { position: absolute; inset: 0; background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(1,35,27,0.92) 0%, rgba(1,49,37,0.72) 45%, rgba(1,35,27,0.16) 78%),
    linear-gradient(0deg, rgba(1,35,27,0.5), transparent 55%);
}
.hero-copy {
  position: absolute; z-index: 2; inset: 50% 0 auto; transform: translateY(-50%);
  color: #fff; pointer-events: none;
}
.hero-copy > * { pointer-events: auto; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.65rem;
  margin: 0 0 1rem; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--orange);
}
.hero-kicker::before { content: ""; width: 34px; height: 2px; background: var(--red); }
.hero-copy h2 { max-width: 760px; color: #fff; font-size: clamp(3rem, 7vw, 6rem); text-wrap: balance; }
.hero-copy > p:not(.hero-kicker) { max-width: 620px; font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.58; color: rgba(255,255,255,0.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }
.hero-text-link { display: inline-flex; align-items: center; padding: 0.78rem 0.35rem; color: #fff; font-weight: 700; text-decoration: none; }
.hero-text-link:hover { color: var(--orange); }
.slide-label {
  position: absolute; z-index: 2; right: var(--gut); bottom: 1.6rem;
  max-width: 270px; padding: 0.75rem 0.95rem; border-left: 2px solid var(--orange);
  background: rgba(1,45,34,0.72); color: #fff; backdrop-filter: blur(8px);
  font-size: 0.78rem; line-height: 1.35;
}
.slide-label strong, .slide-label span { display: block; }
.slide-label span { color: rgba(255,255,255,0.7); }
.slide-nav {
  position: absolute; z-index: 4; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; padding: 0; border: 1px solid rgba(255,255,255,0.5); border-radius: 50%;
  background: rgba(1,64,47,0.45); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
  backdrop-filter: blur(7px); transition: background 0.2s ease, transform 0.2s ease;
}
.slide-nav:hover { background: var(--orange); color: var(--green-deep); transform: translateY(-50%) scale(1.04); }
.slide-prev { left: clamp(0.6rem, 2vw, 1.5rem); }
.slide-next { right: clamp(0.6rem, 2vw, 1.5rem); }
.slide-dots { position: absolute; z-index: 4; left: 50%; bottom: 1.8rem; transform: translateX(-50%); display: flex; gap: 0.55rem; }
.slide-dots button { width: 9px; height: 9px; padding: 0; border: 1px solid #fff; border-radius: 50%; background: transparent; cursor: pointer; }
.slide-dots button[aria-current="true"] { width: 28px; border-radius: 9px; background: #fff; }

/* ---------- Sections and buttons ---------- */

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-sand { background: var(--sand); }
.section-wash { background: var(--green-wash); }
.section-green { background: var(--green); color: #fff; }
.section-blue { background: var(--blue); color: #fff; }
.section-green h1, .section-green h2, .section-green h3,
.section-blue h1, .section-blue h2, .section-blue h3 { color: #fff; }
.section-green p, .section-blue p { color: rgba(255,255,255,0.82); }
.section-head { max-width: 690px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head p:last-child { color: var(--ink-soft); margin-bottom: 0; }
.section-green .section-head p:last-child, .section-blue .section-head p:last-child { color: rgba(255,255,255,0.82); }
.section-head-row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.section-head-row > div { max-width: 690px; }
.section-head-row .btn { flex: none; margin-bottom: 0.35rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.78rem 1.45rem;
  border: 2px solid transparent; border-radius: 999px;
  font-family: var(--body); font-size: 0.94rem; font-weight: 700; line-height: 1.2; text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(1,64,47,0.16); }
.btn-primary { background: var(--orange); color: var(--green-deep); }
.btn-primary:hover { background: #ffa132; color: var(--green-deep); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-mid); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.58); color: #fff; background: rgba(255,255,255,0.04); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: rgba(1,64,47,0.25); }

.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.card-content { padding: 1.5rem; }
.card h3 { margin-bottom: 0.45rem; }
.card p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.98rem; }
.card-media { display: block; overflow: hidden; }
.card-media img { width: 100%; aspect-ratio: 4/3; height: auto; object-fit: cover; transition: transform 0.35s ease; }
.card:hover .card-media img { transform: scale(1.025); }

/* ---------- Home: about and services ---------- */

.home-about { position: relative; }
.home-about::before {
  content: ""; position: absolute; width: 340px; height: 340px; right: -170px; top: 16%; border-radius: 50%;
  border: 1px solid var(--rule); box-shadow: inset 0 0 0 40px var(--green-pale), inset 0 0 0 41px var(--rule);
}
.about-layout { position: relative; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr); gap: clamp(3rem, 8vw, 7rem); align-items: center; }
.about-layout h2 { max-width: 780px; }
.community-card {
  position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 3.25rem);
  border-radius: var(--radius-lg); background: var(--green-deep); color: #fff; box-shadow: var(--shadow-md);
}
.community-card::after {
  content: ""; position: absolute; width: 220px; height: 220px; right: -80px; top: -80px;
  border: 30px solid rgba(197,235,198,0.08); border-radius: 50%;
}
.community-card h3 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.35rem); }
.community-mark { position: absolute; right: 1.4rem; top: 0.4rem; font-family: var(--display); font-size: 7rem; line-height: 1; color: rgba(197,235,198,0.09); }
.stat-grid { display: grid; gap: 0; margin-top: 2rem; border-top: 1px solid rgba(255,255,255,0.18); }
.stat-grid > div { display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.15); }
.stat-grid strong { font-family: var(--display); font-size: 1.85rem; color: var(--orange); }
.stat-grid span { color: rgba(255,255,255,0.77); font-size: 0.9rem; }

.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.1rem; }
.service-card {
  position: relative; min-height: 310px; padding: 1.7rem;
  border: 1px solid rgba(2,96,72,0.15); border-radius: var(--radius); background: rgba(255,253,248,0.86);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: rgba(2,96,72,0.32); }
.service-number { display: block; margin-bottom: 3rem; font-family: var(--display); color: var(--red); font-size: 1.05rem; font-weight: 600; }
.service-card h3 { font-size: 1.35rem; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.62; margin-bottom: 0; }

/* ---------- Welcome messages ---------- */

.welcome-stack { display: grid; gap: 2rem; }
.welcome {
  display: grid; grid-template-columns: minmax(250px, 320px) 1fr; align-items: center;
  overflow: hidden;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
}
.welcome:nth-child(even) { grid-template-columns: 1fr minmax(250px, 320px); }
.welcome:nth-child(even) .welcome-photo { order: 2; }
.welcome-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; margin: 1.5rem 0 1.5rem 1.5rem; border-radius: var(--radius); background: #dceee0; }
.welcome:nth-child(even) .welcome-photo { margin: 1.5rem 1.5rem 1.5rem 0; }
.welcome-photo::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--red); }
.welcome.is-advisor .welcome-photo::after { background: var(--green); }
.welcome-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 22%; }
.welcome-photo .no-photo {
  width: 100%; height: 100%; display: grid; place-items: center;
  font-family: var(--display); font-size: 5rem; color: var(--green); background: var(--green-wash);
}
.welcome-copy { position: relative; padding: clamp(2.25rem, 5vw, 4rem); align-self: center; }
.quote-mark { position: absolute; right: 2rem; top: 0.8rem; font-family: var(--display); font-size: 7rem; line-height: 1; color: rgba(2,96,72,0.08); }
.welcome-role { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--orange-dim); margin: 0 0 0.35rem; }
.welcome-name { font-size: clamp(1.65rem, 3vw, 2.3rem); margin-bottom: 1.15rem; }
.welcome-body { max-width: 720px; }
.welcome-body p { color: var(--ink-soft); margin: 0; }
.welcome-body p + p { margin-top: 0.75rem; }
.leadership-group + .leadership-group { margin-top: clamp(4rem, 8vw, 7rem); padding-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--rule); }

/* ---------- Events ---------- */

.event { display: grid; grid-template-columns: 94px 1fr; gap: 1.5rem; align-items: start; padding: 1.6rem 0; border-bottom: 1px solid var(--rule); }
.event:first-child { border-top: 1px solid var(--rule); }
.event-date { text-align: center; border: 1px solid var(--rule); border-radius: var(--radius-sm); padding: 0.7rem 0.35rem; background: rgba(255,255,255,0.5); }
.event-month { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--red); }
.event-day { display: block; font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1.05; }
.event-date.is-month .event-day { font-size: 1.03rem; letter-spacing: -0.01em; padding-top: 0.25rem; }
.event-body h3 { margin-bottom: 0.35rem; }
.event-body p { margin: 0 0 0.45rem; color: var(--ink-soft); font-size: 0.97rem; }
.event-meta { font-size: 0.78rem !important; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; }
.tag { display: inline-block; margin-left: 0.55rem; padding: 0.15rem 0.5rem; border: 1px solid var(--red); color: var(--red); font-family: var(--body); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; vertical-align: 0.15em; }
.section-green .event, .section-blue .event { border-color: rgba(255,255,255,0.18); }
.section-green .event-date, .section-blue .event-date { border-color: rgba(255,255,255,0.3); color: #fff; background: rgba(255,255,255,0.07); }
.section-green .event-month, .section-blue .event-month { color: var(--orange); }
.section-green .event-body p, .section-blue .event-body p { color: rgba(255,255,255,0.74); }

.event-feature .event-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.event-feature .event {
  grid-template-columns: 74px 1fr; gap: 1rem; height: 100%; margin: 0; padding: 1.3rem;
  border: 1px solid rgba(255,255,255,0.21); border-radius: var(--radius); background: rgba(1,64,47,0.28);
}
.event-feature .event:first-child { border-top: 1px solid rgba(255,255,255,0.21); }
.event-feature .event-body h3 { font-size: 1.24rem; }
.event-feature .event-date { padding-inline: 0.2rem; }
.empty-state { padding: 2rem; border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius); background: rgba(1,64,47,0.2); }
.empty-state p { margin-bottom: 0; }

/* ---------- People ---------- */

.people { display: grid; grid-template-columns: repeat(auto-fill, minmax(225px, 1fr)); gap: 1.35rem; }
.person {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person-photo { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--green-wash); }
.person-photo img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 20%; }
.person-photo .no-photo { width: 100%; height: 100%; display: grid; place-items: center; font-family: var(--display); font-size: 3rem; color: var(--green); }
.person-body { flex: 1; padding: 1.15rem 1.25rem 1.4rem; border-top: 4px solid var(--green); }
.person.is-lead .person-body { border-top-color: var(--red); }
.person-role { display: block; min-height: 2.2em; margin-bottom: 0.3rem; color: var(--orange-dim); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; line-height: 1.35; text-transform: uppercase; }
.person-name { display: block; font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1.25; }
.person-desc { margin: 0.55rem 0 0; color: var(--ink-soft); font-size: 0.89rem; line-height: 1.5; }
.person-mail { display: inline-block; margin-top: 0.55rem; font-size: 0.82rem; overflow-wrap: anywhere; }

/* ---------- Member directory ---------- */

.dir-tools { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 2rem; padding: 1rem; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--green-pale); }
.dir-search { flex: 1 1 280px; min-height: 48px; padding: 0.65rem 1rem; border: 1px solid rgba(2,96,72,0.28); border-radius: 999px; background: var(--white); color: var(--ink); font: inherit; font-size: 1rem; }
.dir-count { font-size: 0.9rem; color: var(--ink-soft); padding-right: 0.4rem; }
.directory-group { padding: clamp(2rem, 4vw, 3rem); border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.directory-group + .directory-group { margin-top: 2rem; }
.directory-group[hidden] { display: none; }
.directory-group-head { display: flex; justify-content: space-between; gap: 2rem; align-items: start; padding-bottom: 1.4rem; border-bottom: 1px solid var(--rule); }
.directory-group-head h2 { margin-bottom: 0.35rem; }
.directory-group-head p:last-child { margin-bottom: 0; color: var(--ink-soft); }
.directory-total { min-width: 72px; height: 72px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-family: var(--display); font-size: 1.55rem; }
.directory-note { margin: 1.25rem 0 0; padding: 0.85rem 1rem; border-left: 4px solid var(--orange); background: var(--sand); color: var(--ink-soft); font-size: 0.9rem; }
.dir-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 0.65rem 1.6rem; list-style: none; margin: 0; padding: 0; }
.dir-item { display: flex; align-items: center; gap: 0.85rem; padding: 0.75rem 0; border-bottom: 1px solid var(--rule); }
.dir-item[hidden] { display: none; }
.dir-avatar, .dir-initial { width: 46px; height: 46px; flex: none; border-radius: 50%; background: var(--green-wash); }
.dir-avatar { object-fit: cover; }
.dir-initial { display: grid; place-items: center; font-family: var(--display); font-size: 1.15rem; color: var(--green); }
.dir-name { font-weight: 600; line-height: 1.25; }
.dir-meta { display: block; margin-top: 0.2rem; color: var(--ink-soft); font-size: 0.8rem; font-weight: 400; }
.dir-email { display: block; margin-top: 0.25rem; color: var(--green); font-size: 0.75rem; font-weight: 500; overflow-wrap: anywhere; }
.dir-empty { padding: 2rem 0; color: var(--ink-soft); }

/* ---------- News and gallery ---------- */

.news-date { margin: 0 0 0.45rem !important; color: var(--orange-dim) !important; font-size: 0.72rem !important; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.news-card h3 a { color: var(--ink); text-decoration: none; }
.news-item { display: grid; grid-template-columns: minmax(180px, 260px) 1fr; gap: 2rem; align-items: center; padding: 1.75rem 0; border-bottom: 1px solid var(--rule); }
.news-item:first-child { border-top: 1px solid var(--rule); }
.news-thumb { overflow: hidden; border-radius: var(--radius-sm); }
.news-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.news-item h3 a { color: var(--ink); text-decoration: none; }
.news-item p { color: var(--ink-soft); margin-bottom: 0; }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.25rem; }
.album-content .gallery { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin: 0; }
.album-content .gallery-item { width: auto !important; margin: 0 !important; overflow: hidden; border-radius: var(--radius); background: var(--sand); box-shadow: var(--shadow-sm); }
.album-content .gallery-icon { height: 100%; }
.album-content .gallery a { display: block; height: 100%; }
.album-content .gallery img { width: 100%; height: 100%; min-height: 260px; aspect-ratio: 4/3; object-fit: cover; border: 0 !important; transition: transform 0.35s ease; }
.album-content .gallery a:hover img { transform: scale(1.025); }
.bsa-lightbox { position: fixed; inset: 0; z-index: 10000; display: grid; grid-template-columns: 64px minmax(0,1fr) 64px; align-items: center; gap: 1rem; padding: clamp(1rem, 4vw, 3rem); background: rgba(0,23,17,0.96); }
.bsa-lightbox[hidden] { display: none; }
.bsa-lightbox figure { display: grid; place-items: center; gap: 0.8rem; max-height: 92vh; }
.bsa-lightbox img { max-height: 82vh; width: auto; border-radius: var(--radius-sm); box-shadow: 0 24px 80px rgba(0,0,0,0.45); }
.bsa-lightbox figcaption { color: rgba(255,255,255,0.78); text-align: center; }
.bsa-lightbox button { width: 50px; height: 50px; border: 1px solid rgba(255,255,255,0.45); border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; font-size: 1.8rem; cursor: pointer; }
.bsa-lightbox button:hover { border-color: var(--orange); color: var(--orange); }
.bsa-lightbox-close { position: absolute; right: 1.25rem; top: 1.25rem; }
.lightbox-open { overflow: hidden; }
.shot { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); background: var(--sand); box-shadow: var(--shadow-sm); text-decoration: none; }
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.shot:hover img { transform: scale(1.035); }
.shot-cap { position: absolute; inset: auto 0 0; padding: 3.5rem 1rem 1rem; background: linear-gradient(transparent, rgba(1,64,47,0.94)); color: #fff; font-size: 0.83rem; }
.shot-cap strong { font-family: var(--display); font-size: 1.15rem; }
.shot-placeholder { height: 100%; display: grid; place-items: center; padding: 1rem; text-align: center; color: var(--ink-soft); background: repeating-linear-gradient(45deg,var(--sand) 0 10px,#ece5d7 10px 20px); }

/* ---------- Page heroes ---------- */

.page-hero { position: relative; overflow: hidden; color: #fff; padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.page-hero-green { background: linear-gradient(125deg, var(--green-deep), var(--green)); }
.page-hero-blue { background: linear-gradient(125deg, var(--blue), #093873); }
.page-hero::before { content: ""; position: absolute; width: 430px; height: 430px; right: -90px; top: -170px; border: 55px solid rgba(255,255,255,0.045); border-radius: 50%; }
.page-hero-inner { position: relative; display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.page-hero h1 { max-width: 850px; color: #fff; font-size: clamp(2.7rem,6vw,5.2rem); }
.page-hero .lead { color: rgba(255,255,255,0.82); }
.page-hero-mark { flex: none; max-width: 330px; font-family: var(--display); font-size: clamp(4rem,10vw,8rem); line-height: 0.85; color: rgba(255,255,255,0.09); }

/* ---------- About, resources, contact ---------- */

.about-story { display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr); gap: clamp(3rem,8vw,7rem); align-items: start; }
.about-prose { font-size: 1.12rem; color: var(--ink-soft); }
.about-prose p { margin-bottom: 1.2rem; }
.purpose-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.5rem; }
.purpose-card { min-height: 380px; padding: clamp(2rem,5vw,3.5rem); border-radius: var(--radius-lg); background: var(--paper); border: 1px solid var(--rule); box-shadow: var(--shadow-sm); }
.purpose-card-dark { background: var(--green-deep); color: #fff; }
.purpose-card-dark h2 { color: #fff; }
.purpose-card-dark p { color: rgba(255,255,255,0.78); }
.value-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.value-card { padding: 2rem 1.5rem; border-right: 1px solid var(--rule); }
.value-card:last-child { border-right: 0; }
.value-card > span { display: block; margin-bottom: 2.5rem; color: var(--red); font-family: var(--display); font-weight: 600; }
.value-card p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 0; }
.about-numbers { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1rem; }
.about-numbers > div { text-align: center; padding: 1.4rem; border-right: 1px solid var(--rule); }
.about-numbers > div:last-child { border-right: 0; }
.about-numbers strong { display: block; font-family: var(--display); font-size: clamp(2rem,4vw,3rem); color: var(--green); }
.about-numbers span { display: block; color: var(--ink-soft); font-size: 0.85rem; }
.split-cta { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.split-cta > div { max-width: 760px; }

.resource-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.resource-card { position: relative; min-height: 300px; padding: 2rem; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); }
.resource-card > span { display: block; color: var(--red); font-family: var(--display); font-size: 1rem; margin-bottom: 3rem; }
.resource-card p { color: var(--ink-soft); margin-bottom: 0; }
.sports-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.sport-card { display: flex; flex-direction: column; min-height: 360px; padding: 1.5rem; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); }
.sport-card-photo { position: relative; isolation: isolate; overflow: hidden; justify-content: flex-end; color: #fff; border: 0; background-position: center; background-size: cover; box-shadow: var(--shadow-md); }
.sport-card-photo::before { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg,rgba(1,28,22,0.08) 10%,rgba(1,28,22,0.92) 84%); }
.sport-card-content { display: flex; flex: 1; flex-direction: column; justify-content: flex-end; }
.sport-card-photo h3 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.sport-day { display: inline-block; align-self: flex-start; margin-bottom: 2.5rem; padding: 0.25rem 0.65rem; border-radius: 999px; background: var(--green-wash); color: var(--green); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sport-card p { color: var(--ink-soft); font-size: 0.94rem; }
.sport-place { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--rule); color: var(--orange-dim); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.sport-card-photo .sport-day { margin-bottom: auto; color: #fff; background: rgba(1,99,75,0.9); }
.sport-card-photo p { color: rgba(255,255,255,0.86); }
.sport-card-photo .sport-place { color: #ffd7a3; border-top-color: rgba(255,255,255,0.25); }
.sports-feature, .support-feature { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(0,0.95fr); gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.sports-feature-photo, .support-photo { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.sports-feature-photo img, .support-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.sports-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 2rem; }
.food-support { display: grid; grid-template-columns: 1fr minmax(250px,0.7fr) auto; gap: 2rem; align-items: center; padding: clamp(2rem,5vw,3.5rem); border: 1px solid var(--rule); border-radius: var(--radius-lg); background: var(--paper); box-shadow: var(--shadow-sm); }
.food-support address { font-style: normal; color: var(--ink-soft); }
.activity-strip { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); border: 1px solid var(--rule); border-radius: var(--radius); overflow: hidden; background: var(--paper); }
.activity-strip > div { min-height: 125px; padding: 1.2rem; border-right: 1px solid var(--rule); }
.activity-strip > div:last-child { border-right: 0; }
.activity-strip strong, .activity-strip span { display: block; }
.activity-strip strong { margin-bottom: 0.5rem; font-family: var(--display); font-size: 1.1rem; }
.activity-strip span { color: var(--ink-soft); font-size: 0.82rem; }

.contact-layout { display: grid; grid-template-columns: minmax(0,0.8fr) minmax(0,1.2fr); gap: clamp(3rem,8vw,7rem); align-items: start; }
.contact-list { border-top: 1px solid var(--rule); }
.contact-list > a { display: grid; grid-template-columns: 130px 1fr; gap: 1.5rem; padding: 1.35rem 0; border-bottom: 1px solid var(--rule); color: var(--ink); text-decoration: none; }
.contact-list > a span { color: var(--orange-dim); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.contact-list > a strong { font-weight: 600; }
.contact-list > a:hover strong { color: var(--green); }

/* ---------- Editor content and small components ---------- */

.callout { margin: 2rem 0; padding: 1.4rem 1.6rem; border-left: 4px solid var(--red); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; background: var(--green-wash); }
.callout p { margin: 0; }
.res-list { list-style: none; margin: 0; padding: 0; }
.res-list li { border-bottom: 1px solid var(--rule); }
.res-list a { display: flex; justify-content: space-between; gap: 1rem; padding: 1rem 0; text-decoration: none; font-weight: 600; }
.res-list .note { color: var(--ink-soft); font-size: 0.84rem; font-weight: 400; text-align: right; }
.editor-content { max-width: 760px; }
.editor-content > * + * { margin-top: 1.2rem; }
.editor-content h2 { margin-top: 2.5rem; }
.editor-content h3 { margin-top: 2rem; }
.editor-content ul, .editor-content ol { padding-left: 1.25rem; }
.editor-content blockquote { margin-left: 0; padding-left: 1.25rem; border-left: 4px solid var(--red); color: var(--ink-soft); }
.editor-content img { height: auto; border-radius: var(--radius-sm); }
.graduate-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1.25rem; max-width: 1160px; margin: 2.5rem 0; }
.graduate-card { overflow: hidden; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); }
.graduate-card img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; border-radius: 0; }
.graduate-card-copy { padding: 1.15rem; }
.graduate-card h3 { margin: 0 0 0.35rem; font-size: 1.15rem; }
.graduate-card p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; }
.graduate-article { max-width: none; }
.graduate-article > p { max-width: 900px; }
.wp-block-gallery { max-width: none; }
.wp-block-image figcaption { color: var(--ink-soft); font-size: 0.84rem; }

/* ---------- Join and footer ---------- */

.join-section { background: var(--paper); }
.join-panel {
  display: grid; grid-template-columns: minmax(0,1.2fr) minmax(260px,0.8fr); gap: 3rem; align-items: center;
  padding-block: clamp(2.5rem,6vw,4.5rem); border-radius: var(--radius-lg);
  color: #fff; background: linear-gradient(120deg,var(--green-deep),var(--green)); box-shadow: var(--shadow-md);
}
.join-panel h2 { color: #fff; }
.join-panel p { color: rgba(255,255,255,0.8); }
.join-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
.join-email { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

.site-foot { background: #012e22; color: rgba(255,255,255,0.72); padding-top: clamp(3rem,7vw,5rem); font-size: 0.92rem; }
.foot-invite { display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding-bottom: clamp(2.5rem,6vw,4rem); }
.foot-invite > div:first-child { max-width: 700px; }
.foot-invite h2 { color: #fff; font-size: clamp(2rem,4vw,3.25rem); }
.foot-invite p { color: rgba(255,255,255,0.72); }
.foot-invite-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; flex: none; }
.foot-rule { height: 1px; background: rgba(255,255,255,0.14); }
.foot-grid { display: grid; grid-template-columns: 1.6fr 0.7fr 0.7fr 0.9fr; gap: 2.5rem; padding: 3.5rem 0; }
.foot-brand { display: grid; grid-template-columns: 72px 1fr; gap: 1rem; align-items: start; }
.foot-brand img { width: 66px; height: 66px; object-fit: contain; }
.foot-brand h3 { color: #fff; font-size: 1.3rem; margin-bottom: 0.45rem; }
.foot-brand p { max-width: 34ch; margin-bottom: 0; }
.site-foot h4 { margin: 0 0 0.9rem; color: var(--orange); font-family: var(--body); font-size: 0.69rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.site-foot ul { list-style: none; margin: 0; padding: 0; }
.site-foot li { margin-bottom: 0.45rem; }
.site-foot a { color: rgba(255,255,255,0.8); text-decoration: none; }
.site-foot a:hover { color: var(--orange); }
.foot-base { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.48); font-size: 0.79rem; }
.foot-base p { margin: 0; }

/* ---------- Pagination and motion ---------- */

.nav-links { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin-top: 3rem; }
.nav-links .page-numbers { display: inline-block; min-width: 40px; padding: 0.45rem 0.75rem; border: 1px solid var(--rule); border-radius: 999px; text-align: center; text-decoration: none; }
.nav-links .page-numbers.current { border-color: var(--green); background: var(--green); color: #fff; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .slides { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1120px) {
  .nav-toggle { display: inline-flex; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 100%; padding: 0.6rem var(--gut) 1.2rem; background: var(--green-band); border-bottom: 2px solid var(--green); box-shadow: 0 18px 28px rgba(1,64,47,0.15); }
  .site-nav.open { display: block; }
  .site-nav ul { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 1.5rem; }
  .site-nav a { padding: 0.72rem 0; border-bottom: 1px solid rgba(1,64,47,0.14); }
  .site-nav a::after { display: none; }
  .service-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .service-card { min-height: 260px; }
  .event-feature .event-list { grid-template-columns: 1fr; }
  .event-feature .event { min-height: 150px; }
  .foot-grid { grid-template-columns: 1.4fr repeat(3,0.8fr); gap: 1.5rem; }
  .sports-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .activity-strip { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .activity-strip > div:nth-child(3) { border-right: 0; }
  .activity-strip > div:nth-child(-n+3) { border-bottom: 1px solid var(--rule); }
}

@media (max-width: 900px) {
  .utility-inner span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .hero { min-height: 650px; }
  .hero-copy { inset: 46% 0 auto; }
  .hero-copy h2 { max-width: 620px; }
  .slide-label { display: none; }
  .about-layout, .about-story, .contact-layout { grid-template-columns: 1fr; }
  .community-card { max-width: 620px; }
  .welcome, .welcome:nth-child(even) { grid-template-columns: minmax(220px,280px) 1fr; }
  .welcome:nth-child(even) .welcome-photo { order: 0; }
  .welcome-copy { padding: 2rem; }
  .grid-3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .value-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .value-card:nth-child(2) { border-right: 0; }
  .value-card:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .about-numbers { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .about-numbers > div:nth-child(2) { border-right: 0; }
  .about-numbers > div:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .foot-invite { align-items: start; flex-direction: column; }
  .foot-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .foot-brand { grid-column: 1 / -1; max-width: 580px; }
  .sports-feature, .support-feature { grid-template-columns: 1fr; }
  .graduate-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .food-support { grid-template-columns: 1fr 1fr; }
  .food-support .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 680px) {
  body { font-size: 1rem; }
  .utility-inner { justify-content: center; }
  .utility-inner span { display: none; }
  .utility-links { width: 100%; justify-content: center; }
  .head-inner { min-height: 72px; }
  .brand { min-width: 0; }
  .brand-mark, .custom-logo { width: 48px; height: 48px; }
  .brand-name { font-size: 1rem; }
  .brand-sub { display: none; }
  .site-nav ul { grid-template-columns: 1fr; }
  .hero { min-height: 640px; }
  .hero-shade { background: linear-gradient(90deg,rgba(1,35,27,0.9),rgba(1,49,37,0.63)), linear-gradient(0deg,rgba(1,35,27,0.52),transparent); }
  .hero-copy { inset: 44% 0 auto; }
  .hero-copy h2 { font-size: clamp(2.65rem,13vw,4.2rem); }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 330px; }
  .slide-nav { top: auto; bottom: 1.2rem; transform: none; }
  .slide-nav:hover { transform: scale(1.04); }
  .slide-dots { bottom: 2.2rem; }
  .about-layout { gap: 2.5rem; }
  .service-grid, .grid-2, .grid-3, .purpose-grid, .resource-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-number { margin-bottom: 1.8rem; }
  .section-head-row, .split-cta { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .welcome, .welcome:nth-child(even) { grid-template-columns: 1fr; }
  .welcome-photo, .welcome:nth-child(even) .welcome-photo { width: calc(100% - 3rem); max-width: 360px; margin: 1.5rem auto 0; aspect-ratio: 4/5; }
  .welcome-photo img { position: absolute; }
  .welcome-photo .no-photo { min-height: 0; }
  .event { grid-template-columns: 74px 1fr; gap: 1rem; }
  .people { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0.8rem; }
  .person-role { min-height: 0; }
  .person-body { padding: 0.9rem; }
  .person-name { font-size: 1rem; }
  .page-hero-mark { display: none; }
  .page-hero h1 { font-size: clamp(2.65rem,13vw,4.2rem); }
  .about-numbers { grid-template-columns: 1fr; }
  .about-numbers > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .about-numbers > div:last-child { border-bottom: 0; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { border-right: 0; border-bottom: 1px solid var(--rule); }
  .value-card:last-child { border-bottom: 0; }
  .contact-list > a { grid-template-columns: 1fr; gap: 0.25rem; }
  .news-item { grid-template-columns: 1fr; gap: 1rem; }
  .news-thumb { max-width: 330px; }
  .join-panel { grid-template-columns: 1fr; gap: 1.5rem; border-radius: var(--radius); }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-brand { grid-column: auto; }
  .foot-base { flex-direction: column; gap: 0.4rem; }
  .directory-group { padding: 1.4rem; }
  .directory-group-head { align-items: center; gap: 1rem; }
  .directory-total { min-width: 58px; height: 58px; font-size: 1.3rem; }
  .dir-list { grid-template-columns: 1fr; }
  .sports-grid { grid-template-columns: 1fr; }
  .sport-card { min-height: 230px; }
  .graduate-grid { grid-template-columns: 1fr; }
  .activity-strip { grid-template-columns: 1fr; }
  .activity-strip > div { border-right: 0; border-bottom: 1px solid var(--rule); }
  .activity-strip > div:nth-child(3) { border-right: 0; }
  .activity-strip > div:last-child { border-bottom: 0; }
  .food-support { grid-template-columns: 1fr; }
  .food-support .btn { grid-column: auto; }
  .bsa-lightbox { grid-template-columns: 44px minmax(0,1fr) 44px; gap: 0.25rem; padding: 0.75rem; }
  .bsa-lightbox button { width: 40px; height: 40px; font-size: 1.45rem; }
}

@media (max-width: 420px) {
  .people { grid-template-columns: 1fr; }
  .hero-kicker { letter-spacing: 0.1em; }
  .slide-dots { display: none; }
}

body.admin-bar .site-head { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-head { top: 46px; } }
