/* COLOR + TYPE SYSTEM */
:root {
  --bg-page: #f8faf8;             /* site background */
  --bg-hero: #ffffff;             /* hero left side */
  --bg-def-card: #f1f5f1;         /* soft grey/green for definition card */
  --bg-stat: #103c22;             /* dark green strip for stats */
  --bg-feature: #245f32;          /* dark green section behind cards */
  --bg-card: #ffffff;             /* white info cards */

  --text-dark: #1a1f1a;
  --text-mid: #3b4a3b;
  --text-light: #ffffff;
  --text-dim: #d4e3d7;

  --accent-green: #1f5d33;
  --accent-mint: #7dffa4;

  --border-soft: rgba(0,0,0,0.07);
  --border-card: rgba(0,0,0,0.08);

  --radius-sm: .5rem;
  --radius-md: .75rem;
  --radius-lg: 1rem;

  --shadow-card: 0 20px 40px rgba(0,0,0,0.07);
  --shadow-popup: 0 30px 60px rgba(0,0,0,0.12);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

/* RESETS */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

.wrapper {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* IMPACT BAR (dark thin strip at very top) */
.impact-bar {
  background-color: #0f2918;
  color: var(--text-light);
  font-size: .85rem;
  line-height: 1.4;
  text-align: center;
  padding: .6rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-weight: 400;
}
.impact-bar strong {
  color: var(--accent-mint);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* HEADER / NAV */
.main-header {
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--border-soft);
}

/* IMPROVEMENT: slightly more breathing space so larger brand fits cleanly */
.nav-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.1rem 0; /* was 1rem 0 */
  row-gap: 1rem;
}

.brand-block {
  display: flex;
  align-items: center; /* was flex-start */
  text-decoration: none;
  color: var(--text-dark);
  gap: .9rem; /* was .75rem */
}

.brand-logo-img {
  width: 48px;        /* smaller than 64px */
  height: 48px;       /* keep square */
  object-fit: contain;
  border-radius: 12px; 
  border: 1px solid var(--border-soft);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  flex-shrink: 0;
}


/* IMPROVEMENT: larger title text, still understated and clean */
.brand-lines {
  line-height: 1.15; /* was 1.2 */
  font-family: var(--font-heading);
  color: var(--accent-green);
  font-size: clamp(.9rem, 0.45vw + .75rem, 1.05rem); /* was .8rem */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em; /* keeps it premium at larger size */
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: .9rem;
  font-weight: 500;
}
.main-nav a {
  text-decoration: none;
  color: var(--text-dark);
}
.main-nav a:hover {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* HERO SECTION */
.hero-section {
  background-color: var(--bg-page);
  padding: 3rem 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media(min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0,1fr) 380px;
    align-items: start;
  }
}

/* LEFT SIDE (mission) */
.hero-left {
  max-width: 600px;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  row-gap: .5rem;
  font-family: var(--font-heading);
}

.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--accent-green);
}

.hero-main {
  font-size: clamp(1.9rem, 0.4vw + 1.6rem, 2.2rem);
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-text {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin-top: 1rem;
  max-width: 50ch;
}

.hero-ctas {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
  border: 1px solid rgba(0,0,0,0.4);
}
.btn-primary:hover {
  background-color: #184a28;
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-green);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  line-height: 1.2;
  border-radius: var(--radius-md);
  padding: .75rem 1rem;
  border: 1px solid var(--accent-green);
}
.btn-secondary:hover {
  background-color: rgba(31,93,51,0.07);
}

/* RIGHT SIDE (definition card) */
.definition-card {
  background-color: var(--bg-def-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-popup);
  padding: 1.25rem 1.25rem 1rem;
  max-width: 380px;
}

.def-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.def-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.def-body {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-mid);
}

/* STATS STRIP */
.stats-strip {
  background-color: var(--bg-stat);
  color: var(--text-light);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.stats-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media(min-width:800px){
  .stats-row {
    grid-template-columns: repeat(3,1fr);
  }
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--accent-mint);
}
.stat-label {
  font-size: .85rem;
  line-height: 1.4;
  color: var(--text-dim);
}

/* FEATURE SECTION (dark green bg w/ pattern feel) */
.feature-section {
  background-color: var(--bg-feature);
  background-image: url('../assets/bg-pattern.png');
  background-size: 220px auto;
  background-repeat: repeat;
  background-position: top left;
  padding: 3rem 0 4rem;
  color: var(--text-light);
}

/* CARD GRID */
.card-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width: 900px){
  .card-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

.info-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* top image */
.info-card-image {
  width: 100%;
  height: 150px;
  background-color: #d0d0d0;
  background-size: cover;
  background-position: center;
}

/* body */
.info-card-content {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.info-card-tag {
  font-size: .7rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.info-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.info-card-desc {
  color: var(--text-mid);
  font-size: .9rem;
  line-height: 1.4;
  flex: 1;
}
.info-card-link {
  color: var(--accent-green);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
}
.info-card-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FOOTER */
.site-footer {
  background-color: #0f2918;
  color: var(--text-light);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width:800px){
  .footer-grid {
    grid-template-columns: 2fr 1fr;
  }
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: .75rem;
}
.footer-about p {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-dim);
  margin-bottom: .75rem;
}
.footer-links {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
}
.footer-col-header {
  color: var(--text-light);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  margin-bottom: .5rem;
}
.footer-links a {
  text-decoration: none;
  display: block;
  color: var(--text-dim);
  font-size: .85rem;
  line-height: 1.4;
  margin-bottom: .4rem;
}
.footer-links a:hover {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Fade-in animation hook */
.fade-in {
  opacity: 1;
  transform: none;
  transition: none;
}

/* --- NAV CTA in header --- */
.nav-cta {
  background-color: var(--accent-green);
  color: var(--text-light) !important;
  padding: .5rem .75rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.nav-cta:hover {
  background-color: #184a28;
  text-decoration: none;
  color: var(--text-light);
}

/* --- Recognised by section (clean trust bar) --- */
.recognised-section{
  background-color: #ffffff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 2.25rem 0;
}

.recognised-inner{
  display: grid;
  gap: 1.25rem;
}

/* Desktop: heading + tiles aligned nicely */
@media (min-width: 900px){
  .recognised-inner{
    grid-template-columns: 280px 1fr;
    align-items: center;
  }
}

/* Heading: keep it crisp, vertically centered */
.recognised-heading{
  font-size: .78rem;
  font-weight: 650;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--accent-green);
  line-height: 1.2;
  max-width: 22ch;
}

/* Make it a true 3-column “trust bar” on desktop */
.recognised-logos{
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 900px){
  .recognised-logos{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px){
  .recognised-logos{
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Each tile feels like a designed unit */
.logo-tile{
  display: grid;
  justify-items: center;
  align-content: start;
  gap: .55rem;
  padding: .25rem .25rem .1rem;
  text-align: center;
}

/* Smaller, cleaner logo container (less “puffy”) */
.logo-img{
  width: 180px;
  height: 60px;

  background-color: #ffffff;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;

  /* subtle, modern shadow */
  box-shadow: 0 14px 28px rgba(0,0,0,0.07);
}

/* Labels: consistent baseline, less awkward wrapping */
.logo-label{
  font-size: .86rem;
  line-height: 1.25;
  color: var(--text-mid);
  font-weight: 500;
  max-width: 28ch;
}

/* Optional: slightly dim the long NASP line to feel balanced */
.logo-label small{
  font-size: .85em;
  color: rgba(59,74,59,0.85);
}

/* Mobile polish */
@media (max-width: 520px){
  .recognised-section{ padding: 2rem 0; }
  .logo-img{ width: 200px; }
  .recognised-heading{ max-width: none; }
}

/* --- Petition CTA --- */
.petition-section {
  background-color: #f1f5f1;
  border-bottom: 1px solid var(--border-soft);
  border-top: 1px solid var(--border-soft);
  padding: 2rem 0;
}
.petition-box {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:800px){
  .petition-box {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.petition-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--accent-green);
  margin-bottom: .5rem;
}
.petition-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .5rem;
}
.petition-desc {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-mid);
  max-width: 60ch;
}
.petition-btn {
  background-color: var(--accent-green);
  color: var(--text-light);
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  padding: .8rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: 0 16px 30px rgba(0,0,0,0.15);
  display: inline-block;
}
.petition-btn:hover {
  background-color: #184a28;
  color: var(--text-light);
  text-decoration: none;
}

/* --- Events preview --- */
.events-preview-section {
  background-color: var(--bg-page);
  padding: 3rem 0 2rem;
}
.events-preview-inner {
  display: grid;
  gap: 2rem;
}
.events-header-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 1rem;
}
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-green);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}
.btn-outline {
  font-size: .9rem;
  font-weight: 600;
  padding: .6rem .9rem;
  border-radius: var(--radius-md);
  color: var(--accent-green);
  border: 1px solid var(--accent-green);
  text-decoration: none;
}
.btn-outline:hover {
  background-color: rgba(31,93,51,0.07);
}
.events-cards-row {
  display: grid;
  gap: 1rem;
}
@media(min-width:700px){
  .events-cards-row {
    grid-template-columns: repeat(2,1fr);
  }
}
.event-card {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1rem 1rem 1.25rem;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: .4rem;
}
.event-meta {
  font-size: .8rem;
  font-weight: 500;
  color: var(--accent-green);
  margin-bottom: .6rem;
}
.event-desc {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-mid);
}

/* clean variant for events page */
.event-list .clean {
  margin-bottom: 1rem;
}

/* --- Get involved / your story --- */
.involved-section {
  background-color: var(--bg-page);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 3rem 0;
}
.involved-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width:900px){
  .involved-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.section-body {
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text-mid);
  max-width: 50ch;
  margin-bottom: 1rem;
}
.btn-primary.slim {
  display: inline-block;
  padding: .7rem 1rem;
}
.mini-panel {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1rem 1rem 1.25rem;
}
.mini-panel-head {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.mini-panel-body {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.mini-panel-cta .full {
  width: 100%;
  display: block;
  text-align: center;
}

/* --- Facts / education --- */
.facts-section {
  background-color: #ffffff;
  padding: 3rem 0;
}
.facts-grid {
  display: grid;
  gap: 2rem;
}
@media(min-width:900px){
  .facts-grid {
    grid-template-columns: repeat(3,1fr);
  }
}
.fact-block {
  background-color: #ffffff;
  border-left: 4px solid var(--accent-green);
  padding-left: 1rem;
}
.fact-number {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: .5rem;
  line-height: 1.3;
}
.fact-desc {
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-mid);
}

/* --- Generic page layout styles used in internal pages --- */
.page-section {
  background-color: var(--bg-page);
  padding: 3rem 0 4rem;
}
.page-narrow {
  max-width: 900px;
}
.page-block {
  margin-bottom: 2.5rem;
}
.section-page-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.subsection-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-top: .5rem;
  margin-bottom: 1rem;
}
.bullet-list {
  margin-top: 1rem;
  padding-left: 1rem;
  color: var(--text-mid);
  font-size: .95rem;
  line-height: 1.5;
}
.bullet-list li {
  margin-bottom: .5rem;
}

/* --- TEAM SECTION (2-column, horizontal) --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

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

.team-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-card);
  transition: 0.18s ease;
  min-height: 140px;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* avatars */
.team-avatar {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #ddd;
  background-position: center top;
  border: 2px solid rgba(0,0,0,0.15);
}

/* individual avatar images */
.avatar-ahana {
  background-image: url('../assets/ahana.jpg');
  background-position: center top 18%;
}

.avatar-patricia {
  background-image: url('../assets/patricia.jpg');
  background-position: center top 22%;
}

.avatar-shreehari {
  background-image: url('../assets/shreehari.jpg');
  background-position: center top 20%;
}

.avatar-arthur {
  background-image: url('../assets/arthur.jpg');
  background-position: center top 20%;
}
.avatar-akanksha {
  background-image: url('../assets/akanksha.jpg');
  background-position: center top 20%;
}

.avatar-janisha {
  background-image: url('../assets/janisha.jpg');
  background-position: center top 20%;
}

/* if you don't have daatri.jpg in assets yet, either add it or keep this ready */
.avatar-daatri {
  background-image: url('../assets/daatri.jpg');
  background-position: center top 20%;
}

.avatar-arya {
  background-image: url("../assets/arya.jpg");
}

.avatar-kumail {
  background-image: url("../assets/kumail.jpg");
}

/* text inside cards */
.team-info {
  display: flex;
  flex-direction: column;
}

.team-name {
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.15rem;
}
.team-role {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: .4rem;
}
.team-bio {
  font-size: .9rem;
  line-height: 1.45;
  color: var(--text-mid);
}

.inline-link {
  color: var(--accent-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.inline-link:hover {
  color: #184a28;
}

/* podcast embed placeholder */
.player-placeholder {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 2rem;
  color: var(--text-mid);
  font-size: .9rem;
  text-align: center;
  margin-top: 1rem;
}

/* write / submit form */
.form-card {
  background-color: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 1rem 1rem 1.5rem;
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  display: grid;
  gap: .4rem;
}
.form-input {
  font-family: var(--font-body);
  font-size: .9rem;
  line-height: 1.4;
  padding: .6rem .7rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  background-color: #ffffff;
  color: var(--text-dark);
}
.form-input:focus {
  outline: 2px solid rgba(31,93,51,.3);
  border-color: var(--accent-green);
}
.form-textarea {
  resize: vertical;
}

/* footer petition link style */
.footer-petition-link {
  color: var(--accent-mint);
  font-weight: 600;
  text-decoration: none;
}
.footer-petition-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* active link underline in nav */
.active-link {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--accent-green) !important;
  font-weight: 600;
}

/* --- Team section grouping (About page) --- */
.team-section{
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-soft);
}

.team-section:first-of-type{
  margin-top: 1.25rem;
  padding-top: 0;
  border-top: 0;
}

.team-section-head{
  display: grid;
  gap: .35rem;
  margin-bottom: 1.1rem;
}

.team-section-title{
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.25;
}

.team-section-sub{
  font-size: .9rem;
  line-height: 1.4;
  color: var(--text-mid);
  max-width: 70ch;
}
/* Make contact page definition card smaller */
.contact-card {
  max-width: 280px;       /* smaller than default 380px */
  padding: 1rem;          /* reduce padding slightly */
  margin: 0 auto;         /* center on smaller screens */
}

@media (min-width: 900px) {
  .contact-card {
    max-width: 300px;     /* slightly larger on desktop */
  }
}

/* Podcast images row */
.podcast-images-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
  justify-items: center;
  align-items: center;
}

.podcast-img {
  width: 100%;
  max-width: 150px;  /* controls image size */
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  object-fit: cover;
  transition: transform 0.2s ease;
}

.podcast-img:hover {
  transform: scale(1.05);
}

.involved-section {
  border-top: none;
}

/* Fix nav alignment */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a {
  display: flex;
  align-items: center;
  height: 40px;
}

.nav-cta {
  height: 40px;
  padding: 0 16px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
