/*
 * YMCA of Greater Tulsa — annual-campaign.css
 * Strong Communities Annual Campaign pages
 */

.ac-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px var(--pad, 64px) 96px;
}

/* ════════════════════════════════════════
   INTRO SECTION
════════════════════════════════════════ */
.ac-intro-section {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: start;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 0.5px solid #ebebeb;
}

/* Eyebrow */
.ac-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.ac-eyebrow-bar {
  width: 20px;
  height: 2px;
  background: var(--green);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Headline */
.ac-intro-headline {
  font-family: "Noto Serif", Georgia, serif;
  font-weight: 300;
  font-size: 38px;
  line-height: 1.2;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

/* Intro copy */
.ac-intro-copy {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 32px;
}
.ac-intro-copy p {
  margin-bottom: 14px;
}
.ac-intro-copy p:last-child {
  margin-bottom: 0;
}

/* Buttons */
.ac-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ac-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s,
    color 0.15s;
}
.ac-btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.ac-btn-primary:hover {
  background: var(--green-dk);
  border-color: var(--green-dk);
  color: #fff;
}
.ac-btn-secondary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.ac-btn-secondary:hover {
  background: #004f96;
  border-color: #004f96;
  color: #fff;
}
.ac-btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.ac-btn-ghost:hover {
  background: var(--blue);
  color: #fff;
}

/* ── Video column ── */
.ac-video-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ac-video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}
.ac-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.ac-story-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.ac-story-link:hover {
  color: var(--green);
}

/* ════════════════════════════════════════
   IMPACT STATS
════════════════════════════════════════ */
.ac-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #ebebeb;
  border: 0.5px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 64px;
}
.ac-stat {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
}
.ac-stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.ac-stat-label {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   SUBPAGE LINKS
════════════════════════════════════════ */
.ac-subpages {
  margin-top: 64px;
}
.ac-subpage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ac-subpage-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 0.5px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.ac-subpage-card:hover {
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
}
.ac-subpage-icon {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: #eff5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.ac-subpage-card:hover .ac-subpage-icon {
  background: #d8ede6;
}
.ac-subpage-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.ac-subpage-desc {
  font-size: 13px;
  color: #888;
}
.ac-subpage-arrow {
  font-size: 18px;
  color: var(--green);
  margin-left: auto;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   DONOR WALL
════════════════════════════════════════ */
.ac-donor-intro {
  max-width: 780px;
  margin-bottom: 52px;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}
.ac-donor-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.ac-donor-card {
  border: 0.5px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  background: #fff;
}
.ac-donor-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
}
.ac-donor-name {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  line-height: 1.3;
}
.ac-partner-cta {
  background: #eff5f2;
  border: 0.5px solid #c8e0d8;
  border-radius: 10px;
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ac-partner-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  flex: 1;
  min-width: 240px;
}
.ac-partner-text p {
  margin: 0;
}
.ac-partner-text a {
  color: var(--blue);
  text-decoration: underline;
}
.ac-partner-text strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* ════════════════════════════════════════
   STAFF RESOURCES
════════════════════════════════════════ */
.ac-staff-intro {
  max-width: 780px;
  margin-bottom: 8px;
}
.ac-staff-intro .pb-rich-content {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}
.ac-staff-intro p {
  margin-bottom: 14px;
}
.ac-tagline {
  font-size: 17px;
  color: var(--green);
  font-style: italic;
}
.ac-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ac-resource-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 0.5px solid #e8e8e8;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.ac-resource-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}
.ac-resource-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef4fb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.ac-resource-title {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 3px;
}
.ac-resource-desc {
  font-size: 12.5px;
  color: #888;
}
.ac-extra {
  margin-top: 48px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ac-intro-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ac-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-donor-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ac-resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .ac-wrap {
    padding: 48px var(--pad, 20px) 64px;
  }
  .ac-intro-headline {
    font-size: 28px;
  }
  .ac-btns {
    flex-direction: column;
  }
  .ac-btn {
    text-align: center;
    justify-content: center;
  }
  .ac-subpage-grid {
    grid-template-columns: 1fr;
  }
  .ac-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-donor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ac-resources-grid {
    grid-template-columns: 1fr;
  }
  .ac-partner-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ════════════════════════════════════════
   DONOR WALL — TIERED
════════════════════════════════════════ */
.dw-intro {
  max-width: 780px;
  margin-bottom: 56px;
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}
.dw-intro p {
  margin-bottom: 14px;
}

.dw-tier {
  margin-bottom: 64px;
}
.dw-tier-band {
  margin-bottom: 28px;
}

/* Logo grid */
.dw-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dw-logo-card {
  border: 0.5px solid #e8e8e8;
  border-radius: 8px;
  padding: 20px 24px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  transition: box-shadow 0.15s;
}
.dw-logo-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}
.dw-logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  display: block;
}

/* Name columns — tier-specific column counts */
.dw-name-list {
  columns: 4;
  column-gap: 32px;
  background: #f8f8f6;
  border: 0.5px solid #ebebeb;
  border-radius: 10px;
  padding: 28px 32px;
}
.dw-name-list--4 {
  columns: 3;
}
.dw-name-list--3 {
  columns: 3;
}
.dw-name-list--2 {
  columns: 4;
}
.dw-name-list--1 {
  columns: 4;
}

.dw-name-item {
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.45;
  padding: 6px 0;
  border-bottom: 0.5px solid #ebebeb;
  break-inside: avoid;
}
.dw-name-item:last-child {
  border-bottom: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .dw-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .dw-name-list--4,
  .dw-name-list--3 {
    columns: 2;
  }
  .dw-name-list--2,
  .dw-name-list--1 {
    columns: 3;
  }
}
@media (max-width: 767px) {
  .dw-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dw-name-list--4,
  .dw-name-list--3,
  .dw-name-list--2,
  .dw-name-list--1 {
    columns: 2;
  }
}
@media (max-width: 480px) {
  .dw-name-list--4,
  .dw-name-list--3,
  .dw-name-list--2,
  .dw-name-list--1 {
    columns: 1;
  }
}

/* ════════════════════════════════════════
   STAFF RESOURCES PAGE
════════════════════════════════════════ */
.sr-wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px var(--pad, 64px) 96px;
}

/* Intro */
.sr-intro {
  margin-bottom: 56px;
}
.sr-intro-text {
  font-size: 16px;
  line-height: 1.85;
  color: #555;
}
.sr-intro-text p {
  margin-bottom: 14px;
}
.sr-intro-text p:last-child {
  margin-bottom: 0;
}
.sr-intro-text a {
  color: var(--blue);
  text-decoration: underline;
}
.sr-intro-text strong {
  font-weight: 600;
  color: #1a1a1a;
}
.sr-tagline {
  font-family: "Noto Serif", Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--green) !important;
  font-weight: 400;
}

/* Resource sections */
.sr-resources {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sr-band {
  margin-bottom: 20px;
}

/* Resource items list */
.sr-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 0.5px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
}
.sr-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  transition: background 0.12s;
}
.sr-item:nth-child(even) {
  background: #fafaf8;
}
.sr-item:hover {
  background: #f4f4f2;
}

.sr-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #eff5f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.sr-item-body {
  flex: 1;
  min-width: 0;
}
.sr-item-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sr-item-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.4;
}

.sr-item-btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
  padding: 8px 18px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}
.sr-item-btn:hover {
  background: var(--green);
}

/* Video section */
.sr-video-section {
  margin-top: 56px;
}
.sr-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.sr-video-card {
  border: 0.5px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.sr-video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #111;
}
.sr-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.sr-video-meta {
  padding: 16px 18px;
}
.sr-video-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.sr-video-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 767px) {
  .sr-wrap {
    padding: 48px var(--pad, 20px) 64px;
  }
  .sr-video-grid {
    grid-template-columns: 1fr;
  }
  .sr-item {
    flex-wrap: wrap;
  }
  .sr-item-btn {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}
