
/* DEBUGGING ONLY - TO BE REMOVED */

header {
  padding-top: 20px;
  margin-bottom: 20px;
  ;
}

article {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.contact {
  margin-top: 12px;
  font-style: italic;
}



#package-cards-container>article {
  margin-top: 20px;
  margin-bottom: 30px;
}


#package-cards-container>article {
  flex: 30%;
}




/* Banner hero */

:root {

  --white: #ffffff;
}


.hero-banner {
  position: relative;
  text-align: center;
  color: var(--white);
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: radial-gradient(circle at top left, rgb(67, 0, 86)5%, rgb(98, 0, 101)50%, rgb(105, 11, 91)70%);
  /* teal overlay */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 900px;
  text-align: center;
}

.hero-content p {
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--white);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #ffffff;
  /* soft teal-white */
  margin-bottom: 20px;
  line-height: 1.6;
}


/* Mobile adjustments */
@media (max-width: 720px) {
  .hero-banner {
    height: auto;
    padding: 40px 0;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
}

/* Why Sponsor section*/
:root {
  --brand: #007284;
  --ink: #0a0a0a;
  --bg-light: #f6fafb;
  --dark-teal: #0c4860;
}

.why-wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  gap: 32px;
}

.why-heading {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.why-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
  max-width: 50ch;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.why-list li {
  position: relative;
  padding-left: 2.2rem;
  padding-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--dark-teal);
}

/* Custom checkmark bullet */
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--brand);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 33'><path fill='white' d='M21.663 12.752a.938.938 0 010 1.327l-7 7a.94.94 0 01-1.326 0l-3-3a.938.938 0 111.326-1.327l2.293 2.294.088-.088 6.293-6.294a.938.938 0 011.326 0zm5.4 3.664A11.062 11.062 0 1016 27.477 11.075 11.075 0 0027.063 16.416zm1.875 0A12.937 12.937 0 1116 3.478a12.951 12.951 0 0112.938 12.938z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 33'><path fill='white' d='M21.663 12.752a.938.938 0 010 1.327l-7 7a.94.94 0 01-1.326 0l-3-3a.938.938 0 111.326-1.327l2.293 2.294.088-.088 6.293-6.294a.938.938 0 011.326 0zm5.4 3.664A11.062 11.062 0 1016 27.477 11.075 11.075 0 0027.063 16.416zm1.875 0A12.937 12.937 0 1116 3.478a12.951 12.951 0 0112.938 12.938z'/></svg>") no-repeat center / contain;
}

/* Two-column on larger screens */
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.why-list {
  color: #00344b;
}


.modules span {
  color: var(--color-maroon-medium);
}

#module_description_card {
  grid-template-columns: 1fr 1fr;
}


  .module-figure {
    padding-top: 10px;
  }

@media (min-width: 768px) {
  .module-figure {
    padding-top: 0px;
  }
}