.extra-income-section {
  --extra-red: #ff0e2a;
  --extra-ink: #20242d;
  --extra-muted: #68707d;
  padding: 80px 0;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.extra-income-full {
  background: #fff;
}

.extra-income-shell {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.extra-income-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: 30px 0 34px;
  color: var(--extra-ink);
  background: #fff;
  border-top: 1px solid #d9d9d9;
}

.extra-income-heading::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--extra-red);
}

.extra-income-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--extra-red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.extra-income-heading h2 {
  margin: 0 0 10px;
  color: #111;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.extra-income-heading p {
  max-width: 720px;
  margin: 0;
  color: #666;
  font-size: .92rem;
  line-height: 1.7;
}

.extra-income-top-reward {
  min-width: 210px;
  padding: 4px 0 4px 24px;
  border-left: 2px solid var(--extra-red);
  text-align: right;
}

.extra-income-top-reward small,
.extra-income-top-reward span {
  display: block;
  color: #777;
  font-size: .72rem;
  font-weight: 600;
}

.extra-income-top-reward strong {
  display: block;
  margin: 4px 0;
  color: #111;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
}

.extra-income-table-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  border: 1px solid #e3e5e9;
  border-radius: 10px;
}

.extra-income-table {
  width: 100%;
  min-width: 700px;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--extra-ink);
  font-variant-numeric: tabular-nums;
}

.extra-income-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.extra-income-table th,
.extra-income-table td {
  padding: 14px 18px;
  border-right: 1px solid #e9ebef;
  border-bottom: 1px solid #e9ebef;
  text-align: center;
  vertical-align: middle;
}

.extra-income-table th:last-child,
.extra-income-table td:last-child {
  border-right: 0;
}

.extra-income-table thead th {
  padding-top: 17px;
  padding-bottom: 17px;
  background: #f5f5f6;
  color: #343945;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .015em;
  text-transform: uppercase;
}

.extra-income-table thead th:first-child,
.extra-income-table tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
}

.extra-income-table thead th:first-child {
  z-index: 3;
}

.extra-income-table tbody th {
  background: #fff;
  color: #333944;
  font-size: .94rem;
  font-weight: 700;
}

.extra-income-table tbody td {
  background: #fff;
  font-size: 1rem;
  font-weight: 500;
}

.extra-income-table tbody tr:nth-child(even) th,
.extra-income-table tbody tr:nth-child(even) td {
  background: #fafbfc;
}

.extra-income-table tbody tr:hover th,
.extra-income-table tbody tr:hover td {
  background: #fff8f9;
}

.extra-income-table .extra-income-milestone th,
.extra-income-table .extra-income-milestone td {
  background: #fff3f5;
  color: #252932;
  font-weight: 700;
}

.extra-income-table .extra-income-milestone td:last-child {
  color: #d4001e;
}

.extra-income-details {
  margin-top: 14px;
  border-top: 0;
}

.extra-income-details summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  color: #232833;
  background: #f5f5f6;
  border: 1px solid #e3e5e9;
  border-radius: 8px;
  cursor: pointer;
  font-size: .88rem;
  font-weight: 700;
  list-style: none;
  transition: color .2s ease, background .2s ease;
}

.extra-income-details summary::-webkit-details-marker {
  display: none;
}

.extra-income-details summary:hover,
.extra-income-details summary:focus-visible {
  color: var(--extra-red);
  background: #fff8f9;
  border-color: rgba(255, 14, 42, .35);
  outline: 0;
}

.extra-income-details summary i {
  font-size: .75rem;
  transition: transform .2s ease;
}

.extra-income-details[open] summary i {
  transform: rotate(180deg);
}

.extra-income-summary-close,
.extra-income-details[open] .extra-income-summary-open {
  display: none;
}

.extra-income-details[open] .extra-income-summary-close {
  display: inline;
}

.extra-income-details[open] .extra-income-table-scroll {
  margin-top: 14px;
}

.extra-income-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 28px 0 0;
  background: #fff;
}

.extra-income-note {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 760px;
  padding-left: 16px;
  border-left: 3px solid var(--extra-red);
}

.extra-income-note > i {
  display: none;
}

.extra-income-note strong,
.extra-income-note span {
  display: block;
}

.extra-income-note strong {
  margin-bottom: 5px;
  color: #292e38;
  font-size: .86rem;
  line-height: 1.55;
}

.extra-income-note span {
  color: var(--extra-muted);
  font-size: .74rem;
  line-height: 1.55;
}

.extra-income-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.extra-income-actions .site-btn {
  flex: none;
  white-space: nowrap;
}

.extra-income-secondary {
  color: #343945;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}

.extra-income-secondary:hover,
.extra-income-secondary:focus-visible {
  color: var(--extra-red);
}

.bonus-teaser-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 24px 0 0;
  border-top: 1px solid #e7e7e8;
}

.bonus-teaser-footer p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 720px;
  margin: 0;
  color: #666;
  font-size: .82rem;
  line-height: 1.65;
}

.bonus-teaser-footer p i {
  margin-top: 4px;
  color: var(--extra-red);
}

.bonus-teaser-footer .site-btn {
  white-space: nowrap;
}

.bonus-policy-page header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.bonus-policy-page header .logo {
  position: static;
}

.bonus-private-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-family: 'Poppins', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bonus-private-label i {
  color: #ff0e2a;
}

.bonus-policy-page main {
  padding-top: 80px;
}

@media (max-width: 991px) {
  .extra-income-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .extra-income-top-reward {
    width: fit-content;
    padding: 2px 0 2px 18px;
    text-align: left;
  }

  .extra-income-footer {
    grid-template-columns: 1fr;
  }

  .extra-income-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767px) {
  .extra-income-section {
    padding: 52px 0;
  }

  .extra-income-shell {
    border-radius: 0;
  }

  .extra-income-heading {
    gap: 24px;
    padding: 27px 0 28px;
  }

  .extra-income-heading p {
    font-size: .86rem;
  }

  .extra-income-top-reward strong {
    font-size: 1.55rem;
  }

  .extra-income-table {
    min-width: 630px;
  }

  .extra-income-table th,
  .extra-income-table td {
    padding: 13px 12px;
  }

  .extra-income-table thead th {
    font-size: .69rem;
  }

  .extra-income-table tbody th,
  .extra-income-table tbody td {
    font-size: .84rem;
  }

  .extra-income-table thead th:first-child,
  .extra-income-table tbody th {
    min-width: 96px;
    box-shadow: 7px 0 12px rgba(24, 29, 39, .06);
  }

  .extra-income-footer {
    padding: 24px 0 0;
  }

  .extra-income-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bonus-teaser-footer {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bonus-teaser-footer .site-btn {
    width: 100%;
    text-align: center;
  }

  .bonus-private-label {
    font-size: .62rem;
  }

  .extra-income-actions .site-btn,
  .extra-income-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .extra-income-details summary i {
    transition: none;
  }
}
