/*
  SPONSORSHIP TIERS STYLES
  =========================
  Powers the "Sponsorship Opportunities" section on events.html --
  standard tier cards (Bronze/Silver/Gold/Platinum) plus named-sponsorship
  cards (Grill Sponsor, Thirst Station Sponsor, etc.).
*/

.sponsorship-tiers {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px 0 24px;
  text-align: center;
}

.sponsorship-tiers h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-h3);
  font-weight: 400;
  color: var(--color-scheme5-foreground-heading);
  margin: 0 0 12px 0;
}

.sponsorship-tiers__intro {
  font-family: var(--font-body);
  color: var(--color-scheme5-foreground);
  opacity: 0.8;
  max-width: 640px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

.sponsorship-tiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: left;
  margin-bottom: 48px;
}

.tier-card {
  background-color: var(--color-scheme5-background);
  border-radius: 12px;
  padding: 24px 20px;
  border: 1px solid rgba(55, 35, 69, 0.1);
}

.tier-card--featured {
  border: 2px solid #553d66;
}

.tier-card h3 {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-scheme5-foreground-heading);
  margin: 0 0 8px 0;
}

.tier-card__ask {
  font-family: var(--font-body);
  font-weight: bold;
  color: var(--color-scheme5-foreground-heading);
  margin: 0 0 12px 0;
}

.tier-card__ask span {
  display: block;
  font-weight: normal;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 2px;
}

.tier-card__benefits {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-scheme5-foreground);
  line-height: 1.6;
  margin: 0;
}

.tier-card--clickable,
.named-tier--clickable {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tier-card--clickable:hover,
.tier-card--clickable:focus,
.named-tier--clickable:hover,
.named-tier--clickable:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(55, 35, 69, 0.15);
  outline: none;
}

.sponsorship-tiers__alt-heading {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-scheme5-foreground-heading);
  margin: 0 0 20px 0;
}

.sponsorship-tiers__named-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.named-tier {
  border: 1px solid rgba(55, 35, 69, 0.15);
  border-radius: 10px;
  padding: 18px 16px;
}

.named-tier__title {
  font-family: var(--font-body);
  font-weight: bold;
  color: var(--color-scheme5-foreground-heading);
  margin: 0 0 4px 0;
}

.named-tier__covers {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-scheme5-foreground);
  opacity: 0.8;
  margin: 0 0 8px 0;
}

.named-tier__ask {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: bold;
  color: #553d66;
  margin: 0;
}

.sponsorship-tiers__note {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-scheme5-foreground);
  opacity: 0.65;
  max-width: 620px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.sponsorship-tiers__cta {
  display: inline-block;
  background-color: #372345;
  color: #ffffff;
  font-family: var(--font-body);
  text-decoration: none;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
}

.sponsorship-tiers__cta:hover {
  opacity: 0.85;
}
