/* ── Variables ─────────────────────────────────────────────────────────────── */
:root {
  --ink:     #111111;
  --ink-2:   #4a4a4a;
  --ink-3:   #888888;
  --ink-4:   #c0c0c0;
  --line:    #dedede;
  --line-2:  #efefef;
  --bg:      #ffffff;
  --bg-2:    #f6f6f4;
  --green:   #1b4332;

  --nav-h: 56px;
  --max-w: 1160px;
  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Layout ─────────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 64px 0; }
.section + .section { border-top: 1px solid var(--line); }

/* ── Nav ────────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}

.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.nav-links { display: flex; align-items: center; }

.nav-links a {
  padding: 6px 14px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.15s;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover  { color: var(--ink); }
.nav-links a.active { color: var(--green); border-bottom-color: var(--green); }

.nav-toggle {
  display: none;
  padding: 6px 8px;
  font-size: 1.1rem;
  color: var(--ink-2);
}

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.15s, color 0.15s;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: #143727; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-outline:hover { border-color: var(--ink-3); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-2);
  border: 1px solid var(--line);
  transition: color 0.15s, border-color 0.15s;
}
.btn-ghost:hover { color: var(--green); border-color: var(--green); }

/* ── Hero ───────────────────────────────────────────────────────────────────── */
.hero {
  background: var(--bg-2);
  border-top: 4px solid var(--green);
  padding: calc(var(--nav-h) + 56px) 0 0;
  border-bottom: 1px solid var(--line);
  min-height: 480px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.hero-left {
  padding: 0 48px 56px 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* right side: featured news item */
.hero-right {
  padding: 0 0 56px 48px;
  display: flex;
  align-items: stretch;
}

.hero-featured {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-featured-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-4);
  font-size: 2rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.hero-featured-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-featured-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.hero-featured-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  transition: color 0.15s;
}
.hero-featured:hover .hero-featured-title { color: var(--green); }

.hero-featured-date {
  font-size: 0.78rem;
  color: var(--ink-3);
  margin-top: 6px;
}

/* ── Section Header ─────────────────────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}

.section-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.see-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}
.see-all:hover { text-decoration: underline; }

/* ── News Grid ──────────────────────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.news-grid .card:first-child { grid-column: 1 / 3; }

.card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.card:last-child     { border-right: none; }
.news-grid .card:nth-child(3n) { border-right: none; }
.card:hover { background: var(--bg-2); }

.card-cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-4);
  font-size: 1.8rem;
  flex-shrink: 0;
}
.card-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.card:hover .card-cover img { transform: scale(1.03); }

.card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }

.card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}

.card-title {
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-grid .card:first-child .card-title {
  font-size: 1.2rem;
  -webkit-line-clamp: 3;
}

.card-summary {
  font-size: 0.85rem;
  color: var(--ink-2);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line-2);
}
.card-date       { font-size: 0.76rem; color: var(--ink-3); }
.card-read-more  { font-size: 0.76rem; font-weight: 600; color: var(--ink-3); }
.card:hover .card-read-more { color: var(--green); }

/* ── Team Grid ──────────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.member-card {
  cursor: pointer;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  transition: background 0.15s;
}
.member-card:hover { background: var(--bg-2); }

.member-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--ink-4);
  margin-bottom: 12px;
}
.member-photo img { width: 100%; height: 100%; object-fit: cover; }

.member-name { font-size: 0.95rem; font-weight: 700; }
.member-role { font-size: 0.78rem; color: var(--ink-3); margin-top: 2px; }
.member-location { font-size: 0.75rem; color: var(--green); font-weight: 600; margin-top: 4px; }

/* ── Activity Grid ──────────────────────────────────────────────────────────── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.activity-card {
  cursor: pointer;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.activity-card:hover { background: var(--bg-2); }

.activity-cover {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--ink-4);
  position: relative;
}
.activity-cover img { width: 100%; height: 100%; object-fit: cover; }

.activity-cover-badge {
  position: absolute;
  top: 10px; left: 10px;
  padding: 2px 8px;
  background: var(--green);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.activity-body { padding: 16px 18px 18px; }
.activity-title   { font-size: 0.97rem; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.activity-summary { font-size: 0.84rem; color: var(--ink-2); line-height: 1.6;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.activity-cta { display: inline-block; margin-top: 10px; font-size: 0.8rem;
  font-weight: 600; color: var(--green); }

/* ── Sponsorship ────────────────────────────────────────────────────────────── */
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.sponsor-card {
  display: flex;
  background: var(--bg);
  cursor: pointer;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.sponsor-card:hover { background: var(--bg-2); }

.sponsor-cover {
  width: 130px;
  flex-shrink: 0;
  background: var(--bg-2);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--ink-4);
}
.sponsor-cover img { width: 100%; height: 100%; object-fit: cover; }

.sponsor-body { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.sponsor-amount { font-size: 1.25rem; font-weight: 800; color: var(--green); }
.sponsor-title  { font-size: 0.9rem; font-weight: 600; line-height: 1.4; }
.sponsor-name   { font-size: 0.8rem; color: var(--ink-3); }
.sponsor-date   { font-size: 0.75rem; color: var(--ink-4); margin-top: auto; }

/* ── Page Header ────────────────────────────────────────────────────────────── */
.page-header {
  padding: calc(var(--nav-h) + 40px) 0 32px;
  border-bottom: 1px solid var(--line);
}

.page-header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.page-header h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  border-left: 4px solid var(--green);
  padding-left: 14px;
  margin-bottom: 6px;
}

.page-header p { font-size: 0.9rem; color: var(--ink-3); padding-left: 18px; }

/* ── Detail / Post ──────────────────────────────────────────────────────────── */
.detail-header {
  padding: calc(var(--nav-h) + 44px) 0 32px;
  border-bottom: 1px solid var(--line);
  border-top: 4px solid var(--green);
}

.detail-header-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.detail-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.detail-meta {
  font-size: 0.8rem;
  color: var(--ink-3);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.detail-cover {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 32px 0;
}
.detail-cover img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
}

.post-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 32px 80px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-3);
  margin-bottom: 24px;
  transition: color 0.15s;
}
.back-link::before { content: '←'; }
.back-link:hover { color: var(--ink); }

.post-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--ink-2);
}
.post-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin: 2em 0 0.6em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.01em;
}
.post-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 1.6em 0 0.5em; }
.post-body p  { margin-bottom: 1.15em; }
.post-body a  { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.post-body ul, .post-body ol { padding-left: 1.4em; margin-bottom: 1.15em; }
.post-body ul { list-style-type: disc; }
.post-body ol { list-style-type: decimal; }
.post-body li { margin-bottom: 0.35em; }
.post-body img { margin: 1.5em 0; }
.post-body .post-figure { margin: 1.5em 0; }
.post-body .post-figure img { margin: 0; width: 100%; }
.post-body .post-figure figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-3);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.5;
}
.post-body blockquote {
  border-left: 3px solid var(--green);
  padding: 8px 16px;
  margin: 1.5em 0;
  color: var(--ink-2);
  font-style: italic;
}
.post-body pre {
  background: var(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line);
  border-left: 3px solid var(--ink-3);
  padding: 16px 20px;
  overflow-x: auto;
  margin: 1.5em 0;
  font-size: 0.87em;
  line-height: 1.6;
}
.post-body code {
  background: var(--bg-2);
  padding: 1px 5px;
  font-size: 0.87em;
  border: 1px solid var(--line);
}
.post-body pre code { background: none; border: none; padding: 0; color: inherit; }
.post-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 0.9em; }
.post-body th, .post-body td { padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--line); }
.post-body th { font-weight: 700; color: var(--ink); background: var(--bg-2); }

/* ── Member Detail ──────────────────────────────────────────────────────────── */
.member-back {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 32px) 32px 0;
}

.member-detail-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 24px 32px 80px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
}

.member-sidebar { position: sticky; top: calc(var(--nav-h) + 20px); }

.member-photo-lg {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--ink-4);
  margin-bottom: 14px;
}
.member-photo-lg img { width: 100%; height: 100%; object-fit: cover; }

.member-sidebar-name { font-size: 1.25rem; font-weight: 800; margin-bottom: 3px; }
.member-sidebar-role { font-size: 0.82rem; color: var(--ink-3); margin-bottom: 3px; }
.member-sidebar-location { font-size: 0.8rem; color: var(--green); font-weight: 600; margin-bottom: 12px; }
.member-sidebar-school {
  display: inline-block;
  padding: 3px 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  font-size: 0.74rem;
  color: var(--ink-2);
}

/* ── Contact ────────────────────────────────────────────────────────────────── */
.contact-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 52px) 32px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  border-left: 4px solid var(--green);
  padding-left: 14px;
  margin-bottom: 10px;
}
.contact-subtitle { color: var(--ink-2); margin-bottom: 32px; line-height: 1.7; font-size: 0.95rem; }

.contact-items { display: flex; flex-direction: column; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:first-of-type { border-top: 1px solid var(--line); }

.contact-icon {
  width: 32px; height: 32px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-4);
  margin-bottom: 2px;
}
.contact-item-value { font-size: 0.88rem; font-weight: 500; color: var(--ink); }
.contact-item-value a { color: var(--green); }

.map-wrap {
  border: 1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--bg-2);
  overflow: hidden;
}
.map-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 32px;
  text-align: center;
}
.map-placeholder-icon { font-size: 2.5rem; }
.map-placeholder-name { font-size: 1rem; font-weight: 700; color: var(--ink); }
.map-placeholder-addr { font-size: 0.85rem; color: var(--ink-3); }
.map-placeholder-links {
  display: flex; gap: 10px; margin-top: 8px; flex-wrap: wrap; justify-content: center;
}
.map-placeholder-links a {
  padding: 7px 18px;
  font-size: 0.85rem; font-weight: 600;
  border: 1px solid var(--line);
  color: var(--ink-2);
  transition: color 0.15s, border-color 0.15s;
}
.map-placeholder-links a:hover { color: var(--green); border-color: var(--green); }

/* ── Empty State ────────────────────────────────────────────────────────────── */
.empty-state {
  grid-column: 1 / -1;
  padding: 56px 24px;
  text-align: center;
  color: var(--ink-3);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--line);
}
.empty-state-icon { font-size: 1.8rem; margin-bottom: 8px; }

/* ── Skeleton ───────────────────────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-2) 25%, var(--line) 50%, var(--bg-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ── Fade-in ────────────────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-3);
}
.footer-logo { font-weight: 700; color: var(--ink); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 48px 0; }

  .nav-links {
    display: none; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 8px 12px; gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { border-bottom: none; padding: 10px 12px; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 20px; }

  .hero { padding-top: calc(var(--nav-h) + 36px); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { border-right: none; border-bottom: 1px solid var(--line);
    padding: 0 0 32px 0; }
  .hero-right { padding: 24px 0 40px 0; }
  .hero-title { font-size: 2rem; }

  .news-grid { grid-template-columns: 1fr; }
  .news-grid .card:first-child { grid-column: 1; }
  .card { border-right: none; }

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

  .activity-grid { grid-template-columns: 1fr; }

  .sponsor-grid { grid-template-columns: 1fr; }
  .sponsor-card { border-right: none; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px;
    padding: calc(var(--nav-h) + 36px) 20px 60px; }

  .member-detail-wrap { grid-template-columns: 1fr; gap: 28px;
    padding: calc(var(--nav-h) + 36px) 20px 60px; }
  .member-sidebar { position: static; }
  .member-photo-lg { width: 160px; margin: 0 auto 14px; }

  .footer-inner { flex-direction: column; gap: 4px; text-align: center; }
  .page-header-inner, .detail-header-inner,
  .detail-cover, .post-content { padding-left: 20px; padding-right: 20px; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.8rem; }
}
