/* Page-specific & Sub-view Styles (Programs, Rep Teams, Tryouts, About, Coaches, Locations, FAQ, Contact, Registration Flow) */

.page-hero {
  padding: calc(var(--header-height) + 3.5rem) 0 3.5rem;
  background-color: var(--color-primary-dark);
  color: #ffffff;
  position: relative;
  border-bottom: 1px solid var(--color-border-dark);
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.page-hero-desc {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 650px;
  line-height: 1.6;
}

.page-container {
  padding: 4.5rem 0;
}

/* Tabs & Filter Bar */
.filter-tab-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 2.5rem;
  scrollbar-width: none;
}

.filter-tab-bar::-webkit-scrollbar {
  display: none;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-pill);
  background: var(--color-bg-light);
  color: var(--text-light-secondary);
  border: 1px solid var(--color-border-light);
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-brand-pink);
  color: #ffffff;
  border-color: var(--color-brand-pink);
  box-shadow: 0 4px 12px rgba(255, 0, 85, 0.25);
}

/* Program Detailed Cards */
.program-detail-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.program-detail-card:hover {
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.program-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.25rem 0 1.75rem;
}

.program-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-light-secondary);
}

.program-feature-item svg {
  color: var(--color-brand-green);
  flex-shrink: 0;
}

.program-meta-box {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--color-border-light);
}

.meta-row {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

.meta-row:last-of-type {
  border-bottom: none;
}

.meta-label {
  color: var(--text-light-muted);
  font-weight: 600;
}

.meta-val {
  font-weight: 700;
  color: var(--text-light-primary);
}

/* Rep Teams Page */
.rep-teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.rep-team-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.rep-team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand-pink);
}

.rep-team-header {
  background: var(--color-navy-dark);
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
}

.rep-team-age {
  font-size: 2.2rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-brand-pink);
  line-height: 1;
}

.rep-team-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.rep-team-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

/* Tryout Schedule & Age Calculator */
.tryout-calc-card {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-navy-dark) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 3.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-dark);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.calc-input-group {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.calc-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
}

.calc-input:focus {
  outline: 2px solid var(--color-brand-pink);
  background: rgba(255, 255, 255, 0.12);
}

.calc-result-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
  background: #ffffff;
}

.schedule-table th {
  background: var(--color-navy-dark);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  padding: 1rem 1.25rem;
  text-transform: uppercase;
}

.schedule-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--text-light-secondary);
}

.schedule-table tr:hover td {
  background-color: var(--color-bg-light);
}
/* Tryout birth-year eligibility */

.tryout-year-content {
  min-width: 145px;
}

.tryout-year-content strong {
  display: block;
  color: var(--text-light-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
}

.tryout-year-content small {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-light-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.tryout-year-content span {
  display: inline-flex;
  margin-top: 0.45rem;
  padding: 0.23rem 0.5rem;
  color: var(--color-brand-pink);
  background: var(--color-brand-pink-light);
  border: 1px solid rgba(255, 0, 85, 0.25);
  border-radius: var(--radius-pill);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tryout-eligibility-note {
  margin: -1.8rem 0 2rem;
  color: var(--text-light-muted);
  font-size: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  .tryout-year-content {
    min-width: 0;
    text-align: right;
  }

  .tryout-year-content strong {
    font-size: 1.15rem;
  }

  .tryout-year-content small {
    font-size: 0.67rem;
  }

  .tryout-year-content span {
    font-size: 0.58rem;
  }

  .tryout-eligibility-note {
    margin: -1.5rem 0 1.75rem;
    font-size: 0.7rem;
  }
}

/* FAQ Accordion */
.faq-filter-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.faq-search-box {
  position: relative;
  margin-bottom: 2rem;
}

.faq-search-input {
  width: 100%;
  padding: 0.9rem 1.2rem 0.9rem 3rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
  background-color: #ffffff;
}

.faq-search-input:focus {
  outline: 2px solid var(--color-brand-pink);
  border-color: transparent;
}

.faq-search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light-muted);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-light-primary);
  text-align: left;
  background: transparent;
  gap: 1rem;
}

.faq-chevron {
  transition: transform var(--transition-normal);
  color: var(--color-brand-pink);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal), padding var(--transition-normal);
  background-color: var(--color-bg-light);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 1.25rem 1.75rem 1.75rem;
  border-top: 1px solid var(--color-border-light);
}

/* Location Card & Map */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.facility-amenities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-light-secondary);
}

.amenity-item svg {
  color: var(--color-brand-pink);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  height: 420px;
  background: #e2e8f0;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card-box {
  background: var(--color-navy-dark);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-row:last-child {
  margin-bottom: 0;
}

.contact-icon-bubble {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--color-brand-pink-light);
  border: 1px solid rgba(255, 0, 85, 0.3);
  color: var(--color-brand-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-panel {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light-primary);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  transition: border-color var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-brand-pink);
  box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.15);
}

/* Multi-Step Registration Wizard Inside Modal */
.reg-wizard-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
}

.reg-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.reg-step-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-bg-light);
  border: 2px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-light-muted);
  transition: all var(--transition-fast);
}

.reg-step-indicator.active .reg-step-bubble {
  background: var(--color-brand-pink);
  border-color: var(--color-brand-pink);
  color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 0, 85, 0.4);
}

.reg-step-indicator.completed .reg-step-bubble {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: #ffffff;
}

.reg-step-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

.reg-step-indicator.active .reg-step-title {
  color: var(--color-brand-pink);
}

.reg-option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.reg-option-card {
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: #ffffff;
}

.reg-option-card:hover {
  border-color: #cbd5e1;
  background: var(--color-bg-light);
}

.reg-option-card.selected {
  border-color: var(--color-brand-pink);
  background: var(--color-brand-pink-light);
}

.reg-option-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-light-primary);
}

.reg-option-desc {
  font-size: 0.8125rem;
  color: var(--text-light-muted);
}

/* Responsive Pages */
@media (max-width: 960px) {
  .program-detail-card {
    grid-template-columns: 1fr;
  }
  .rep-teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tryout-calc-card {
    grid-template-columns: 1fr;
  }
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .reg-option-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .rep-teams-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}
/* About Page */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-story-content > p {
  color: var(--text-light-secondary);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-image-wrap {
  width: 100%;
}

.about-main-image {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: 68% center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-principle {
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-top: 3px solid var(--color-brand-pink);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.about-principle h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-light-primary);
  margin-bottom: 0.5rem;
}

.about-principle p {
  color: var(--text-light-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.about-values-header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-value-card {
  min-height: 260px;
  padding: 2rem;
  background: var(--color-navy-dark);
  border: 1px solid var(--color-border-dark);
  border-top: 3px solid var(--color-brand-pink);
  border-radius: var(--radius-md);
}

.about-value-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-brand-pink);
  margin-bottom: 1.25rem;
}

.about-value-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.about-value-card p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-main-image {
    height: 400px;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-main-image {
    height: 300px;
  }
}
/* Coaches Page */
.coaches-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.coach-page-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

/* Tablet */
@media (max-width: 900px) {
  .coaches-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phone */
@media (max-width: 640px) {
  .coaches-page-grid {
    grid-template-columns: 1fr;
  }
}
/* Mobile Tryout Schedule Cards */
@media (max-width: 700px) {
  .tryout-schedule-wrapper {
    overflow: visible;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
  }

  .tryout-schedule-table,
  .tryout-schedule-table tbody,
  .tryout-schedule-table tr,
  .tryout-schedule-table td {
    display: block;
    width: 100%;
  }

  .tryout-schedule-table {
    background: transparent;
  }

  .tryout-schedule-table thead {
    display: none;
  }

  .tryout-schedule-table .schedule-row {
    margin-bottom: 1rem;
    padding: 1rem;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  .tryout-schedule-table .schedule-row:hover td {
    background: transparent;
  }

  .tryout-schedule-table td {
    display: grid;
    grid-template-columns: minmax(100px, 38%) 1fr;
    gap: 0.75rem;
    align-items: start;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--color-border-light);
    text-align: right;
  }

  .tryout-schedule-table td::before {
    content: attr(data-label);
    color: var(--text-light-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-align: left;
    text-transform: uppercase;
  }

  .tryout-schedule-table .tryout-division-cell {
    display: block;
    margin-bottom: 0.25rem;
    padding: 0 0 0.85rem;
    border-bottom: 2px solid var(--color-brand-pink);
    color: var(--text-light-primary);
    font-family: var(--font-display);
    font-size: 1.15rem;
    text-align: left;
  }

  .tryout-schedule-table .tryout-division-cell::before,
  .tryout-schedule-table .tryout-action-cell::before {
    display: none;
  }

  .tryout-schedule-table .tryout-action-cell {
    display: block;
    padding: 1rem 0 0;
    border-bottom: 0;
  }

  .tryout-schedule-table .tryout-action-cell .btn {
    width: 100%;
    justify-content: center;
  }
}
/* Tryout Information Cards */
.tryout-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tryout-info-card {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-top: 3px solid var(--color-brand-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.tryout-info-card h3 {
  margin-bottom: 1.25rem;
  color: var(--text-light-primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.tryout-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tryout-info-list li {
  display: grid;
  grid-template-columns: 1.35rem 1fr;
  gap: 0.65rem;
  align-items: start;
  color: var(--text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.tryout-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--color-brand-pink-light);
  color: var(--color-brand-pink);
  font-size: 0.75rem;
  font-weight: 800;
}

/* Phone */
@media (max-width: 700px) {
  .tryout-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }

  .tryout-info-card {
    padding: 1.25rem;
  }

  .tryout-info-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }

  .tryout-info-list {
    gap: 0.75rem;
  }

  .tryout-info-list li {
    font-size: 0.875rem;
  }
}
/* Corrected About Layout */
.about-story-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 4rem;
}

.about-image-wrap {
  position: static;
  width: 100%;
  height: auto;
}

.about-main-image.about-main-image--team {
  position: static;
  display: block;
  width: 100%;
  height: 540px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;

  /* Preserve heads and crop more from the legs */
  object-position: center 15%;
}

/* What Unites Us */
.about-values-header {
  position: relative;
  clear: both;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about-values-grid {
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.about-value-card {
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
}

/* Tablet and Phone */
@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .about-main-image.about-main-image--team {
    height: 480px;
    object-position: center 15%;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-value-card {
    height: auto;
  }
}

/* Small Phone */
@media (max-width: 600px) {
  .about-main-image.about-main-image--team {
    height: 400px;
  }

  .about-values-header {
    margin-bottom: 1.5rem;
  }

  .about-values-header .section-heading {
    font-size: 1.8rem;
  }
}
/* More spacious About values on desktop */
@media (min-width: 901px) {
  .about-values-header {
    margin: 1rem auto 3rem;
  }

  .about-values-grid {
    gap: 2rem;
  }

  .about-value-card {
    min-height: 280px;
    padding: 2.25rem;
  }

  .about-value-card h3 {
    margin-bottom: 1rem;
  }

  .about-value-card p {
    line-height: 1.7;
  }
}
/* About layout order */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-areas:
    "content image"
    "principles image";
  column-gap: 3.5rem;
  row-gap: 2rem;
  align-items: start;
}

.about-story-content {
  grid-area: content;
}

.about-image-wrap {
  grid-area: image;
}

.about-principles {
  grid-area: principles;
  margin-top: 0;
}

/* Mobile order: text, image, principles */
@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "image"
      "principles";
    gap: 2rem;
  }

  .about-principles {
    margin-top: 0;
  }
}
/* ==========================================
   LOCATIONS PAGE
   ========================================== */

.locations-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.venue-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 290px;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-top: 4px solid var(--color-brand-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.venue-card .badge-pill {
  align-self: flex-start;
}

.venue-card h2 {
  margin: 1.25rem 0 0.75rem;
  color: var(--text-light-primary);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
}

.venue-card-address {
  margin: 0 0 1.75rem;
  color: var(--text-light-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.venue-card-button {
  align-self: flex-start;
  margin-top: auto;
}

/* Tablet */
@media (max-width: 960px) {
  .locations-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .locations-page-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .venue-card {
    min-height: 0;
    padding: 1.5rem;
  }

  .venue-card h2 {
    font-size: 1.3rem;
  }

  .venue-card-button {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}
/* ==========================================
   LOCATIONS DIRECTORY
   ========================================== */

.location-directory-section {
  padding: 5rem 0;
  background: #f7f8fb;
}

.location-directory-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.45fr);
  gap: 2rem;
  align-items: stretch;
}

/* Left Panel */
.location-directory-intro {
  position: relative;
  overflow: hidden;
  padding: 3rem;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(236, 72, 153, 0.22),
      transparent 38%
    ),
    var(--color-navy-dark);
  border-radius: var(--radius-lg);
}

.location-intro-label {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--color-brand-pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-count {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.location-count strong {
  color: var(--color-brand-pink);
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.85;
}

.location-count span {
  max-width: 175px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
}

.location-directory-intro h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.05;
}

.location-directory-intro p {
  max-width: 340px;
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Location Rows */
.location-directory-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-directory-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  min-height: 150px;
  padding: 1.5rem 1.75rem;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.location-directory-row:hover {
  transform: translateY(-3px);
  border-color: rgba(236, 72, 153, 0.45);
  box-shadow: var(--shadow-md);
}

.location-row-number {
  color: var(--color-brand-pink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.location-row-content {
  min-width: 0;
}

.location-program-type {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--color-brand-pink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.location-row-content h2 {
  margin: 0 0 0.4rem;
  color: var(--text-light-primary);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.2;
}

.location-row-content p {
  margin: 0;
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.location-directions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.75rem 1rem;
  color: var(--text-light-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.location-directions-link:hover {
  color: #ffffff;
  background: var(--color-brand-pink);
  border-color: var(--color-brand-pink);
}

/* Tablet */
@media (max-width: 900px) {
  .location-directory-layout {
    grid-template-columns: 1fr;
  }

  .location-directory-intro {
    padding: 2.5rem;
  }

  .location-count {
    margin-bottom: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .location-directory-section {
    padding: 3rem 0;
  }

  .location-directory-section .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .location-directory-intro {
    padding: 2rem 1.5rem;
  }

  .location-count strong {
    font-size: 3.75rem;
  }

  .location-count span {
  font-size: 1.2rem;
  line-height: 1.05;
}
  
  .location-directory-intro h2 {
    font-size: 2rem;
  }

  .location-directory-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.75rem;
    min-height: 0;
    padding: 1.4rem 1.25rem;
  }

  .location-row-content h2 {
    font-size: 1.2rem;
  }

  .location-directions-link {
    grid-column: 2;
    width: 100%;
    margin-top: 0.5rem;
    box-sizing: border-box;
  }
}
/* FAQ Contact Banner */
.faq-contact-banner {
  margin-top: 3.5rem;
  padding: 2.25rem;
  text-align: center;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

.faq-contact-banner h3 {
  margin: 0 0 0.5rem;
}

.faq-contact-banner p {
  margin: 0 0 1.25rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

@media (max-width: 640px) {
  .faq-contact-banner {
    margin-top: 2rem;
    padding: 1.75rem 1.25rem;
  }

  .faq-contact-banner .btn {
    width: 100%;
    box-sizing: border-box;
  }
}
/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-page-section {
  padding: 5rem 0;
  background: #f7f8fb;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: stretch;
}

/* Left Contact Card */
.contact-details-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 3rem;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(236, 72, 153, 0.22),
      transparent 38%
    ),
    var(--color-navy-dark);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
}

.contact-details-label {
  display: block;
  margin-bottom: 1.75rem;
  color: var(--color-brand-pink);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details-card h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.05;
}

.contact-details-intro {
  margin: 0 0 2.5rem;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Contact Details */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-width: 0;
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-brand-pink);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-detail span {
  display: block;
  margin-bottom: 0.25rem;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-detail a:hover {
  color: var(--color-brand-pink);
}

/* Social Media */
.contact-social-section {
  margin-top: 3rem;
  padding-top: 2rem;
  padding-bottom: 0.75rem;
  border-top: 1px solid var(--color-border-dark);
}

.contact-social-section > span {
  display: block;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 42px;
  padding: 0.65rem 0.85rem;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.contact-social-link:hover {
  color: #ffffff;
  background: var(--color-brand-pink);
  border-color: var(--color-brand-pink);
}

/* Right Form Card */
.contact-message-card {
  min-width: 0;
  padding: 3rem;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.contact-message-card h2 {
  margin: 0.5rem 0;
  color: var(--text-light-primary);
  font-family: var(--font-display);
  font-size: 2rem;
}

.contact-form-intro {
  margin: 0 0 2rem;
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Success Message */
.contact-success-message {
  display: none;
  margin-bottom: 1.5rem;
  padding: 1rem;
  color: #2e6308;
  font-weight: 600;
  background: rgba(141, 198, 63, 0.15);
  border: 1px solid var(--color-brand-green);
  border-radius: var(--radius-sm);
}

/* Form Fields */
.contact-message-card .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-message-card .form-group {
  min-width: 0;
  margin-bottom: 1.25rem;
}

.contact-message-card .form-control {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-message-card textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

.contact-submit-button {
  width: 100%;
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 900px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .contact-page-section {
    padding: 3rem 0;
  }

  .contact-page-section .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-details-card,
  .contact-message-card {
    width: 100%;
    min-width: 0;
    padding: 2rem 1.25rem;
    border-radius: var(--radius-md);
    box-sizing: border-box;
  }

  .contact-details-card h2 {
    font-size: 2rem;
  }

  .contact-message-card h2 {
    font-size: 1.7rem;
  }

  .contact-details-intro {
    margin-bottom: 2rem;
  }

  .contact-message-card .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-detail {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .contact-detail-icon {
    width: 40px;
    height: 40px;
  }

  .contact-social-section {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    padding-bottom: 0;
  }

  .contact-social-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.65rem;
  }

  .contact-social-link {
    width: 100%;
    min-width: 0;
  }

  .contact-submit-button {
    min-height: 50px;
  }
}
/* ==========================================
   REP TEAMS PAGE
   ========================================== */

.rep-page-section {
  padding: 5rem 0;
  background: #f7f8fb;
}

/* Introduction */
.rep-page-intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.rep-page-intro .section-heading {
  margin: 0.5rem 0 1rem;
}

.rep-page-intro > p {
  margin: 0 auto;
  color: var(--text-light-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Team Grid */
.rep-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.rep-page-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.rep-page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Card Header */
.rep-page-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(236, 72, 153, 0.22),
      transparent 42%
    ),
    var(--color-navy-dark);
  border-top: 4px solid var(--color-brand-pink);
}

.rep-page-age {
  display: block;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1;
}

.rep-page-birth-year {
  margin: 0.45rem 0 0;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
}

.rep-page-team-label {
  padding: 0.45rem 0.75rem;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  white-space: nowrap;
}

/* Card Body */
.rep-page-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2rem;
}

.rep-page-card-body h3 {
  margin: 0 0 0.75rem;
  color: var(--text-light-primary);
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.rep-page-card-body > p {
  margin: 0 0 1.5rem;
  color: var(--text-light-secondary);
  font-size: 0.925rem;
  line-height: 1.65;
}

.rep-page-focus-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0 0 2rem;
  padding: 0;
  list-style: none;
}

.rep-page-focus-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 0.6rem;
  align-items: start;
  color: var(--text-light-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.rep-page-focus-list li span {
  color: var(--color-brand-pink);
  font-weight: 800;
}

.rep-page-button {
  width: 100%;
  margin-top: auto;
  box-sizing: border-box;
  text-align: center;
}

/* Closing CTA */
.rep-page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(236, 72, 153, 0.24),
      transparent 38%
    ),
    var(--color-navy-dark);
  border-radius: var(--radius-lg);
}

.rep-page-cta h2 {
  margin: 0.5rem 0 0.75rem;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.rep-page-cta p {
  max-width: 600px;
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Tablet */
@media (max-width: 900px) {
  .rep-page-grid {
    grid-template-columns: 1fr;
  }

  .rep-page-cta {
    grid-template-columns: 1fr;
  }

  .rep-page-cta .btn {
    width: fit-content;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .rep-page-section {
    padding: 3rem 0;
  }

  .rep-page-section .container {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .rep-page-intro {
    margin-bottom: 2rem;
    text-align: left;
  }

  .rep-page-intro .section-heading {
    font-size: 1.85rem;
  }

  .rep-page-grid {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }

  .rep-page-card-header {
    padding: 1.5rem;
  }

  .rep-page-age {
    font-size: 2.75rem;
  }

  .rep-page-card-body {
    padding: 1.5rem;
  }

  .rep-page-card-body h3 {
    font-size: 1.3rem;
  }

  .rep-page-cta {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .rep-page-cta h2 {
    font-size: 1.8rem;
  }

  .rep-page-cta .btn {
    width: 100%;
    box-sizing: border-box;
  }
}
/* Programs Page — Mobile */
@media (max-width: 640px) {
  /* Hide long program descriptions */
  .program-description {
    display: none;
  }

  /* Separate schedule information */
  .program-meta-box {
    padding: 1.25rem;
    box-sizing: border-box;
  }

  .program-meta-box .meta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  .program-meta-box .meta-row:first-child {
    padding-top: 0;
  }

  .program-meta-box .meta-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .program-meta-box .meta-label {
    display: block;
    color: var(--text-light-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .program-meta-box .meta-val {
    display: block;
    color: var(--text-light-primary);
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
  }
}
/* Programs Page — Mobile */
@media (max-width: 640px) {
  /* Hide both program descriptions */
  #view-programs .program-detail-card > div:first-child > p {
    display: none !important;
  }

  /* Separate program information */
  #view-programs .program-meta-box {
    padding: 1.25rem;
    box-sizing: border-box;
  }

  #view-programs .meta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border-light);
  }

  #view-programs .meta-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-transform: uppercase;
  }

  #view-programs .meta-val {
    display: block;
    font-size: 0.875rem;
    line-height: 1.5;
    text-align: left;
  }
}
/* Contact cards — mobile order */
@media (max-width: 640px) {
  #view-contact .contact-page-layout {
    display: flex !important;
    flex-direction: column !important;
  }

  #view-contact .contact-message-card {
    order: 1 !important;
  }

  #view-contact .contact-details-card {
    order: 2 !important;
  }
}
/* Tryout Fee Notice */
.tryout-fee-notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(236, 72, 153, 0.08);
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-left: 4px solid var(--color-brand-pink);
  border-radius: var(--radius-sm);
}

.tryout-fee-notice span {
  color: var(--text-light-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.tryout-fee-notice strong {
  color: var(--color-brand-pink);
  font-size: 1.4rem;
}
/* Programs Team Photo — No Frame */
.programs-feature-image {
  width: 100%;
  height: 470px;
  margin-bottom: 2.5rem;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

.programs-feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Keeps the girl’s head and more of her shoulders visible */
  object-position: center 65%;

  border-radius: var(--radius-lg);
}

/* Mobile */
@media (max-width: 640px) {
  .programs-feature-image {
    height: 360px;
  }

  .programs-feature-image img {
    object-position: center 60%;
  }
}
/* Rep Teams Photo — Crop Empty Ceiling Only */
.rep-teams-feature-image {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  margin-bottom: 2.5rem !important;
  overflow: hidden !important;
  border-radius: var(--radius-lg) !important;
}

.rep-teams-feature-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;

  /* Anchors the bottom and crops only from the top */
  object-position: center bottom !important;

  border-radius: var(--radius-lg) !important;
}

@media (max-width: 640px) {
  .rep-teams-feature-image {
    aspect-ratio: 16 / 9 !important;
    margin-bottom: 1.5rem !important;
    border-radius: var(--radius-md) !important;
  }

  .rep-teams-feature-image img {
    border-radius: var(--radius-md) !important;
  }
}
/* Program Skills Dropdown */
.program-skills-dropdown > summary {
  display: none;
}

/* Desktop: always display the skills */
@media (min-width: 641px) {
  .program-skills-dropdown > .program-features-list {
    display: flex !important;
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .program-skills-dropdown {
    width: 100%;
    margin-top: 1rem;
  }

  .program-skills-dropdown > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 1rem;
    box-sizing: border-box;

    color: var(--text-light-primary);
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;

    background: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-sm);
  }

  .program-skills-dropdown > summary::-webkit-details-marker {
    display: none;
  }

  .program-skills-dropdown > summary::after {
    content: "+";
    color: var(--color-brand-pink);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
  }

  .program-skills-dropdown[open] > summary::after {
    content: "−";
  }

  .program-skills-dropdown[open] > summary {
    border-color: var(--color-brand-pink);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }

  .program-skills-dropdown > .program-features-list {
    margin-top: 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  }

  .program-skills-dropdown .program-feature-item {
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }

  .program-skills-dropdown .program-feature-item:last-child {
    margin-bottom: 0;
  }

  .program-skills-dropdown .program-feature-item svg {
    flex: 0 0 18px;
    margin-top: 0.15rem;
  }
}
