/* PDXCCF Volunteer page. Loads after pdxccf-core.css. */

.volunteer-hero {
  position: relative;
  display: grid;
  min-height: min(860px, 94svh);
  place-items: center start;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--cocoa-950);
  color: var(--cream);
}

.volunteer-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(33 16 11 / 92%) 0%, rgb(33 16 11 / 62%) 46%, rgb(33 16 11 / 18%) 78%),
    linear-gradient(0deg, rgb(33 16 11 / 78%) 0%, transparent 55%),
    url("../images/hero-volunteer.jpg") center 45% / cover no-repeat;
  content: "";
  transform: scale(1.01);
}

.volunteer-hero::after {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgb(255 210 118 / 78%) 0 1.5px, transparent 2px);
  background-position: 1rem 1rem;
  background-size: 7rem 5rem;
  content: "";
  opacity: .2;
  pointer-events: none;
}

.volunteer-hero .wrap {
  position: relative;
  z-index: 1;
}

.volunteer-hero .eyebrow { color: var(--orange); }

.volunteer-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: .96;
}

.volunteer-hero .hero-lede {
  max-width: 640px;
  margin: 1.5rem 0 0;
  color: rgb(255 248 237 / 88%);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
}

.volunteer-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.why-volunteer {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.perk-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .85rem;
  margin-top: 3rem;
}

.perk-card {
  padding: 1.5rem 1.6rem;
  border-radius: 1rem;
  background: var(--cocoa-900);
  color: var(--cream);
}

.perk-card p {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 650;
}

.roles {
  padding: 0 0 clamp(3.5rem, 8vw, 6rem);
}

.roles .large-copy.roles-lede,
.shifts .large-copy.shifts-lede {
  max-width: 44rem;
  margin: 1rem 0 2.5rem;
}

.role-list {
  max-width: 46rem;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--ink);
}

.role-list li {
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  color: var(--muted);
}

.role-list strong {
  color: var(--ink);
  font-weight: 850;
}

.shifts {
  padding: 0 0 clamp(4rem, 9vw, 7rem);
  background: var(--paper);
}

.shifts > .wrap { padding-block: clamp(3.5rem, 8vw, 6rem) 0; }

.shift-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}

.shift-day {
  padding: 1.6rem;
  border-radius: 1rem;
  background: var(--cocoa-900);
  color: var(--cream);
}

.shift-day h3 {
  margin: 0 0 .7rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  letter-spacing: -.005em;
}

.shift-day p {
  margin: 0 0 .3rem;
  font-size: .9rem;
  color: rgb(255 248 237 / 82%);
}

.shift-day p:last-child { margin-bottom: 0; }

.join-crew {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--paper);
}

.join-crew-card {
  max-width: 40rem;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: calc(var(--radius) * 1.1);
  background: var(--orange);
}

.join-crew-card h2 {
  margin: 0 0 .9rem;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  letter-spacing: -.01em;
  color: var(--cocoa-950);
}

.join-crew-card p {
  margin: 0 0 1.5rem;
  max-width: 34rem;
  color: var(--cocoa-950);
}

.join-crew-card p a {
  color: inherit;
  font-weight: 850;
  text-underline-offset: .2rem;
}

@media (max-width: 860px) {
  .perk-grid { grid-template-columns: 1fr; }
  .shift-days { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .volunteer-hero h1 { font-size: clamp(2.3rem, 10vw, 3rem); }

  .volunteer-hero::before {
    background:
      linear-gradient(0deg, rgb(33 16 11 / 90%) 0%, rgb(33 16 11 / 40%) 55%, rgb(33 16 11 / 55%)),
      url("../images/hero-volunteer.jpg") center 50% / cover no-repeat;
  }
}
