/* MACC One Love event page. Navy ground, pink furniture, Anton headings —
   the same system as the cards so the two read as one site. */

.page {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  background: var(--pwr-navy);
  padding-bottom: 40px;
}

.edge { height: var(--bar-edge); background: var(--pwr-hot-pink); }

/* --- hero --- */
.hero { padding: 28px 22px 26px; }
.hero__logo { width: 86px; height: auto; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 0;
  font-size: var(--type-eyebrow);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow);
  color: var(--pwr-soft-pink);
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: 52px;
  line-height: 0.94;
  letter-spacing: var(--tracking-hero);
  color: var(--pwr-white);
  text-transform: uppercase;
  margin: 14px 0 0;
}
.hero__meta {
  margin: 12px 0 0;
  font-size: var(--type-body-sm);
  font-weight: var(--weight-semibold);
  color: var(--pwr-hot-pink);
}
.hero__blurb {
  margin: 10px 0 0;
  font-size: var(--type-body-sm);
  line-height: var(--leading-body);
  color: var(--pwr-white);
  opacity: 0.72;
}

/* --- meet the team --- */
.team { padding: 0 22px 30px; }
.team__heading, .links__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: var(--type-eyebrow);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow);
  color: var(--pwr-soft-pink);
  text-transform: uppercase;
}
.team__hint {
  margin: 8px 0 16px;
  font-size: var(--type-caption);
  color: var(--pwr-white);
  opacity: 0.6;
}

.team__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.team__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--pwr-white);
  padding-bottom: 4px;
}

/* 3px hot-pink border, square corners — the same avatar treatment as card 5A,
   so the event page and the cards are visibly the same system. */
.team__frame {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid var(--pwr-hot-pink);
  background: var(--pwr-navy-800);
  overflow: hidden;
}
.team__frame img { width: 100%; height: 100%; object-fit: cover; }

.team__tile:hover .team__frame,
.team__tile:focus-visible .team__frame { border-color: var(--pwr-white); }

.team__name {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: var(--weight-display);
  font-size: var(--type-subhead);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.team__role {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.04em;
  color: var(--pwr-white);
  opacity: 0.62;
  line-height: var(--leading-tight);
}

/* --- link groups --- */
.links__group { padding: 0 22px 26px; }
.links__list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.links__row {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 66px;
  padding: 10px 14px;
  background: var(--pwr-navy);
  color: var(--pwr-white);
  text-align: left;
}
.links__row:hover, .links__row:focus-visible { background: #2E4364; }

.links__row--give {
  background: var(--pwr-hot-pink);
}
.links__row--give:hover, .links__row--give:focus-visible { background: #C4007A; }

.links__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--pwr-white);
}
.links__row--give .links__icon { background: rgba(255, 255, 255, 0.22); }
.links__icon svg { width: 100%; height: 100%; }

.links__text { flex: 1 1 auto; min-width: 0; }
.links__label {
  display: block;
  font-size: var(--type-body-sm);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-tight);
}
.links__note {
  display: block;
  margin-top: 3px;
  font-size: var(--type-caption);
  color: var(--pwr-soft-pink);
}
.links__row--give .links__note { color: var(--pwr-white); opacity: 0.85; }

/* The arrow icon is a left-arrow flipped, so one glyph serves both directions. */
.links__chev {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  opacity: 0.45;
  transform: scaleX(-1);
}
.links__chev svg { width: 100%; height: 100%; }
.links__row:hover .links__chev { opacity: 1; }

/* --- footer --- */
.foot { padding: 14px 22px 0; text-align: center; }
.foot__mark { width: 40px; height: auto; margin: 0 auto 14px; }
.foot__line {
  margin: 0;
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-eyebrow);
  color: var(--pwr-white);
  opacity: 0.55;
  text-transform: uppercase;
}
.foot__line--dim { margin-top: 6px; color: var(--pwr-hot-pink); opacity: 1; }

@media (min-width: 480px) {
  .hero__title { font-size: 60px; }
}
