@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  box-sizing: border-box;
}

body.site-body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #1f2937;
  background: #F0F4F1;
}

.top-contact-bar {
  background: #064e3b;
  color: #d1fae5;
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  display: none;
}

.top-contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-contact-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .top-contact-bar {
    display: block;
  }
}
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #111827;
  font-weight: 700;
  margin-right: 0.5rem;
}

.site-brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.site-brand-text {
  font-size: 1.1rem;
}

.site-nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

.site-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.site-nav-link {
  text-decoration: none;
  color: #1f2937;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-weight: 600;
}

.site-nav-link:hover {
  background: #e5e7eb;
}

/* ── Teams body section ──────────────────────────────── */
.teams-body-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 3rem 0 4rem;
}

.teams-body-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.teams-org-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.teams-org-title {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.03em;
  font-size: 2rem;
  color: #064e3b;
  margin: 0 0 0.35rem;
}

.teams-org-address {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}

.teams-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 760px) {
  .teams-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.teams-resources-heading {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.35rem;
  color: #064e3b;
  margin: 0 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d1fae5;
}

.teams-resources-group-label {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin: 1.25rem 0 0.35rem;
}

.teams-resources-text {
  margin: 0 0 0.25rem;
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.65;
}

.teams-resources-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.teams-resources-link {
  color: #2563eb;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.teams-resources-link:hover {
  text-decoration: underline;
}

.teams-info-col .teams-resources-text {
  line-height: 1.7;
}

/* ── End Teams body section ──────────────────────────── */
.site-nav-dropdown {
  position: relative;
  display: inline-flex;
}

.site-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 9rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  padding: 0.35rem;
  display: none;
  z-index: 300;
}

.site-nav-dropdown:hover .site-nav-dropdown-menu,
.site-nav-dropdown:focus-within .site-nav-dropdown-menu {
  display: block;
}

.site-nav-dropdown.is-open .site-nav-dropdown-menu {
  display: block;
}

.site-nav-dropdown-link {
  display: block;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  padding: 0.4rem 0.55rem;
  border-radius: 0.4rem;
}

.site-nav-dropdown-link:hover {
  background: #f3f4f6;
}

.site-cta-button {
  text-decoration: none;
  color: #ffffff;
  background: #2563eb;
  border: 1px solid #1d4ed8;
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-cta-button:hover {
  background: #1d4ed8;
}

.site-login-button {
  background: #10b981;
  border-color: #059669;
}

.site-login-button:hover {
  background: #059669;
}

.site-logout-form {
  margin: 0;
  display: inline-flex;
}

.site-logout-button {
  background: #ef4444;
  border-color: #dc2626;
  cursor: pointer;
}

.site-logout-button:hover {
  background: #dc2626;
}

.site-flash-wrap {
  max-width: 960px;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
  display: grid;
  gap: 0.5rem;
}

.site-flash {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.6rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.site-flash-notice {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.site-flash-alert {
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

@media (max-width: 720px) {
  .site-nav {
    align-items: flex-start;
  }
  .site-nav-right {
    flex-basis: 100%;
    order: 3;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-nav-links {
    justify-content: flex-start;
  }
  .site-nav-dropdown {
    display: block;
  }
  .site-nav-dropdown-menu {
    position: static;
    margin-top: 0.35rem;
    min-width: 0;
  }
  .site-cta-button {
    margin-left: 0;
  }
}
.site-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}

.site-main h1 {
  margin: 0 0 0.75rem;
  font-size: 2rem;
}

.site-main h2 {
  margin-top: 1.5rem;
}

.events-hero-title,
.hero-title-line,
.about-title,
.home-events-title,
.cta-title,
.program-title {
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.03em;
}

.site-footer {
  background: #022c22;
  color: #ffffff;
}

.site-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
}

.site-footer-brand-icon {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.site-footer-brand-text {
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #a7f3d0;
}

.site-footer-heading {
  margin: 0 0 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fbbf24;
}

.site-footer-links,
.site-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.site-footer-link,
.site-footer-contact span {
  color: #a7f3d0;
  font-size: 0.88rem;
  text-decoration: none;
}

.site-footer-link:hover {
  color: #ffffff;
}

.site-footer-socials {
  display: flex;
  gap: 0.6rem;
}

.site-footer-social {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.6rem;
  background: #064e3b;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
}

.site-footer-social:hover {
  background: #065f46;
}

.site-footer-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: #6ee7b7;
}

.site-footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #064e3b;
  text-align: center;
  font-size: 0.75rem;
  color: #6ee7b7;
}

@media (max-width: 900px) {
  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b 0%, #065f46 55%, #022c22 100%);
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-top: 0;
  margin-bottom: 0;
  min-height: 78vh;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px rgba(6, 78, 59, 0.18);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
}

.hero-ball-run {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-ball {
  position: absolute;
  top: 15%;
  right: -7rem;
  font-size: clamp(6rem, 11vw, 9.5rem);
  line-height: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
  animation: hero-ball-flight 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s 1 both;
}

.hero-ball-trail {
  position: absolute;
  top: calc(15% + 3.15rem);
  right: -22rem;
  width: 20rem;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(254, 240, 138, 0.95), rgba(255, 255, 255, 0));
  filter: blur(1px);
  animation: hero-ball-trail-flight 1.9s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s 1 both;
}

@keyframes hero-ball-flight {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.65);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  38% {
    transform: translate3d(-34vw, 2.4rem, 0) rotate(-260deg) scale(1);
  }
  72% {
    transform: translate3d(-68vw, -0.8rem, 0) rotate(-620deg) scale(0.96);
    opacity: 1;
  }
  100% {
    transform: translate3d(-108vw, 1.2rem, 0) rotate(-920deg) scale(0.85);
    opacity: 0;
  }
}
@keyframes hero-ball-trail-flight {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  14% {
    opacity: 0.9;
  }
  100% {
    transform: translate3d(-108vw, 0, 0);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-ball,
  .hero-ball-trail {
    animation: none;
    display: none;
  }
}
.hero-blob,
.hero-ring {
  position: absolute;
  border-radius: 999px;
}

.hero-blob-gold {
  top: 4rem;
  left: 2rem;
  width: 18rem;
  height: 18rem;
  background: #fbbf24;
  filter: blur(90px);
}

.hero-blob-green {
  right: 3rem;
  bottom: 2rem;
  width: 22rem;
  height: 22rem;
  background: #34d399;
  filter: blur(100px);
}

.hero-ring-large {
  top: 50%;
  left: 50%;
  width: 34rem;
  height: 34rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-ring-small {
  top: 50%;
  left: 50%;
  width: 22rem;
  height: 22rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 44rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.2);
  color: #fef08a;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-title {
  margin: 0 0 1rem;
  line-height: 1;
  color: #ffffff;
}

.hero-title-line {
  display: block;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.hero-title-line-top {
  font-size: clamp(4rem, 8vw, 8rem);
}

.hero-title-line-bottom {
  font-size: clamp(4.5rem, 9vw, 9rem);
  color: #fcd34d;
}

.hero-description {
  margin: 0 0 2rem;
  font-size: 1.45rem;
  line-height: 1.65;
  font-weight: 600;
  color: #d1fae5;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 0.9rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-1px);
}

.hero-button-primary {
  background: #fbbf24;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(251, 191, 36, 0.22);
}

.hero-button-primary:hover {
  background: #fcd34d;
}

.hero-button-small {
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  align-self: flex-start;
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero-button-login {
  background: #10b981;
  border: 1px solid #059669;
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(16, 185, 129, 0.22);
}

.hero-button-login:hover {
  background: #34d399;
}

.login-page-section {
  min-height: calc(100vh - 14rem);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}

.login-card {
  width: 100%;
  max-width: 30rem;
  background: #ffffff;
  border-radius: 1.25rem;
  padding: 2rem;
  border: 1px solid #d1fae5;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.login-kicker {
  margin: 0 0 0.5rem;
  color: #047857;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.login-title {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
  color: #064e3b;
}

.login-subtitle {
  margin: 0.65rem 0 1.4rem;
  color: #4b5563;
  font-size: 1rem;
}

.login-alert {
  margin: 0 0 1rem;
  padding: 0.6rem 0.75rem;
  border-radius: 0.5rem;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  font-size: 0.92rem;
  font-weight: 600;
}

.login-form {
  display: grid;
  gap: 1rem;
}

.login-field {
  display: grid;
  gap: 0.35rem;
}

.login-label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #1f2937;
}

.login-input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: 0.65rem;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  color: #111827;
  background: #f9fafb;
}

.login-input:focus {
  outline: none;
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
  background: #ffffff;
}

.login-submit-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.8rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid #059669;
  background: #10b981;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.login-submit-button:hover {
  background: #059669;
  transform: translateY(-1px);
}

.hero-panel-wrap {
  display: flex;
  justify-content: center;
}

.hero-panel {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.hero-panel-image {
  width: 100%;
  aspect-ratio: 235/240;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.35);
}

.hero-panel-photo {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #ffffff;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.18);
  min-width: 13rem;
}

.hero-stat-left {
  left: -1.5rem;
  bottom: -1.75rem;
}

.hero-stat-right {
  right: -1.25rem;
  top: -1.25rem;
}

.hero-stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.85rem;
  background: #dcfce7;
  font-size: 1.2rem;
}

.hero-stat-value {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.hero-stat-label {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding: 1.5rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    max-width: 100%;
  }
  .hero-stat-left {
    left: 1rem;
    bottom: 1rem;
  }
  .hero-stat-right {
    right: 1rem;
    top: 1rem;
  }
}
@media (max-width: 640px) {
  .site-main {
    margin-top: 1rem;
  }
  .hero-section {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
  .hero-panel-image {
    aspect-ratio: 235/240;
  }
  .hero-stat {
    position: static;
    margin-top: 1rem;
    min-width: 0;
  }
  .hero-panel {
    display: grid;
    gap: 0.75rem;
  }
  .hero-button {
    width: 100%;
  }
}
/* ── Stats Bar ─────────────────────────────── */
.stats-section {
  padding: 3rem 0;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.stat-icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-icon-emerald {
  background: #ecfdf5;
  color: #059669;
}

.stat-icon-amber {
  background: #fffbeb;
  color: #d97706;
}

.stat-icon-blue {
  background: #eff6ff;
  color: #2563eb;
}

.stat-icon-rose {
  background: #fff1f2;
  color: #e11d48;
}

.stat-value {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.1;
  font-weight: 800;
  color: #111827;
}

.stat-label {
  margin: 0.2rem 0 0;
  font-size: 0.76rem;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 520px) {
  .stats-section {
    padding: 2.25rem 0;
  }
  .stats-container {
    padding: 0 1.25rem;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
/* ── Welcome Sponsors Marquee ─────────────────────────────── */
.sponsors-section {
  padding: 2.25rem 0 2.5rem;
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  overflow: hidden;
}

.sponsors-header-wrap {
  max-width: 1280px;
  margin: 0 auto 0.9rem;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sponsors-join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  border-radius: 0.6rem;
  background: #fbbf24;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.3s ease;
}

.sponsors-join-button:hover {
  background: #fcd34d;
}

.sponsors-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #047857;
}

.sponsors-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}

@media (min-width: 1500px) {
  .sponsors-marquee {
    max-width: 1360px;
    margin: 0 auto;
  }
}
.sponsors-track {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: max-content;
  padding-right: 0.8rem;
  animation: sponsors-scroll-left 24s linear infinite;
}

.sponsor-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.45rem;
  white-space: normal;
  padding: 0.9rem 1rem;
  min-height: 9.25rem;
  width: 12rem;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #d1fae5;
  color: #065f46;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.08);
}

.sponsor-logo {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 0.7rem;
  object-fit: contain;
  background: #ffffff;
  padding: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sponsor-name {
  display: inline-block;
  text-align: center;
  line-height: 1.25;
}

@keyframes sponsors-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 640px) {
  .sponsors-header-wrap {
    padding: 0 1.25rem;
  }
  .sponsors-track {
    animation-duration: 18s;
  }
  .sponsor-chip {
    font-size: 0.8rem;
    padding: 0.7rem 0.8rem;
    width: 9.8rem;
    min-height: 8.4rem;
  }
  .sponsor-logo {
    width: 4.4rem;
    height: 4.4rem;
  }
}
/* ── Home Weather Update ─────────────────────────────── */
.home-weather-section {
  padding: 2rem 0 2.75rem;
  background: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.home-weather-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-weather-header {
  text-align: center;
  margin-bottom: 1rem;
}

.home-weather-kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #be123c;
  margin-bottom: 0.35rem;
}

.home-weather-title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
}

.home-weather-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #fecdd3;
  border-radius: 1rem;
  padding: 1rem 1rem 1.1rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.home-weather-badge {
  display: inline-block;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  background: #ffe4e6;
  color: #be123c;
}

.home-weather-entry-title {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
}

.home-weather-entry-meta,
.home-weather-entry-location,
.home-weather-entry-description,
.home-weather-empty {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4b5563;
}

.home-weather-entry-location,
.home-weather-entry-description,
.home-weather-empty {
  margin-top: 0.35rem;
}

.home-weather-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.8rem;
  text-decoration: none;
  padding: 0.5rem 0.8rem;
  border-radius: 0.6rem;
  background: #111827;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.home-weather-link:hover {
  background: #1f2937;
}

@media (max-width: 640px) {
  .home-weather-container {
    padding: 0 1.25rem;
  }
}
/* ── About Section ─────────────────────────────── */
.about-section {
  padding: 5rem 0;
  background: #ffffff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.about-image-wrap {
  position: relative;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.about-image-frame {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16/9;
}

.about-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

.about-kicker {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 700;
  color: #059669;
}

.about-title {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #111827;
}

.about-description {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.75;
  color: #4b5563;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}

.about-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: #d1fae5;
  color: #059669;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-image-frame {
    aspect-ratio: 4/3;
  }
}
/* ── Home Upcoming Events ─────────────────────────────── */
.home-events-preview {
  padding: 4rem 0;
  background: #F0F4F1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.home-events-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.home-events-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.home-events-kicker {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #047857;
  margin-bottom: 0.35rem;
}

.home-events-title {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
}

.home-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.home-event-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem 1rem 0.9rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.home-event-badge {
  display: inline-block;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.home-event-badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.home-event-badge-emerald {
  background: #d1fae5;
  color: #065f46;
}

.home-event-badge-amber {
  background: #fef3c7;
  color: #92400e;
}

.home-event-title {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
}

.home-event-meta,
.home-event-location {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #4b5563;
}

.home-event-location {
  margin-top: 0.25rem;
  color: #065f46;
  font-weight: 600;
}

@media (max-width: 900px) {
  .home-events-grid {
    grid-template-columns: 1fr;
  }
}
/* ── Mission Section ─────────────────────────────── */
.mission-section {
  padding: 4.5rem 0;
  background: #fff7d6;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.mission-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.mission-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #92400e;
}

.mission-title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: #111827;
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  letter-spacing: 0.03em;
}

.mission-description {
  margin: 0 auto 1.5rem;
  max-width: 780px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
}

.mission-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.mission-point {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #f3e8a8;
  font-size: 0.92rem;
  font-weight: 700;
  color: #374151;
  box-shadow: 0 4px 12px rgba(146, 64, 14, 0.08);
}

@media (max-width: 640px) {
  .mission-section {
    padding: 3.5rem 0;
  }
  .mission-container {
    padding: 0 1.25rem;
  }
  .mission-description {
    font-size: 1rem;
  }
}
/* ── Bottom CTA ─────────────────────────────── */
.cta-section {
  padding: 5rem 0;
  background: #F0F4F1;
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #065f46 0%, #022c22 100%);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
}

.cta-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(65px);
}

.cta-blob-gold {
  top: -2.5rem;
  right: -2rem;
  width: 16rem;
  height: 16rem;
  background: #fbbf24;
}

.cta-blob-green {
  left: -2rem;
  bottom: -2.5rem;
  width: 12rem;
  height: 12rem;
  background: #34d399;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.2);
  color: #fef08a;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 900;
  color: #ffffff;
}

.cta-description {
  margin: 0 0 1.8rem;
  font-size: 1.1rem;
  line-height: 1.65;
  color: #d1fae5;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.85rem 1.25rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease;
}

.cta-button-primary {
  background: #fbbf24;
  color: #ffffff;
}

.cta-button-primary:hover {
  background: #fcd34d;
}

.cta-button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .cta-section {
    padding: 4rem 0;
  }
  .cta-card {
    padding: 2.5rem 1.25rem;
  }
  .cta-button {
    width: 100%;
  }
}
/* ── Events Page ─────────────────────────────── */
.events-hero {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 60%, #022c22 100%);
  padding: 5rem 1.5rem;
  text-align: center;
}

.programs-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.soccer-page-hero {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}

.programs-hero .events-hero-title,
.soccer-page-hero .events-hero-title {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fcd34d;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.programs-hero .events-hero-sub,
.soccer-page-hero .events-hero-sub {
  font-size: 1.35rem;
  line-height: 1.7;
  font-weight: 600;
  color: #fef3c7;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.events-hero-inner {
  max-width: 680px;
  margin: 0 auto;
}

.events-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900;
  color: #ffffff;
}

.events-hero-sub {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #d1fae5;
}

.events-hero-actions {
  margin-top: 1.35rem;
}

.events-add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #fbbf24;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.events-add-button:hover {
  background: #fcd34d;
}

.events-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #ef4444;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 0.5rem;
}

.events-delete-button:hover {
  background: #f87171;
}

.events-delete-button.active {
  background: #a16207;
}

.events-delete-button.active:hover {
  background: #b45309;
}

.events-confirm-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: #10b981;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-left: 0.5rem;
}

.events-confirm-delete-button:hover {
  background: #34d399;
}

.event-card-delete-checkbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.event-card.has-checkbox {
  position: relative;
}

.event-delete-checkbox {
  width: 1.35rem;
  height: 1.35rem;
  cursor: pointer;
  accent-color: #ef4444;
}

.events-list-section {
  padding: 4rem 0;
  background: #F0F4F1;
}

.events-list-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card {
  display: flex;
  flex-direction: row;
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
  position: relative;
}

.event-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.event-card-image-wrap {
  width: 17rem;
  flex-shrink: 0;
}

.event-card-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.event-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-card-body {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.event-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  align-self: flex-start;
}

.event-badge-blue {
  background: #dbeafe;
  color: #1d4ed8;
}

.event-badge-emerald {
  background: #d1fae5;
  color: #065f46;
}

.event-badge-amber {
  background: #fef3c7;
  color: #92400e;
}

.event-badge-purple {
  background: #ede9fe;
  color: #6d28d9;
}

.event-badge-rose {
  background: #ffe4e6;
  color: #be123c;
}

.event-badge-red {
  background: #fee2e2;
  color: #b91c1c;
}

.event-card-title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #111827;
}

.event-card:hover .event-card-title {
  color: #065f46;
}

.event-card-desc {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #4b5563;
}

.event-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 0.5rem;
}

.event-meta-item {
  font-size: 0.88rem;
  color: #6b7280;
}

.fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.field-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.field-card-image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #d1fae5;
}

.field-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.field-card-body {
  padding: 1.15rem 1.2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field-card-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.field-card-location {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #065f46;
}

.field-card-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #4b5563;
}

.schedule-card {
  overflow: visible;
}

.schedule-card-body {
  gap: 0.9rem;
}

.schedule-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.schedule-card-summary {
  min-width: 0;
}

.schedule-card-title {
  margin-bottom: 0;
}

.schedule-toggle-button {
  border: 1px solid #d1d5db;
  background: #f9fafb;
  color: #065f46;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.schedule-toggle-button:hover {
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.schedule-card-details[hidden] {
  display: none;
}

.schedule-card.is-open {
  box-shadow: 0 10px 28px rgba(6, 95, 70, 0.12);
  border-color: #ccebdc;
}

.schedule-pdf-preview-wrap {
  margin-top: 0.7rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #ffffff;
}

.schedule-pdf-preview {
  display: block;
  width: 100%;
  height: 480px;
  border: 0;
}

.program-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.program-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.1rem;
  padding: 1.35rem 1.4rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  position: relative;
}

.program-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.program-card-delete-checkbox {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #ffffff;
  border: 2px solid #d1d5db;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-delete-checkbox {
  width: 1.35rem;
  height: 1.35rem;
  cursor: pointer;
  accent-color: #ef4444;
}

.program-badge {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #d1fae5;
  color: #065f46;
  margin-bottom: 0.6rem;
}

.program-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.program-title-wrap {
  min-width: 0;
}

.program-title {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.25;
  color: #111827;
}

.program-quick-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
  align-items: flex-end;
}

.program-meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  background: #f3f4f6;
  color: #374151;
}

.program-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #4b5563;
}

.program-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(14rem, 1fr);
  gap: 1.1rem;
  align-items: start;
}

.program-extra-info {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.8rem;
  background: #f9fafb;
}

.program-extra-info-title {
  margin: 0 0 0.35rem;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #374151;
}

.program-extra-info-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #4b5563;
}

.program-details {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.program-detail-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.7rem;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.35;
  color: #374151;
}

@media (max-width: 700px) {
  .event-card {
    flex-direction: column;
  }
  .schedule-card-top {
    flex-direction: column;
  }
  .schedule-toggle-button {
    align-self: flex-start;
  }
  .program-cards-grid {
    gap: 1rem;
  }
  .program-card-head {
    flex-direction: column;
  }
  .program-quick-meta {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .program-content-grid {
    grid-template-columns: 1fr;
  }
  .fields-grid {
    grid-template-columns: 1fr;
  }
  .event-card-image-wrap {
    width: 100%;
    height: 12rem;
  }
  .event-card-image-placeholder {
    min-height: 12rem;
  }
}
/* ── Event Entry ─────────────────────────────── */
.event-entry-page {
  padding: 3.5rem 0;
  background: #F0F4F1;
}

.event-entry-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.event-entry-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #111827;
}

.event-entry-header p {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #4b5563;
}

.event-entry-error {
  margin: 1rem 0 0;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.event-entry-form {
  margin-top: 1.35rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.35rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.event-entry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem 1rem;
}

.event-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event-field-full {
  grid-column: 1/-1;
}

.event-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.event-field input,
.event-field select,
.event-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: #111827;
  background: #ffffff;
}

.event-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.event-field-help {
  font-size: 0.78rem;
  color: #6b7280;
}

.event-field-checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.event-field-checkbox input[type=checkbox] {
  width: auto;
  margin-top: 0.15rem;
  cursor: pointer;
}

.event-field-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  margin: 0;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.95rem;
}

.event-field-checkbox label span {
  font-weight: 600;
}

.event-entry-actions {
  margin-top: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.event-submit-button {
  border: none;
  border-radius: 0.75rem;
  background: #065f46;
  color: #ffffff;
  padding: 0.7rem 1.05rem;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.event-submit-button:hover {
  background: #047857;
}

.event-cancel-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #065f46;
  text-decoration: none;
}

.event-cancel-link:hover {
  text-decoration: underline;
}

.event-entry-presets-section {
  margin: 2rem 0 0;
}

.event-entry-presets-section h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #111827;
}

.event-entry-presets-hint {
  margin: 0 0 1.2rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.event-entry-no-presets {
  margin: 0;
  padding: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
  background: #f9fafb;
  border: 1px dashed #d1d5db;
  border-radius: 0.65rem;
}

.event-entry-presets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.event-entry-preset-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 0.85rem;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.event-entry-preset-card:hover {
  border-color: #065f46;
  box-shadow: 0 4px 12px rgba(6, 95, 70, 0.15);
  transform: translateY(-2px);
}

.preset-card-content {
  flex: 1;
  margin-bottom: 1rem;
}

.preset-card-icon {
  width: 2rem;
  height: 2rem;
  color: #065f46;
  margin-bottom: 0.5rem;
}

.event-entry-preset-card h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.preset-category {
  margin: 0.25rem 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #065f46;
  font-weight: 600;
}

.preset-date {
  margin: 0.35rem 0;
  font-size: 0.85rem;
  color: #6b7280;
}

.preset-card-button {
  width: 100%;
  border: 1px solid #065f46;
  background: #ffffff;
  color: #065f46;
  padding: 0.55rem 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.preset-card-button:hover {
  background: #065f46;
  color: #ffffff;
}

.preset-card-actions {
  display: flex;
  gap: 0.5rem;
  width: 100%;
}

.preset-card-actions .preset-card-button {
  flex: 1;
}

.preset-card-delete-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  border: 1px solid #ef4444;
  background: #ffffff;
  color: #ef4444;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.preset-card-delete-button:hover {
  background: #ef4444;
  color: #ffffff;
}

.event-entry-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 600;
}

.event-entry-divider::before,
.event-entry-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.event-entry-divider::before {
  margin-right: 1rem;
}

.event-entry-divider::after {
  margin-left: 1rem;
}

.event-entry-header-custom {
  margin-bottom: 1.2rem;
}

.event-entry-header-custom h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #111827;
}

.event-entry-header-custom p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

@media (max-width: 700px) {
  .event-entry-grid {
    grid-template-columns: 1fr;
  }
  .event-entry-form {
    padding: 1rem;
  }
  .event-entry-presets-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.85rem;
  }
}
