/* Brand colors: overridden via Réglages > ARX Sponsor Club (ou Réseau). */
:root {
  --arx-sc-primary: #1b2a5b;
  --arx-sc-secondary: #e63946;
  --arx-sc-text-dark: #111827;
  --arx-sc-text-light: #6b7280;
  --arx-sc-text-grey: #0B1127B2;
}

/* Fixed UI styling (no extra CSS variables). */
.arx-sc-registration {
  position: relative;
  margin: 0 auto;
  /* Unitless: scales with each element's font-size (preferred over em for line-height). */
  line-height: 1.2;
}

.arx-sc-loader {
  position: absolute;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.arx-sc-loader[hidden] {
  display: none !important;
}

.arx-sc-loader__spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid rgba(27, 42, 91, 0.15);
  border-top-color: var(--arx-sc-primary);
  animation: arx-sc-spin 0.75s linear infinite;
}

.arx-sc-loader__text {
  font-size: 15px;
  font-weight: 600;
  color: var(--arx-sc-text-dark);
}

@keyframes arx-sc-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Theme headings/paragraphs often set their own line-height; inherit from the block above. */
.arx-sc-registration :where(h1, h2, h3, h4, h5, h6, p, div) {
  line-height: inherit;
}



.arx-sc-stepper {
  margin-bottom: 60px;
  background: #ffffff;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 20px;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
}

.arx-sc-stepper-head {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.arx-sc-stepper-kicker {
  font-size: 13px;
  font-weight: 600;
  color: var(--arx-sc-text-grey);
}

.arx-sc-stepper-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--arx-sc-text-dark);
  letter-spacing: -0.01em;
}

.arx-sc-progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.08);
  overflow: hidden;
}

.arx-sc-progress-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--arx-sc-primary);
  transition: width 180ms ease;
}

.arx-sc-stepper-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.arx-sc-sponsoring .arx-sc-stepper-steps {
  grid-template-columns: repeat(4, 1fr);
}

.arx-sc-sponsor-head .arx-sc-field select {
  width: 50%;
  border-radius: 5px;
  margin: 20px 0;
}

.arx-sc-sponsor-step2-header {
  margin: 0 0 18px;
}

.arx-sc-sponsor-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: #ffffff;
  position: relative;
  min-height: 180px;
}

.arx-sc-sponsor-header-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--arx-sc-text-dark);
  font-weight: 800;
}

.arx-sc-sponsor-clubcard {
  position: absolute;
  top: 0px;
  right: 0px;
}

.arx-sc-sponsor-club-logo {
  height: 120px !important;
  max-width: unset !important;
  object-fit: contain;
  margin-bottom: 5px;
}

.arx-sc-sponsor-club-logo--placeholder {
  display: block;

}

.arx-sc-sponsor-clubcard-name {
  font-weight: 400;
  font-size: 20px;
  text-align: center;
  color: var(--arx-sc-text-dark);
}


.arx-sc-step {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #DDDDDDB2;
  border-radius: 20px;
  padding: 22px;
  color: var(--arx-sc-text-dark);
  font-weight: 700;
  text-align: left;
  background: #DDDDDDB2;
  --arx-sc-step-icon-color: var(--arx-sc-primary);
  cursor: pointer;
}

.arx-sc-step-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  border-radius: 5px;
  background: #ffffff;
  padding: 6px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arx-sc-step-icon::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: var(--arx-sc-step-icon-color);
  -webkit-mask: var(--arx-sc-step-icon-url) center / contain no-repeat;
  mask: var(--arx-sc-step-icon-url) center / contain no-repeat;
}

.arx-sc-step-kicker {
  font-size: 16px;
  font-weight: 400;
  color: var(--arx-sc-text-dark);
  line-height: 1.2em;
}

.arx-sc-step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--arx-sc-text-dark);
}

.arx-sc-step--active {
  background: var(--arx-sc-primary);
  border-color: var(--arx-sc-primary);
  --arx-sc-step-icon-color: #ffffff;
}

.arx-sc-step--active .arx-sc-step-kicker,
.arx-sc-step--active .arx-sc-step-title {
  color: #ffffff;
}

.arx-sc-step--active .arx-sc-step-icon {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.arx-sc-panel {
  display: none;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 20px;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
}

.arx-sc-panel-title {
  margin-bottom: 50px;
}

.arx-sc-panel--active {
  display: block;
}

.arx-sc-panel h2 {
  font-family: 'Belanosima';
  color: var(--arx-sc-text-dark);
  font-size: 35px;
  font-weight: 400;
}

.arx-sc-panel h3 {
  font-family: 'Belanosima';
  color: var(--arx-sc-text-dark);
  font-size: 30px;
  font-weight: 400;
}

.arx-sc-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.arx-sc-field {
  margin: 10px 0;
}

.arx-sc-field label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.5em;
  color: var(--arx-sc-text-dark);
}

.arx-sc-panel-contact {
  margin-top: 55px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #F3F3F3;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.arx-sc-panel-contact h3 {
  position: relative;
  padding-left: 55px;
}

.arx-sc-panel-contact h3::before {
  content: '';
  display: block;
  width: 43px;
  height: 43px;
  background: url('../../assets/img/club_contact_icon.svg') no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}



.arx-sc-field input,
.arx-sc-field select,
.arx-sc-field textarea {
  width: 100%;
  border-radius: 5px;
  padding: 25px;
  font-size: 20px;
  border: 1px solid rgba(0, 0, 0, 0.20);
  color: var(--arx-sc-text-dark);
}

.arx-sc-field input:focus,
.arx-sc-field select:focus,
.arx-sc-field textarea:focus {
  color: var(--arx-sc-text-dark);
}

.arx-sc-field input::placeholder,
.arx-sc-field select::placeholder,
.arx-sc-field textarea::placeholder {
  color: var(--arx-sc-text-grey);
}

.arx-sc-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 85px;
  padding-top: 80px;
  border-top: 1px solid #00000033;
}

/* Single button (e.g. step 1): align to the right; space-between does not move one item. */
.arx-sc-actions> :only-child {
  margin-left: auto;
}

.arx-sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  font-family: 'Belanosima';
  font-style: normal;
  line-height: normal;
  color: var(--arx-sc-text-light);
  font-size: 35px;
  font-weight: 400;
  padding: 14px;
  min-width: 300px;
  cursor: pointer;
}

.arx-sc-btn-primary {
  background: var(--arx-sc-primary);
  border-color: var(--arx-sc-primary);
}

.arx-sc-btn-back {
  background: #FFF;
  color: var(--arx-sc-primary);
  border: 1px solid var(--arx-sc-text-grey);
}

.arx-sc-btn-back::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 26px;
  background: url("../img/left_primary.svg") center / contain no-repeat;
}

/* Chevron (left_white.svg points right; placed after label). */
.arx-sc-btn-primary::after {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 26px;
  background: url("../img/right_white.svg") center / contain no-repeat;
}

/* ─── Step 2 dynamic schema ─────────────────────────────────── */

.arx-sc-dynamic {
  display: flex;
  flex-direction: column;
}

/* Each section */
.arx-sc-dyn-section {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

.arx-sc-dyn-section:first-child {
  border-top: none;
  padding-top: 0;
}

/* Equipment section: gray card */
.arx-sc-dyn-section--equipment {
  background: #f3f3f3;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
  margin: 0;
}

/* ─── Sponsoring step 3 layout (Figma-like) ─────────────────── */
.arx-sc-panel.panel-step-3 {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: auto !important;
}

.arx-sc-panel.panel-step-4 .arx-sc-actions {
  display: none;
}

.arx-sc-sponsor-step3 {
  display: grid;
  align-items: start;
  grid-template-columns: 65% 1fr;
  grid-column-gap: 36px;

}

.arx-sc-sponsor-left {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.arx-sc-sponsor-right {
  position: relative;
}

.arx-sc-summary--sticky {
  position: sticky;
  top: 24px;
}

.arx-sc-actions--step3-bottom {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

/* Recap card (right column) */
#arx-sc-sponsoring-app .arx-sc-grid-2 {
  gap: 36px;
}

#arx-sc-sponsoring-app .arx-sc-recapcard,
#arx-sc-registration .arx-sc-recapcard {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fff;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

#arx-sc-sponsoring-app .arx-sc-recapcard-head,
#arx-sc-registration .arx-sc-recapcard-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px 14px;
}

#arx-sc-sponsoring-app .arx-sc-recapcard-icon,
#arx-sc-registration .arx-sc-recapcard-icon {
  width: 40px;
  height: 40px;
  position: relative;
}

#arx-sc-sponsoring-app .arx-sc-recapcard-icon::after,
#arx-sc-registration .arx-sc-recapcard-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/recap_icon.svg") center / 40px 40px no-repeat;
}

#arx-sc-sponsoring-app .arx-sc-recapcard-title,
#arx-sc-registration .arx-sc-recapcard-title {
  font-family: 'Belanosima';
  font-size: 30px;
  color: var(--arx-sc-text-dark);
}

#arx-sc-sponsoring-app .arx-sc-recapcard-body,
#arx-sc-registration .arx-sc-recapcard-body {
  padding: 30px;
}

#arx-sc-sponsoring-app .arx-sc-recap-row,
#arx-sc-registration .arx-sc-recap-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 15px;
}

#arx-sc-sponsoring-app .arx-sc-recap-row.eq-team,
#arx-sc-registration .arx-sc-recap-row.eq-team {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #ececec;
  margin-bottom: 20px;
}

#arx-sc-sponsoring-app .arx-sc-recap-row--teams .arx-sc-recap-label,
#arx-sc-registration .arx-sc-recap-row--teams .arx-sc-recap-label {
  margin-bottom: 8px;
  color: var(--arx-sc-primary);
  font-weight: 700;
}

#arx-sc-sponsoring-app .arx-sc-recap-row--tier,
#arx-sc-registration .arx-sc-recap-row--tier {
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}

#arx-sc-sponsoring-app .arx-sc-recap-main--product,
#arx-sc-registration .arx-sc-recap-main--product {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#arx-sc-sponsoring-app .arx-sc-recap-linehead,
#arx-sc-registration .arx-sc-recap-linehead {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

#arx-sc-sponsoring-app .arx-sc-recap-linehead .arx-sc-recap-label,
#arx-sc-registration .arx-sc-recap-linehead .arx-sc-recap-label {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--arx-sc-primary);
}

#arx-sc-sponsoring-app .arx-sc-recap-tier-line,
#arx-sc-registration .arx-sc-recap-tier-line {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
}

#arx-sc-sponsoring-app .arx-sc-recap-row:last-of-type,
#arx-sc-registration .arx-sc-recap-row:last-of-type {
  border-bottom: none;
}

#arx-sc-sponsoring-app .arx-sc-recap-label,
#arx-sc-registration .arx-sc-recap-label {
  font-size: 18px;
  color: var(--arx-sc-text-dark);
  margin-bottom: 15px;
}

#arx-sc-sponsoring-app .arx-sc-recap-sub,
#arx-sc-registration .arx-sc-recap-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 4px;
}

#arx-sc-sponsoring-app .arx-sc-recap-sub-item,
#arx-sc-registration .arx-sc-recap-sub-item {
  display: inline-block;
  font-size: 14px;
  color: var(--arx-sc-primary);
  font-weight: 500;
  background-color: var(--arx-sc-text-light);
  border-radius: 15px;
  padding: 4px 10px;
}

#arx-sc-sponsoring-app .arx-sc-recap-amount,
#arx-sc-registration .arx-sc-recap-amount {
  font-size: 16px;
  color: var(--arx-sc-text-primary);
  font-weight: 700;
  white-space: nowrap;
}

#arx-sc-sponsoring-app .arx-sc-recap-total,
#arx-sc-registration .arx-sc-recap-total {
  padding-top: 22px;
  margin-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.10);
}

#arx-sc-sponsoring-app .arx-sc-recap-total-label,
#arx-sc-registration .arx-sc-recap-total-label {
  font-size: 14px;
  color: var(--arx-sc-text-grey);
}

#arx-sc-sponsoring-app .arx-sc-recap-total-amount,
#arx-sc-registration .arx-sc-recap-total-amount {
  margin-top: 5px;
  font-weight: 700;
  font-size: 25px;
  color: var(--arx-sc-text-dark);
}

#arx-sc-sponsoring-app .arx-sc-recap-cta,
#arx-sc-registration .arx-sc-recap-cta {
  width: 100%;
  font-size: 20px;
  margin-top: 60px;
  min-width: 0;
  justify-content: center;
}

/* Step 4 summary lines */
#arx-sc-sponsoring-app .arx-sc-summary-lines,
#arx-sc-registration .arx-sc-summary-lines {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

#arx-sc-sponsoring-app .arx-sc-summary-line,
#arx-sc-registration .arx-sc-summary-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

#arx-sc-sponsoring-app .arx-sc-summary-line:last-child,
#arx-sc-registration .arx-sc-summary-line:last-child {
  border-bottom: none;
}

#arx-sc-sponsoring-app .arx-sc-summary-line-main,
#arx-sc-registration .arx-sc-summary-line-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: rgba(0, 0, 0, 0.75);
}

#arx-sc-sponsoring-app .arx-sc-summary-detail,
#arx-sc-registration .arx-sc-summary-detail {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.55);
}

#arx-sc-sponsoring-app .arx-sc-summary-line strong,
#arx-sc-registration .arx-sc-summary-line strong {
  font-family: 'Belanosima';
  font-weight: 400;
  color: rgba(0, 0, 0, 0.80);
  white-space: nowrap;
}

#arx-sc-registration .arx-sc-registration-summary {
  margin-bottom: 28px;
}

/* WooCommerce checkout: sponsoring details block (above price lines) */
.woocommerce-checkout-review-order-table .arx-sc-checkout-details {
  padding: 10px 0;
}

.woocommerce-checkout-review-order-table .arx-sc-checkout-details strong {
  display: block;
  margin-bottom: 6px;
}

.woocommerce-checkout-review-order-table .arx-sc-checkout-details-grid {
  display: grid;
  gap: 6px;
}

.woocommerce-checkout-review-order-table .arx-sc-checkout-details-grid span {
  font-weight: 600;
}

/* WooCommerce My Account (view order): sponsoring recap + logo */
.arx-sc-order-sponsoring {
  margin: 2rem 0 0;
  padding: 1.5rem 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fff;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
}

.arx-sc-order-sponsoring--logo {
  margin-top: 1.25rem;
}

.arx-sc-order-sponsoring__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--arx-sc-text-dark, #111827);
}

.arx-sc-order-sponsoring__subtitle {
  margin: 1.25rem 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--arx-sc-text-dark, #111827);
}

.arx-sc-order-sponsoring__summary,
.arx-sc-order-sponsoring__lines {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.arx-sc-order-sponsoring__summary th,
.arx-sc-order-sponsoring__summary td {
  padding: 0.55rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.arx-sc-order-sponsoring__summary th {
  width: 38%;
  max-width: 11rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
}

.arx-sc-order-sponsoring__lines thead th {
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(0, 0, 0, 0.55);
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  text-align: left;
}

.arx-sc-order-sponsoring__lines tbody td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.arx-sc-order-sponsoring__col-amount {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.arx-sc-order-sponsoring__logo-status p {
  margin: 0 0 0.75rem;
}

.arx-sc-order-sponsoring__badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.arx-sc-order-sponsoring__badge--pending {
  background: rgba(234, 179, 8, 0.2);
  color: #854d0e;
}

.arx-sc-order-sponsoring__badge--approved {
  background: rgba(34, 197, 94, 0.2);
  color: #166534;
}

.arx-sc-order-sponsoring__badge--rejected {
  background: rgba(239, 68, 68, 0.18);
  color: #991b1b;
}

.arx-sc-order-sponsoring__logo-preview {
  margin: 0.75rem 0;
  padding: 0.75rem;
  display: inline-block;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f9fafb;
}

.arx-sc-order-sponsoring__logo-preview img {
  display: block;
  max-width: min(220px, 100%);
  height: auto;
  object-fit: contain;
}

.arx-sc-order-sponsoring__logo-filename {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.55);
  margin: 0;
}

.arx-sc-order-sponsoring__logo-empty,
.arx-sc-order-sponsoring__logo-locked {
  margin: 0 0 1rem;
  color: rgba(0, 0, 0, 0.65);
}

.arx-sc-order-sponsoring__logo-form .form-row {
  margin-bottom: 1rem;
}

.arx-sc-order-sponsoring__logo-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.arx-sc-order-sponsoring__logo-actions .button {
  margin-top: 0.25rem;
}

#arx-sc-sponsoring-app .arx-sc-actions--step3-bottom {
  display: none;
}

.arx-sc-equipcard {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #DDDDDDB2;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);
}

.arx-sc-equipcard-img {
  width: 180px !important;
  height: 180px !important;
  max-width: unset !important;
  border-radius: 0;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.20);
}

.arx-sc-equipcard-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  font-family: 'Belanosima';
  font-size: 20px;
  font-weight: 400;
  color: var(--arx-sc-primary);
  margin-bottom: 6px;
}

.arx-sc-equipcard-club {
  min-width: 0;
}

.arx-sc-equipcard-season {
  flex: 0 0 auto;
  margin-left: auto;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.55);
  text-align: right;
}

.arx-sc-equipcard-title {
  font-family: 'Belanosima';
  font-size: 28px;
  color: var(--arx-sc-text-dark);
  margin: 0;
}

.arx-sc-equipcard-desc {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.70);
}

.arx-sc-sponsor-section {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 24px;
  box-shadow: 0 4px 7.8px 5px rgba(0, 0, 0, 0.05);

}

.arx-sc-sponsor-section-title {
  font-family: 'Belanosima';
  font-size: 28px;
  color: var(--arx-sc-text-dark);
  margin: 0 0 6px;
}

.arx-sc-sponsor-section-subtitle {
  margin: 0 0 16px;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
}

.arx-sc-sponsor-teamgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.arx-sc-teamcard {
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 14px 14px 12px;
  cursor: pointer;
  transition: transform 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
}

.arx-sc-counter-grid.arx-sc-counter-grid--terrains {
  display: block;
  width: 100% !important;
  margin-left: 0 !important;
}

.arx-sc-counter-grid--terrains .arx-sc-counter-wrap{
  margin-bottom: 20px;
}

.arx-sc-teamcard.is-disabled,
.arx-sc-teamcard:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.arx-sc-teamcard.is-disabled:hover,
.arx-sc-teamcard:disabled:hover {
  transform: none;
  box-shadow: none;
}

.arx-sc-teamcard:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.arx-sc-teamcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.arx-sc-teamcard-title {
  font-size: 20px;
  color: var(--arx-sc-text-dark);
}

.arx-sc-teamcard-count {
  min-width: 34px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.70);
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.arx-sc-teamcard.is-selected .arx-sc-teamcard-count {
  color: #fff;
  background: var(--arx-sc-primary);
  border-color: var(--arx-sc-primary);
}

.arx-sc-teamcard-meta {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
}

.arx-sc-teamcard-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid var(--arx-sc-primary);
  background: #fff;
}

.arx-sc-teamcard.is-selected {
  border-color: var(--arx-sc-primary);
  background: var(--arx-sc-primary);
}

.arx-sc-teamcard.is-selected div {
  color: #ffffff;
}

.arx-sc-teamcard.is-selected .arx-sc-teamcard-check {
  border-color: var(--arx-sc-primary);
  background: var(--arx-sc-primary);
  position: relative;
}

.arx-sc-teamcard.is-selected .arx-sc-teamcard-check::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/tick_white.svg") center / 14px 14px no-repeat;
}

.arx-sc-sponsor-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.arx-sc-optioncard {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 14px;
  align-items: center;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 14px;
  cursor: pointer;
}

.arx-sc-optioncard.is-selected {
  border-color: var(--arx-sc-primary);
}

.arx-sc-optioncard-icon.has-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.arx-sc-optioncard-icon img {
  width: 20px;
  height: auto;
}

.arx-sc-optioncard-title {
  font-size: 20px;
  color: var(--arx-sc-text-dark);
}

.arx-sc-optioncard-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.60);
}

.arx-sc-optioncard-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arx-sc-optioncard-price {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.arx-sc-optioncard-price--terrain-hint {
  font-size: 12px;
  line-height: 1.35;
  white-space: normal;
  max-width: min(100%, 22rem);
  text-align: right;
}

.arx-sc-optioncard-meta:has(.arx-sc-optioncard-price--terrain-hint) {
  align-items: flex-start;
}

.arx-sc-switch {
  width: 52px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.05);
  position: relative;
  cursor: pointer;
}

.arx-sc-switch::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 2px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
  transition: left 140ms ease, background 140ms ease;
}

.arx-sc-optioncard.is-selected .arx-sc-switch {
  background: var(--arx-sc-primary);
  border-color: var(--arx-sc-primary);
}

.arx-sc-optioncard.is-selected .arx-sc-switch::after {
  left: 26px;
}

.arx-sc-choicegroup {
  margin-top: 18px;
}

.arx-sc-optionpanel {
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: var(--arx-sc-color-light, #fff);
  padding: 18px 18px 16px;
  margin-top: 18px;
}

.arx-sc-optionpanel-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.arx-sc-optionpanel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.06);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.arx-sc-optionpanel-icon svg {
  width: 22px;
  height: 22px;
}

.arx-sc-optionpanel-icon svg path {
  fill: var(--arx-sc-color-dark, #040d49);
}

.arx-sc-optionpanel-title {
  font-size: 20px;
  color: var(--arx-sc-text-dark);
}

.arx-sc-optionpanel-subtitle {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(11, 17, 39, 0.7);
}

.arx-sc-choicegroup-title {
  font-family: 'Belanosima';
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--arx-sc-text-dark);
}

.arx-sc-choicegroup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.arx-sc-choicecard {
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.arx-sc-choicecard-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arx-sc-choicecard-icon.has-img {
  background: transparent;
  padding: 2px;
  box-sizing: border-box;
}

.arx-sc-choicecard-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.arx-sc-choicecard.is-selected {
  border-color: var(--arx-sc-primary);
  background: var(--arx-sc-primary);
}

.arx-sc-choicecard-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--arx-sc-text-dark);
}

.arx-sc-choicecard.is-selected .arx-sc-choicecard-title,
.arx-sc-choicecard.is-selected .arx-sc-choicecard-meta,
.arx-sc-choicecard.is-selected .arx-sc-choicecard-desc {
  color: #fff;
}

.arx-sc-choicecard-meta {
  font-size: 12px;
  margin-top: 6px;
  font-weight: 400;
  color: var(--arx-sc-text-primary);
}

.arx-sc-choicecard-meta--terrain-hint {
  line-height: 1.35;
  white-space: normal;
}

.arx-sc-choicecard.is-selected .arx-sc-choicecard-meta--terrain-hint {
  color: #fff;
}

/* Empty / cancel choice - distinct from a real option selection */
.arx-sc-choicecard--none {
  border-style: dashed;
}

.arx-sc-choicecard--none.is-selected {
  border-style: solid;
  border-color: rgba(11, 17, 39, 0.28);
  background: rgba(11, 17, 39, 0.04);
}

.arx-sc-choicecard--none.is-selected .arx-sc-choicecard-title {
  color: var(--arx-sc-text-dark);
}

.arx-sc-choicecard--none.is-selected .arx-sc-choicecard-meta,
.arx-sc-choicecard--none.is-selected .arx-sc-choicecard-desc {
  color: rgba(11, 17, 39, 0.65);
}

/* Section header */
.arx-sc-dyn-header {
  position: relative;
  padding-left: 62px;
  margin-bottom: 28px;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.arx-sc-dyn-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.arx-sc-dyn-header--teams::before {
  background-image: url('../../assets/img/club_equipe_icon.svg');
}

/* Jersey icon */
.arx-sc-dyn-header--equipment::before {
  background-image: url('../../assets/img/club_textile_icon.svg');
}

/* Field icon */
.arx-sc-dyn-header--terrains::before {
  background-image: url('../../assets/img/club_panneau_icon.svg');
}

.arx-sc-dyn-title {
  font-family: 'Belanosima', sans-serif;
  font-size: 35px;
  font-weight: 400;
  color: var(--arx-sc-text-dark);
  margin: 0 0 4px;
  line-height: 1.1;
}

.arx-sc-dyn-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--arx-sc-text-grey);
  margin: 0;
  line-height: 1.4;
}

/* Counter 2-column grid */
.arx-sc-counter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 40px;
  width: 70%;
  margin-left: 62px;
}

/* Counter: label + card */
.arx-sc-counter-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.arx-sc-counter-label {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--arx-sc-text-dark);
  line-height: 1.4;
  margin: 0;
}

.arx-sc-counter-label strong {
  font-weight: 700;
}

/* Counter white card */
.arx-sc-counter-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.20);
  border-radius: 5px;
  height: 75px;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arx-sc-counter {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Circle −/+ buttons */
.arx-sc-counter-btn {
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--arx-sc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 150ms;
}

.arx-sc-counter-btn:hover {
  opacity: 0.7;
}

.arx-sc-counter-btn svg {
  width: 100%;
  height: 100%;
  display: block;
}

.arx-sc-counter input {
  width: 55px;
  text-align: center;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: rgba(11, 17, 39, 0.70);
  font-weight: 400;
  background: transparent;
}

.arx-sc-counter input::-webkit-outer-spin-button,
.arx-sc-counter input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Checkbox list (equipment) */
.arx-sc-checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  margin-left: 62px;
  max-width: 70%;
}

.arx-sc-checkbox-group-title {
  grid-column: 1 / -1;
  font-size: 14px;
  font-weight: 600;
  color: var(--arx-sc-text-grey);
  margin: 6px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.arx-sc-checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--arx-sc-text-dark);
  cursor: pointer;
  line-height: 1.4;
}

.arx-sc-checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(0, 0, 0, 0.20);
  border-radius: 3px;
  cursor: pointer;
  accent-color: var(--arx-sc-primary);
}

/* Summary chips (step 3) - kept separate */
.arx-sc-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.arx-sc-chip {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f9fafb;
  font-size: 16px;
}

.arx-sc-toast {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
}

/* Post-submit confirmation: no 4th step in the stepper; hide stepper, show panel 4 only */
.arx-sc-registration--confirmation .arx-sc-stepper {
  display: none !important;
}

.arx-sc-registration--confirmation .arx-sc-loader {
  display: none !important;
}

/* Registration step 4 - confirmation panel (not a stepper step) */
#arx-sc-registration .panel-step-4 {
  text-align: center;
}

#arx-sc-registration .panel-step-4 .arx-sc-actions {
  justify-content: center;
}

.arx-sc-registration-confirm-msg {
  margin: 16px auto 8px;
  max-width: 44ch;
  font-size: 18px;
  line-height: 1.5;
  color: var(--arx-sc-text-dark, #111827);
}

.arx-sc-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 90px;
}

.arx-sc-card {
  text-align: center;
  background: #fff;
  border: 1px solid #ffffff;
  padding: 0 0 14px 0;
  cursor: pointer;
  display: grid;
  gap: 10px;
}

.arx-sc-card.is-selected {
  border-color: var(--arx-sc-primary);
}

.arx-sc-card.is-disabled,
.arx-sc-card:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(1);
}

.arx-sc-card.is-disabled .arx-sc-card-subtitle,
.arx-sc-card:disabled .arx-sc-card-subtitle {
  color: #64748b;
}

.arx-sc-card-logo,
.arx-sc-card-img {
  width: 100%;
  height: 270px !important;
  max-width: unset !important;
  padding: 40px;
  object-fit: contain;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.20);
}

.panel-step-2 .arx-sc-card-logo,
.panel-step-2 .arx-sc-card-img {
  padding: 0;
}

.arx-sc-card-logo--placeholder {
  display: block;
}

.arx-sc-card-title {
  font-size: 25px;
  font-weight: 400;
  color: var(--arx-sc-text-dark);
}

.arx-sc-card-subtitle {
  color: #CA2317;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.arx-sc-card-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(27, 42, 91, 0.06);
  color: var(--arx-sc-primary);
  font-weight: 700;
  font-size: 12px;
  width: fit-content;
}

.arx-sc-select-list {
  display: grid;
  gap: 10px;
}

.arx-sc-select {
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff;
  cursor: pointer;
  display: grid;
  gap: 4px;
  text-align: left;
}

.arx-sc-select.is-selected {
  border-color: var(--arx-sc-primary);
  background: rgba(27, 42, 91, 0.04);
}

.arx-sc-select span {
  color: var(--arx-sc-text-light);
  font-size: 13px;
}

/* -------------------------------------------------------------------------- */
/* Shortcode: [arx_sc_how_it_works] - “Comment ça marche ?” (charte plugin)   */
/* --arx-sc-primary / --arx-sc-secondary / --arx-sc-text-* (Réglages WP).     */
/* -------------------------------------------------------------------------- */

.arx-sc-how-it-works {
  position: relative;
  box-sizing: border-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: clamp(32px, 6vw, 72px) clamp(20px, 4vw, 48px);
  color: #ffffff;
  line-height: 1.2;
}

.arx-sc-how-it-works *,
.arx-sc-how-it-works *::before,
.arx-sc-how-it-works *::after {
  box-sizing: border-box;
}

.arx-sc-hiw-state {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.arx-sc-how-it-works :where(h1, h2, h3, h4, h5, h6, p) {
  line-height: inherit;
}

.arx-sc-hiw-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin: 0 0 clamp(20px, 4vw, 40px);
  text-align: center;
  font-family: 'Belanosima', sans-serif;
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
}

.arx-sc-hiw-title__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.12em 0.55em 0.18em;
  background: var(--arx-sc-secondary);
  color: #ffffff;
  transform: rotate(-4.4deg);
  transform-origin: center;
}

.arx-sc-hiw-title__rest {
  font-weight: 600;
}

.arx-sc-hiw-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: clamp(24px, 6vw, 56px);
  margin-bottom: clamp(28px, 5vw, 48px);
}

.arx-sc-hiw-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.2;
  color: #ffffff;
  user-select: none;
}

.arx-sc-hiw-tab__label {
  font-weight: 300;
  transition: font-weight 0.15s ease;
}

.arx-sc-hiw-tab__track {
  position: relative;
  display: flex;
  justify-content: center;
  width: min(280px, 72vw);
  height: 14px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.arx-sc-hiw-tab__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  margin-top: -0.5px;
  background: #ffffff;
}

.arx-sc-hiw-tab__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border-radius: 50%;
  background: var(--arx-sc-secondary);
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--club:checked) .arx-sc-hiw-tab--club .arx-sc-hiw-tab__label {
  font-weight: 700;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--club:checked) .arx-sc-hiw-tab--sponsor .arx-sc-hiw-tab__label {
  font-weight: 300;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--club:checked) .arx-sc-hiw-tab--club .arx-sc-hiw-tab__track {
  opacity: 1;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--club:checked) .arx-sc-hiw-tab--sponsor .arx-sc-hiw-tab__track {
  opacity: 0;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--sponsor:checked) .arx-sc-hiw-tab--sponsor .arx-sc-hiw-tab__label {
  font-weight: 700;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--sponsor:checked) .arx-sc-hiw-tab--club .arx-sc-hiw-tab__label {
  font-weight: 300;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--sponsor:checked) .arx-sc-hiw-tab--sponsor .arx-sc-hiw-tab__track {
  opacity: 1;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--sponsor:checked) .arx-sc-hiw-tab--club .arx-sc-hiw-tab__track {
  opacity: 0;
}

.arx-sc-hiw-panel--club,
.arx-sc-hiw-panel--sponsor {
  display: none;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--club:checked) .arx-sc-hiw-panel--club {
  display: block;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--sponsor:checked) .arx-sc-hiw-panel--sponsor {
  display: block;
}

.arx-sc-hiw-steps {
  list-style: none;
  margin: 0 0 clamp(32px, 5vw, 56px);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 40px);
}

.arx-sc-hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 3vw, 24px);
}

.arx-sc-hiw-step__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(72px, 12vw, 95px);
  height: clamp(72px, 12vw, 95px);
  border-radius: 50%;
  background: var(--arx-sc-secondary);
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 6vw, 60px);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.arx-sc-hiw-step__text {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2.2vw, 25px);
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
}

.arx-sc-hiw-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
}

/* Aligned with .arx-sc-btn / .arx-sc-btn-primary / .arx-sc-btn-back */
.arx-sc-hiw-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 40px;
  font-family: 'Belanosima', sans-serif;
  font-style: normal;
  font-size: clamp(22px, 3vw, 35px);
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.arx-sc-hiw-btn:hover {
  opacity: 0.92;
}

.arx-sc-hiw-btn--club {
  background: var(--arx-sc-secondary);
  border: 1px solid var(--arx-sc-secondary);
  color: #ffffff;
}

.arx-sc-hiw-btn--club:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

.arx-sc-hiw-btn--sponsor {
  background: #ffffff;
  border: 1px solid var(--arx-sc-text-grey);
  color: var(--arx-sc-primary);
}

.arx-sc-hiw-btn--sponsor:focus-visible {
  outline: 2px solid var(--arx-sc-primary);
  outline-offset: 3px;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--club:checked) .arx-sc-hiw-btn--club {
  display: inline-flex;
}

.arx-sc-how-it-works:has(.arx-sc-hiw-state--sponsor:checked) .arx-sc-hiw-btn--sponsor {
  display: inline-flex;
}


.arx-sc-field input[type="checkbox"] {
  width: 30px;
}

/* Breakpoints: max-width 980px, then 768px (cascade). */

@media (max-width: 980px) {
  .arx-sc-sponsor-teamgrid,
  .arx-sc-choicegroup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arx-sc-grid-2 {
    grid-template-columns: 1fr;
  }

  .arx-sc-stepper-steps {
    grid-template-columns: 1fr;
  }

  .arx-sc-counter-grid {
    grid-template-columns: 1fr;
  }

  .arx-sc-checkbox-list {
    grid-template-columns: 1fr;
  }

  .arx-sc-dyn-header {
    padding-left: 54px;
  }

  .arx-sc-dyn-header::before {
    width: 38px;
    height: 38px;
  }

  .arx-sc-dyn-title {
    font-size: 26px;
  }

  .arx-sc-dyn-section--equipment {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .arx-sc-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arx-sc-hiw-steps {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .arx-sc-stepper {
    padding: 20px;
  }

  .arx-sc-step {
    padding: 16px;
  }

  .arx-sc-panel {
    padding: 20px;
  }

  .arx-sc-field input, .arx-sc-field select, .arx-sc-field textarea {
    padding: 20px;
  }

  .arx-sc-panel-contact {
    padding: 0px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .arx-sc-counter-grid {
    width: 100%;
    margin-left: unset;  
  }

  .arx-sc-counter-card {
    max-width: 100%;
  }

  .arx-sc-checkbox-list {
    width: 90%;
    margin: auto;
    max-width: 100%;
    margin-bottom: 20px; 
  }

  .arx-sc-actions {
    flex-direction: column;
  }

  #arx-sc-sponsoring-app .arx-sc-recapcard-icon, #arx-sc-registration .arx-sc-recapcard-icon {
    width: 50px;
    height: 30px;
  }

  #arx-sc-sponsoring-app .arx-sc-recapcard-icon::after, #arx-sc-registration .arx-sc-recapcard-icon::after {
    background-size: 30px 30px;
  }

  #arx-sc-sponsoring-app .arx-sc-recapcard-body, #arx-sc-registration .arx-sc-recapcard-body {
    padding: 20px;
  }

  #arx-sc-sponsoring-app .arx-sc-recap-row, #arx-sc-registration .arx-sc-recap-row {
    padding: 15px 10px;
  }

  .arx-sc-sponsoring .arx-sc-stepper-steps {
    grid-template-columns: repeat(1, 1fr);
  }

  .arx-sc-sponsor-head .arx-sc-field select {
    width: 100%;
  }

  .arx-sc-sponsor-clubcard {
    position: relative;
  }
}

@media (max-width: 768px) {
  .arx-sc-order-sponsoring__summary tr {
    display: block;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .arx-sc-order-sponsoring__summary tr:last-child {
    border-bottom: none;
  }

  .arx-sc-order-sponsoring__summary th,
  .arx-sc-order-sponsoring__summary td {
    display: block;
    width: 100%;
    max-width: none;
    padding: 0.2rem 0;
    border: none;
  }

  .arx-sc-order-sponsoring__summary th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.5);
  }

  .arx-sc-order-sponsoring__lines thead {
    display: none;
  }

  .arx-sc-order-sponsoring__lines tbody tr {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .arx-sc-order-sponsoring__lines tbody td {
    display: block;
    border: none;
    padding: 0.25rem 0;
    text-align: left !important;
  }

  .arx-sc-order-sponsoring__lines tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 0.2rem;
  }

  .arx-sc-equipcard {
    grid-template-columns: 1fr;
  }

  .arx-sc-equipcard-img {
    width: 100%;
    height: 180px;
  }

  .arx-sc-sponsor-teamgrid,
  .arx-sc-choicegroup-grid {
    grid-template-columns: 1fr;
  }

  .arx-sc-sponsor-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .arx-sc-sponsor-clubcard {
    width: 100%;
    justify-content: flex-start;
  }

  .arx-sc-sponsor-header-title {
    font-size: 18px;
  }

  .arx-sc-card-grid {
    grid-template-columns: 1fr;
  }
}