/* Credential landing pages (/cna, /hha, /lpn, /rn). Everything else comes
   from site.css; this only adds the itemized-offer section and small bits. */

.offer-section {
  background: var(--night);
  color: var(--ghost);
  padding: var(--section-y) 24px;
}
.offer-section .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 56px;
  align-items: center;
}
.offer-section .eyebrow {
  color: var(--ghost-72);
}
.offer-section h2 {
  font-size: clamp(30px, 4vw, 40px);
  margin: 0 0 16px;
  color: var(--ghost);
}
.offer-copy .lede {
  color: var(--ghost-72);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 14px;
  max-width: 540px;
}
.offer-copy .fine {
  font-size: var(--text-fine);
  color: var(--ghost-65);
  margin: 0;
}
.offer-card {
  background: var(--night-card);
  border: 1px solid var(--ghost-10);
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.offer-kind {
  font-weight: 700;
  font-size: 15px;
}
.offer-total {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--coral);
}
.offer-break {
  font-size: 14px;
  color: var(--ghost-65);
}
.offer-actions {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.offer-actions .btn-coral {
  flex: 1;
  /* .btn-coral carries no padding of its own; without this the label
     sits at the top of a pill stretched to the Pass button's height. */
  padding: 12px 20px;
  font-size: 15px;
  text-align: center;
  cursor: default;
}
.offer-actions .btn-ghost {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(247, 246, 251, 0.2);
  color: var(--ghost-85);
  font-weight: 700;
  font-size: 15px;
}
.rules-section {
  background: var(--white);
}
.other-creds {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--ghost-65);
  text-align: center;
}
.other-creds a {
  color: var(--ghost);
}
@media (max-width: 820px) {
  .offer-section .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
