/**
 * Cut-Off page design — Student Point Sikar 2026.
 *
 * Slug-based template (page-cut-off.php) matched by is_page('cut-off') in
 * functions.php; enqueued AFTER header/footer css so it wins specificity ties.
 * Chrome (top bar, header, footer) comes from get_header()/get_footer().
 *
 * home.css (global tokens + .btn) only loads on the front page, so this file
 * redeclares the design tokens scoped to .cutoff-page and ships the button
 * styles the page needs. All page styles live under .cutoff-page.
 */

.cutoff-page {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #1976D2;
  --accent: #F9D67B;
  --accent-dark: #f0c44a;
  --dark: #1a1a2e;
  --gray: #5a6a85;
  --light-gray: #EEF4FF;
  --border: #D0DEF5;
  --white: #ffffff;
  --soft-bg: #f5f8ff;
  --row-tint: #fbfdff;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 12px rgba(21, 101, 192, .08);
  --shadow-md: 0 8px 32px rgba(21, 101, 192, .14);
  --shadow-lg: 0 16px 48px rgba(21, 101, 192, .20);
  --hero-grad: linear-gradient(135deg, #0D47A1 0%, #1565C0 55%, #1976D2 100%);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all .3s ease;

  font-family: var(--font-body);
  color: var(--dark);
}

.cutoff-page h1,
.cutoff-page h2,
.cutoff-page h3,
.cutoff-page h4,
.cutoff-page h5 {
  font-family: var(--font-head);
  line-height: 1.25;
}

/* =================== BUTTONS =================== */
.cutoff-page .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.cutoff-page .btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cutoff-page .btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cutoff-page .btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.cutoff-page .btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 214, 123, .4);
}

.cutoff-page .btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.cutoff-page .btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.cutoff-page .btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .6);
}

.cutoff-page .btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.cutoff-page .btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}

/* =================== CUTOFF HERO =================== */
.cutoff-hero {
  position: relative;
  background: var(--hero-grad);
  color: var(--white);
  padding: 70px 0 100px;
  overflow: hidden;
  min-height: 420px;
}

.cutoff-hero::before,
.cutoff-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cutoff-hero::before {
  width: 420px;
  height: 420px;
  top: -160px;
  right: -80px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.cutoff-hero::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: 5%;
  border: 1px solid rgba(255, 255, 255, .1);
}

.cutoff-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background: var(--soft-bg);
  clip-path: polygon(0 64%, 25% 34%, 50% 56%, 75% 30%, 100% 42%, 100% 100%, 0 100%);
  pointer-events: none;
}

.cutoff-hero .container {
  position: relative;
  z-index: 2;
}

.cutoff-hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cutoff-hero-grid {
    grid-template-columns: 1fr 340px;
  }
}

.cutoff-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 20px;
}

.cutoff-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.cutoff-breadcrumb a:hover {
  color: var(--accent);
}

.cutoff-breadcrumb .sep {
  font-size: 10px;
  color: rgba(255, 255, 255, .35);
}

.cutoff-breadcrumb .current {
  font-weight: 600;
  color: var(--accent);
}

.cutoff-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(249, 214, 123, .45);
  background: rgba(249, 214, 123, .2);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cutoff-hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.cutoff-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.cutoff-hero-desc {
  max-width: 620px;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.75;
}

.cutoff-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cutoff-hero-tag {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.cutoff-hero-foot {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .65);
}

.cutoff-quickread {
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(6px);
  border-radius: 18px;
  padding: 20px;
}

.cutoff-quickread-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 12px;
}

.cutoff-quickread-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.cutoff-quickread h2 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-top: 8px;
}

.cutoff-quickread-tag {
  background: rgba(255, 255, 255, .1);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  flex-shrink: 0;
}

.cutoff-quickread-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cutoff-quickread-card {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 16px;
}

.cutoff-quickread-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(249, 214, 123, .2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 12px;
}

.cutoff-quickread-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.cutoff-quickread-card p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, .65);
}

@media (max-width: 900px) {
  .cutoff-hero-quickread-wrap {
    display: none;
  }
}

/* =================== CUTOFF BODY =================== */
.cutoff-body {
  background: var(--soft-bg);
  padding: 64px 0 80px;
}

@media (min-width: 768px) {
  .cutoff-body {
    padding: 80px 0;
  }
}

.cutoff-toc {
  overflow-x: auto;
  margin-bottom: 32px;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 1280px) {
  .cutoff-toc {
    display: none;
  }
}

.cutoff-toc-row {
  display: flex;
  gap: 12px;
  min-width: max-content;
}

.cutoff-page .toc-link {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: var(--transition);
}

.cutoff-page .toc-link:hover {
  background: var(--light-gray);
  transform: translateY(-1px);
}

.cutoff-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cutoff-card {
  scroll-margin-top: 112px;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

@media (min-width: 768px) {
  .cutoff-card {
    padding: 32px;
  }
}

.cutoff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(249, 214, 123, .5);
  background: rgba(249, 214, 123, .2);
  color: var(--primary);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cutoff-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dark);
}

.cutoff-card h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.cutoff-card .lead {
  max-width: 760px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

.cutoff-card .lead strong {
  color: var(--primary);
}

.cutoff-card-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .cutoff-card-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.cutoff-pill {
  align-self: flex-start;
  background: var(--light-gray);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.cutoff-intro-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 1024px) {
  .cutoff-intro-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.cutoff-intro-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.cutoff-intro-text p:last-child {
  margin-bottom: 0;
}

.cutoff-aside {
  display: grid;
  gap: 16px;
}

.cutoff-aside-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.cutoff-aside-card.tinted {
  background: var(--light-gray);
}

.cutoff-aside-card.muted {
  background: var(--row-tint);
}

.cutoff-aside-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.cutoff-aside-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* =================== HOW-TO BAND =================== */
.howto-card {
  scroll-margin-top: 112px;
  border: 1px solid var(--border);
  background: var(--hero-grad);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

@media (min-width: 768px) {
  .howto-card {
    padding: 32px;
  }
}

.howto-card-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 1024px) {
  .howto-card-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.howto-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.howto-card h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  max-width: 720px;
}

.howto-card .sub {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .75);
  max-width: 720px;
}

.howto-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

@media (min-width: 768px) {
  .howto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.howto-tile {
  border: 1px solid rgba(255, 255, 255, .1);
  background: rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 20px;
}

.howto-tile-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

.howto-tile strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
}

.howto-tile p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
}

/* =================== INFO TILE GRID =================== */
.info-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.info-grid.cols-2 {
  grid-template-columns: 1fr;
}

.info-grid.cols-3 {
  grid-template-columns: 1fr;
}

.info-grid.cols-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .info-grid.cols-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 768px) {
  .info-grid.cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .info-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .info-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-tile {
  border: 1px solid var(--border);
  background: var(--row-tint);
  border-radius: var(--radius);
  padding: 16px;
}

.info-tile-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}

.info-tile p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

.factor-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .factor-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.factor-tile {
  border: 1px solid var(--border);
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
}

.factor-tile h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.factor-tile p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.quota-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 1024px) {
  .quota-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quota-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.quota-tile h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.quota-tile p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* =================== TABLE =================== */
.cutoff-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.cutoff-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 640px;
}

.cutoff-table thead {
  background: var(--light-gray);
}

.cutoff-table thead th {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  padding: 16px 20px;
}

.cutoff-table tbody td {
  font-size: 15px;
  color: var(--gray);
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}

.cutoff-table tbody tr:nth-child(even) {
  background: var(--row-tint);
}

.cutoff-table tbody tr:hover {
  background: #f6faff;
}

.cutoff-table .cell-strong {
  font-weight: 600;
  color: var(--dark);
}

.cutoff-table .cell-primary {
  font-weight: 600;
  color: var(--primary);
}

.cutoff-table-note {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
}

.source-callout {
  border: 1px solid var(--border);
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.source-callout strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.source-callout p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
}

/* =================== PREDICTION CARD =================== */
.predict-card {
  scroll-margin-top: 112px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

@media (min-width: 768px) {
  .predict-card {
    padding: 32px;
  }
}

.predict-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .predict-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  }
}

.predict-grid h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.predict-grid .lead {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

.predict-stack {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .8);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(21, 101, 192, .08);
  padding: 16px;
  backdrop-filter: blur(6px);
}

.predict-stack-row {
  display: grid;
  gap: 12px;
}

@media (min-width: 640px) {
  .predict-stack-row {
    grid-template-columns: 1fr 1fr;
  }
}

.predict-tile {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
}

.predict-tile.highlight {
  background: var(--light-gray);
  margin-top: 12px;
}

.predict-tile-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}

.predict-tile p {
  margin-top: 8px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.predict-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =================== FAQ =================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--row-tint);
  border-radius: var(--radius);
}

.faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.faq-item.open .faq-trigger {
  color: var(--primary);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 14px;
  transition: transform .3s ease;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 20px 20px;
}

.faq-answer-inner p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

/* =================== DATA NOTE =================== */
.data-note {
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

@media (min-width: 768px) {
  .data-note {
    padding: 32px;
  }
}

.data-note h2 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.data-note p {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray);
}

/* =================== CTA SECTION =================== */
.cta-section {
  background: var(--soft-bg);
  padding: 64px 0;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }
}

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--hero-grad);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  color: var(--white);
}

@media (min-width: 768px) {
  .cta-card {
    padding: 48px;
  }
}

.cta-card::before,
.cta-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-card::before {
  width: 224px;
  height: 224px;
  top: -80px;
  right: -64px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.cta-card::after {
  width: 176px;
  height: 176px;
  bottom: -80px;
  left: 40px;
  border: 1px solid rgba(249, 214, 123, .2);
}

.cta-grid {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(249, 214, 123, .45);
  background: rgba(249, 214, 123, .15);
  color: var(--accent);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cta-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-card h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-card p {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .75);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 1024px) {
  .cta-actions {
    justify-content: flex-end;
  }
}
