@import url("../base/normalize.css");
@import url("../base/tokens.css");
@import url("../base/base.css");
@import url("../components/header.css");
@import url("../components/nav.css");
@import url("../components/footer.css");
@import url("../components/hero.css");
@import url("../components/cards.css");
@import url("../components/call-to-action.css");
@import url("../components/gradient.css");
@import url("../components/ripple.css");
@import url("../components/service-section.css");

/* Support Hub Specific Styles */
.support-page .rc-h1 {
  font-weight: 900;
  color: #111;
  text-transform: capitalize;
}

.support-hero {
  background:
    radial-gradient(980px 360px at 8% -4%,
      rgba(251, 146, 60, 0.24),
      transparent 62%),
    radial-gradient(860px 340px at 94% 14%,
      rgba(59, 130, 246, 0.2),
      transparent 64%),
    radial-gradient(620px 260px at 50% 88%,
      rgba(244, 63, 94, 0.14),
      transparent 72%),
    linear-gradient(128deg, #fff6ec 0%, #eef6ff 48%, #fff1f6 100%);
}

.support-hero .support-hero__content .rc-kicker,
.support-hero .support-hero__content .rc-h1,
.support-hero .support-hero__content .rc-lead {
  color: #111;
}

/* Two-column hero layout on desktop */
.support-hero .rc-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.support-hero__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: clamp(280px, 45vw, 720px);
}

/* Mobile hero layout - single column */
@media (max-width: 980px) {
  .support-hero .rc-hero__inner {
    grid-template-columns: 1fr;
  }

  .support-hero__image {
    max-width: 280px;
    margin: 1.5rem auto 0;
  }
}

.support-paths {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.support-page+section {
  margin-top: 2rem;
  ;
}

#what-your-support-funds .rc-container,
#funding-tiers .rc-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#faq .support-faq__container {
  max-width: 600px;
  margin-inline: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#why-this-matters .rc-container,
#who-qualifies .rc-container,
#featured-nominees .rc-container {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

#why-this-matters .support-container-narrow {
  max-width: 1260px;
}

#why-this-matters .support-section-intro {
  margin-top: 0;
}

@media (min-width: 981px) {
  #why-this-matters .support-container-narrow {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: center;
  }

  #why-this-matters .support-container-narrow>figure {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
  }

  #why-this-matters .support-container-narrow>.support-why-content {
    grid-column: 2;
    grid-row: 1;
  }

  #why-this-matters .support-why-content .support-section-title-centered {
    margin-top: 0;
  }
}

.support-section-title {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.support-path-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.support-path-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.support-path-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111;
}

.support-path-card p {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-path-card .rc-btn {
  margin-top: auto;
  align-self: flex-start;
}

.support-impact-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.impact-title .rc-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.support-impact-surface {
  background: #f9fafb;
}

.support-impact-item {
  text-align: center;
  padding: 1.5rem;
}

.support-impact-item .impact-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fb923c;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.support-impact-item .impact-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.support-why-section {
  background: #f9fafb;
  padding: 3rem 0;
  margin: 2rem 0;
}

.support-why-section .rc-container {
  max-width: 600px;
  margin-inline: auto;
}

.support-why-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #111;
}

.support-why-section ul {
  list-style: none;
  padding: 0;
}

.support-why-section li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.support-why-section li:before {
  content: "✓";
  color: #fb923c;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.support-cta-section .call-to-action {
  margin-bottom: 0;
}

.support-cta-section .cta-info .lead {
  max-width: 450px;
}

.support-cta-section .grid-img img {
  width: 100%;
  height: auto;
  max-width: 560px;
}

/* =========================================================================
   Sponsor Page Specific Styles
========================================================================= */

/* Background & Container Utilities */
.support-bg-light {
  background: #f9fafb;
}

.support-container-narrow {
  max-width: 600px;
  margin-inline: auto;
}

.support-container-narrow-center {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
}

/* Section & Content Styling */
.support-section-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.support-section-intro h3 {
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.support-section-intro p {
  color: #666;
  line-height: 1.6;
}

/* Grid Layouts */
.support-grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-grid-auto-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.support-grid-auto-300 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Centered Section Title */
.support-section-title-centered {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
}

.support-section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: #666;
  line-height: 1.6;
}

/* Feature/Includes Cards */
.support-feature-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.support-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111;
}

.support-feature-card p {
  color: #666;
  line-height: 1.6;
  flex: 1;
}

/* Sponsor Option Cards (Premium) */
.support-sponsor-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
}

.support-sponsor-card__header {
  padding: 2rem;
  /* border-bottom: 1px solid #e5e7eb; */
}

.support-sponsor-card__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.support-sponsor-card__price {
  font-size: 2rem;
  font-weight: 900;
  color: #fb923c;
  margin-bottom: 1rem;
}

.support-sponsor-card__body {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.support-sponsor-card__list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex: 1;
}

.support-sponsor-card__list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.support-sponsor-card__list li:before {
  content: "✓";
  color: #fb923c;
  font-weight: bold;
  flex-shrink: 0;
}

.support-sponsor-card__btn {
  width: 100%;
}

/* Secondary Sponsor Cards */
.support-sponsor-card-secondary {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
}

.support-sponsor-card-secondary__header {
  padding: 2rem;
}

.support-sponsor-card-secondary__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.support-sponsor-card-secondary__price {
  font-size: 2rem;
  font-weight: 900;
  color: #fb923c;
  margin-bottom: 1rem;
}

.support-sponsor-card-secondary__body {
  padding: 0 2rem 2rem;
  display: flex;
  flex-direction: column;
}

.support-sponsor-card-secondary__list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex: 1;
}

.support-sponsor-card-secondary__list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: #111;
}

.support-sponsor-card-secondary__list li:before {
  content: "✓";
  color: #fb923c;
  font-weight: bold;
  flex-shrink: 0;
}

.support-sponsor-card-secondary__btn {
  width: 100%;
}

/* Featured Nominees */
.support-nominee-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
}

.support-nominee-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.support-nominee-card__category {
  color: #999;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.support-nominee-card p {
  color: #666;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.support-nominee-card__btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Success Story Cards */
.support-story-card {
  background: #fff;
  border-radius: 0.75rem;
  display: flex;
  flex-direction: column;
  border: 1px solid #e5e7eb;
}

.support-story-card__header {
  padding: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.support-story-card__header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111;
}

.support-story-card__body {
  padding: 2rem;
}

.support-story-card__quote {
  border-left: 3px solid #fb923c;
  padding-left: 1rem;
  margin: 0;
  color: #666;
  font-style: italic;
  line-height: 1.6;
}

.support-story-card__attribution {
  margin-top: 1rem;
  font-weight: 700;
  color: #111;
}

/* Qualifier List */
.support-qualifier-list {
  list-style: none;
  padding: 0;
}

.support-qualifier-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.support-qualifier-list li:before {
  content: "✓";
  color: #fb923c;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.support-qualifier-list li span {
  color: #666;
  line-height: 1.6;
}

.support-qualifies-layout {
  display: grid;
  gap: 2rem;
}

.support-qualifies-card {
  margin: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.support-qualifies-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.support-qualifies-content .support-section-title-centered {
  margin-bottom: 1.5rem;
}

@media (min-width: 981px) {
  .support-qualifies-layout {
    max-width: 1260px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
  }

  .support-qualifies-content {
    justify-self: end;
  }
}

/* Button Group Centering */
.support-button-group-center {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Final CTA Section */
.rc-cta {
  padding: 58px 0;
}

.rc-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--rc-border);
  background: rgba(0, 0, 0, 0.02);
  border-radius: var(--rc-radius);
  padding: 18px;
}

@media (max-width: 980px) {
  .rc-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .support-paths {
    grid-template-columns: 1fr;
  }

  .support-path-card {
    padding: 1.5rem;
  }

  .support-impact-item .impact-number {
    font-size: 2rem;
  }

  .support-sponsor-card__header,
  .support-sponsor-card__body,
  .support-sponsor-card-secondary__header,
  .support-sponsor-card-secondary__body {
    padding: 1.5rem;
  }

  .support-feature-card,
  .support-nominee-card,
  .support-story-card {
    padding: 1.5rem;
  }

  .support-button-group-center {
    justify-content: center;
  }
}