/* inq-basetheme-3105 | v0.1.0 | built: 2026-06-01 */
/*
 * Main stylesheet — InQ Base Theme 3105
 * Token-first: every design value is a CSS custom property defined in :root.
 * Zero hardcoded colour or design values appear outside :root.
 * Exception: @media breakpoint conditions cannot use custom properties
 * (CSS specification constraint) — 991.98px / 992px are the only literals
 * permitted outside :root.
 */


/* =============================================================
   1. DESIGN TOKENS
   ============================================================= */

:root {

  /* — Colour — */
  --color-ink:         #152029;
  --color-muted:       #5c6873;
  --color-line:        #d9e1e7;
  --color-soft:        #f5f8fa;
  --color-white:       #ffffff;
  --color-accent:      #0d6efd;
  --color-accent-dark: #094eb6;
  --color-footer:      #111820;

  /* — Typography — */
  --font-family-base:   system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-size-base:     1rem;
  --font-size-sm:       0.875rem;
  --font-size-lg:       1.125rem;
  --font-size-xl:       1.375rem;
  --font-size-2xl:      1.75rem;
  --font-size-3xl:      2.25rem;
  --font-size-4xl:      3rem;
  --line-height-base:   1.65;
  --line-height-tight:  1.15;
  --font-weight-normal: 400;
  --font-weight-bold:   700;

  /* — Link decoration — */
  --text-decoration-thickness: 0.08em;
  --text-underline-offset:     0.18em;

  /* — Spacing — */
  --space-10: 0.25rem;
  --space-20: 0.5rem;
  --space-30: 0.75rem;
  --space-40: 1rem;
  --space-50: 1.5rem;
  --space-60: 2rem;
  --space-70: 3rem;
  --space-80: 4rem;
  --space-90: 5rem;

  /* — Layout — */
  --site-max-width:  72rem;
  --site-wide-width: 90rem;
  --site-gutter:     var(--space-40);

  /* — Border — */
  --border-width: 1px;

  /* — Border radius — */
  --radius-sm:   0.25rem;
  --radius-md:   0.5rem;
  --radius-lg:   1rem;
  --radius-full: 9999px;

  /* — Transitions — */
  --transition-fast: 160ms ease;
  --transition-base: 220ms ease;
  --transition-slow: 300ms ease;

  /* — Z-index scale — */
  --z-base:      1;
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-header:    300;
  --z-overlay:   400;
  --z-modal:     500;
  --z-toast:     600;
  --z-skip-link: 9999;

  /* — Shadows — */
  --shadow-sm: 0 1px 3px rgba(21, 32, 41, 0.08);
  --shadow-md: 0 4px 12px rgba(21, 32, 41, 0.10);
  --shadow-lg: 0 1rem 2.5rem rgba(21, 32, 41, 0.18);

  /* — Focus ring — */
  --focus-color:  var(--color-accent);
  --focus-width:  3px;
  --focus-offset: 3px;

  /* — Component: Header — */
  --header-min-height: 4.25rem;

  /* — Component: Logo — */
  --logo-max-height: 3.25rem;

  /* — Component: Navigation hamburger — */
  --nav-toggle-size:          2.75rem;
  --nav-hamburger-size:       1.25rem;
  --nav-hamburger-bar-height: 2px;
  --nav-hamburger-bar-gap:    var(--space-10);
  --nav-hamburger-translate:  0.39rem;
  --nav-hamburger-rotate:     45deg;
  --nav-mobile-max-height:    75vh;

  /* — Component: Pagination — */
  --pagination-item-size: 2.5rem;

  /* — Component: Footer link underline — */
  --color-footer-link-underline: rgba(255, 255, 255, 0.4);

  /* — Component: Footer link hover — */
  --footer-link-hover-opacity: 0.8;

  /* — Homepage: Hero colours — */
  --color-hero-start:    #f8fbff;
  --color-hero-end:      #eef6f2;
  --color-hero-gradient: linear-gradient(135deg, var(--color-hero-start) 0%, var(--color-hero-end) 100%);

  /* — Homepage: Hero component — */
  --hero-panel-min-height: 20rem;

  /* — Homepage: Typography utility — */
  --letter-spacing-caps: 0.05em;

  /* — Homepage: Section header — */
  --section-header-max-width: 42rem;

  /* — Homepage: Card grids — */
  --card-min-width:      18rem;
  --tile-min-width:      10rem;
  --post-card-min-width: 24rem;
}


/* =============================================================
   2. RESET AND BASE
   ============================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: anywhere;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* =============================================================
   3. TYPOGRAPHY SCALE
   ============================================================= */

h1 {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: clamp(var(--font-size-lg), 2vw, var(--font-size-2xl));
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
}

h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}


/* =============================================================
   4. LINKS AND FOCUS
   ============================================================= */

a {
  color: var(--color-accent);
  text-decoration-thickness: var(--text-decoration-thickness);
  text-underline-offset: var(--text-underline-offset);
}

a:hover,
a:focus {
  color: var(--color-accent-dark);
}

:focus-visible {
  outline: var(--focus-width) solid var(--focus-color);
  outline-offset: var(--focus-offset);
}


/* =============================================================
   5. ACCESSIBILITY UTILITIES
   ============================================================= */

.screen-reader-text {
  clip-path: inset(50%);
  height: var(--space-10);
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: var(--space-10);
}

.screen-reader-text:focus {
  clip-path: none;
  height: auto;
  width: auto;
  position: absolute;
  z-index: var(--z-skip-link);
  background: var(--color-white);
  color: var(--color-ink);
  padding: var(--space-30) var(--space-40);
  top: var(--space-40);
  left: var(--space-40);
}


/* =============================================================
   6. LAYOUT
   ============================================================= */

.site-container {
  max-width: var(--site-max-width);
  margin-inline: auto;
  padding-inline: var(--site-gutter);
}

.site-container--wide {
  max-width: var(--site-wide-width);
}


/* =============================================================
   7. SITE HEADER
   ============================================================= */

.site-header {
  position: relative;
  z-index: var(--z-header);
  background: var(--color-white);
  border-bottom: var(--border-width) solid var(--color-line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-min-height);
  padding-block: var(--space-30);
}


/* =============================================================
   8. SITE TITLE AND BRAND
   ============================================================= */

.site-title {
  font-weight: var(--font-weight-bold);
  color: var(--color-ink);
  text-decoration: none;
  font-size: var(--font-size-lg);
}

.site-title:hover,
.site-title:focus {
  color: var(--color-accent);
}

.site-logo img {
  max-height: var(--logo-max-height);
  width: auto;
  display: block;
}


/* =============================================================
   9. NAVIGATION — DESKTOP
   ============================================================= */

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-20);
}

.primary-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-10);
}

.primary-nav__link,
.primary-nav__list a {
  display: block;
  padding: var(--space-20) var(--space-30);
  color: var(--color-ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.primary-nav__link:hover,
.primary-nav__link:focus,
.primary-nav__list a:hover,
.primary-nav__list a:focus {
  color: var(--color-accent-dark);
  background: var(--color-soft);
}

.primary-nav__link[aria-current="page"],
.primary-nav__list a[aria-current="page"] {
  color: var(--color-accent);
}


/* =============================================================
   10. HAMBURGER TOGGLE BUTTON
   ============================================================= */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: var(--nav-toggle-size);
  min-height: var(--nav-toggle-size);
  padding: var(--space-20);
  background: transparent;
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.nav-toggle:hover {
  border-color: var(--color-ink);
}

.nav-toggle__icon {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: var(--nav-hamburger-size);
  height: var(--nav-hamburger-size);
  gap: var(--nav-hamburger-bar-gap);
}

.nav-toggle__icon span {
  display: block;
  width: 100%;
  height: var(--nav-hamburger-bar-height);
  background: var(--color-ink);
  border-radius: var(--radius-full);
  transition:
    transform var(--transition-fast),
    opacity var(--transition-fast);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(1) {
  transform: translateY(var(--nav-hamburger-translate)) rotate(var(--nav-hamburger-rotate));
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon span:nth-child(3) {
  transform: translateY(calc(var(--nav-hamburger-translate) * -1)) rotate(calc(var(--nav-hamburger-rotate) * -1));
}


/* =============================================================
   11. MOBILE MENU OVERLAY
   ============================================================= */

/* NOTE: @media breakpoint values (991.98px / 992px) cannot use CSS custom
   properties — they resolve only in property declarations, not in media
   query conditions. This is a CSS specification constraint. These two
   literal values are the only permitted exceptions to the zero-hardcoded
   rule in this file. */

@media (max-width: 991.98px) {

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: var(--header-min-height);
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    width: 100%;
    max-width: 100%;
    background: var(--color-white);
    border-bottom: var(--border-width) solid var(--color-line);
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition:
      max-height var(--transition-slow),
      opacity var(--transition-base),
      visibility 0s linear var(--transition-slow);
  }

  .primary-nav.is-open {
    max-height: var(--nav-mobile-max-height);
    overflow-y: auto;
    visibility: visible;
    opacity: 1;
    transition:
      max-height var(--transition-slow),
      opacity var(--transition-base),
      visibility 0s linear 0s;
  }

  .primary-nav__list {
    flex-direction: column;
    padding: var(--space-30) 0;
    width: 100%;
  }

  .primary-nav__link,
  .primary-nav__list a {
    border-radius: 0;
    padding: var(--space-40) var(--space-50);
    min-height: var(--nav-toggle-size);
    display: block;
    width: 100%;
  }

  .primary-nav__list li {
    border-bottom: var(--border-width) solid var(--color-line);
  }

  .primary-nav__list > li:first-child {
    border-top: var(--border-width) solid var(--color-line);
  }

}

@media (min-width: 992px) {

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    max-height: none;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

}


/* =============================================================
   12. SITE FOOTER
   ============================================================= */

.site-footer {
  background: var(--color-footer);
  color: var(--color-white);
  padding-block: var(--space-60);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-40);
}

.site-footer a {
  color: var(--color-white);
  text-decoration-color: var(--color-footer-link-underline);
}

.site-footer a:hover {
  opacity: var(--footer-link-hover-opacity);
}


/* =============================================================
   13. MAIN CONTENT AREA
   ============================================================= */

.site-main {
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

/* Elementor controls the homepage section spacing; avoid adding a second
   theme-level gap between the site header and the hero. */
.home .site-main {
  padding-block: 0;
}

/* Keep the final CTA close to the global footer. Elementor adds a 60px
   bottom margin to this outer container, which otherwise becomes a blank
   strip between the page content and footer. */
.home .elementor-39 .elementor-element.elementor-element-ff23b70 {
  --margin-bottom: 0px;
  margin-bottom: 0;
}

/* =============================================================
   14. ENTRY CONTENT
   ============================================================= */

.entry-title {
  overflow-wrap: anywhere;
  margin-bottom: var(--space-40);
}

.entry-content {
  overflow-wrap: break-word;
}

.entry-content > * {
  max-width: 100%;
}


/* =============================================================
   15. PAGE HEADER
   ============================================================= */

.page-header {
  margin-bottom: clamp(var(--space-50), 4vw, var(--space-70));
}


/* =============================================================
   16. PAGINATION
   ============================================================= */

.nav-links {
  display: flex;
  gap: var(--space-20);
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a,
.nav-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--pagination-item-size);
  min-height: var(--pagination-item-size);
  padding: var(--space-20) var(--space-30);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-ink);
}

.nav-links a:hover {
  background: var(--color-soft);
  border-color: var(--color-ink);
}


/* =============================================================
   17. HOMEPAGE SECTIONS
   ============================================================= */

/* ---- Shared: Section tag (eyebrow label above heading) ---- */

.section-tag {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-caps);
  margin-bottom: var(--space-20);
}

/* ---- Shared: Section header block ---- */

.section-header {
  margin-bottom: var(--space-60);
  max-width: var(--section-header-max-width);
}

.section-header__title {
  font-size: clamp(var(--font-size-2xl), 3vw, var(--font-size-3xl));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-ink);
  margin: 0;
}

.section-header__body {
  color: var(--color-muted);
  line-height: var(--line-height-base);
  margin-top: var(--space-30);
}

/* ---- Shared: Button ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-30) var(--space-60);
  border-radius: var(--radius-sm);
  border: var(--border-width) solid transparent;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-base);
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}

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

.btn--primary:hover,
.btn--primary:focus {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline-white:hover,
.btn--outline-white:focus {
  background: var(--color-white);
  color: var(--color-footer);
  border-color: var(--color-white);
}

/* ---- Shared: Card ---- */

.card {
  background: var(--color-white);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-50);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__tag {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-caps);
  margin-bottom: var(--space-20);
}

.card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-ink);
  margin-bottom: var(--space-30);
}

.card__body {
  color: var(--color-muted);
  line-height: var(--line-height-base);
  flex: 1;
}

.card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  margin-top: var(--space-20);
  margin-bottom: var(--space-20);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-10);
  margin-top: var(--space-40);
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.card__link:hover,
.card__link:focus {
  color: var(--color-accent-dark);
}

/* ---- Shared: 3-column fluid card grid ---- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--card-min-width)), 1fr));
  gap: var(--space-50);
}

/* ---- Section 1: Hero ---- */

.hero-section {
  background: var(--color-hero-gradient);
  padding-block: clamp(var(--space-70), 8vw, var(--space-90));
}

.hero-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-60);
  align-items: center;
}

.hero-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-40);
}

.hero-section__title {
  font-size: clamp(var(--font-size-2xl), 4vw, var(--font-size-4xl));
  line-height: var(--line-height-tight);
  font-weight: var(--font-weight-bold);
  color: var(--color-ink);
  margin: 0;
}

.hero-section__lead {
  font-size: var(--font-size-lg);
  color: var(--color-muted);
  line-height: var(--line-height-base);
  margin: 0;
}

.hero-section__panel {
  background: var(--color-line);
  border-radius: var(--radius-lg);
  min-height: var(--hero-panel-min-height);
}

@media (max-width: 991.98px) {
  .hero-section__inner {
    grid-template-columns: 1fr;
  }

  .hero-section__panel {
    display: none;
  }
}

/* ---- Section 2: Case Studies ---- */

.case-studies-section {
  background: var(--color-white);
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

/* ---- Section 3: Events ---- */

.events-section {
  background: var(--color-soft);
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

.events-section__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-70);
  align-items: start;
}

.events-section__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-30);
}

.events-section__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-30);
}

.event-card {
  background: var(--color-white);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-40);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-40);
  align-items: start;
  transition: box-shadow var(--transition-base);
}

.event-card:hover {
  box-shadow: var(--shadow-sm);
}

.event-card__date-block {
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  padding: var(--space-20) var(--space-30);
  text-align: center;
  min-width: var(--space-80);
}

.event-card__day {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
}

.event-card__month {
  display: block;
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-caps);
}

.event-card__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-ink);
  margin-bottom: var(--space-10);
}

.event-card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

@media (max-width: 991.98px) {
  .events-section__inner {
    grid-template-columns: 1fr;
  }
}

/* ---- Section 4: Industries ---- */

.industries-section {
  background: var(--color-white);
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--tile-min-width)), 1fr));
  gap: var(--space-30);
}

.industry-tile {
  background: var(--color-soft);
  border: var(--border-width) solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--space-50) var(--space-40);
  text-align: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-ink);
  font-size: var(--font-size-base);
  text-decoration: none;
  display: block;
  transition:
    background-color var(--transition-fast),
    box-shadow var(--transition-fast),
    color var(--transition-fast);
}

.industry-tile:hover,
.industry-tile:focus {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  color: var(--color-accent);
}

/* ---- Section 5: News ---- */

.news-section {
  background: var(--color-soft);
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

/* ---- Section 6: Posts ---- */

.posts-section {
  background: var(--color-white);
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--post-card-min-width)), 1fr));
  gap: var(--space-50);
}

.post-preview {
  border-bottom: var(--border-width) solid var(--color-line);
  padding-bottom: var(--space-50);
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.post-preview__tag {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-caps);
}

.post-preview__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-ink);
  margin: 0;
}

.post-preview__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.post-preview__title a:hover,
.post-preview__title a:focus {
  color: var(--color-accent);
}

.post-preview__meta {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
}

.post-preview__excerpt {
  color: var(--color-muted);
  line-height: var(--line-height-base);
  flex: 1;
}

/* ---- Section 7: Blog ---- */

.blog-section {
  background: var(--color-soft);
  padding-block: clamp(var(--space-70), 6vw, var(--space-90));
}

/* ---- Section 8: CTA ---- */

.cta-section {
  background: var(--color-footer);
  padding-block: var(--space-70);
}

.cta-section__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-50);
}

.cta-section__title {
  font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-white);
  margin: 0;
}

.cta-section__body {
  color: var(--color-line);
  margin-top: var(--space-20);
  line-height: var(--line-height-base);
}
