/* CGV typography foundation */
:root {
  --cgv-green: #0db050;
  --cgv-green-dark: #0a8d40;
  --cgv-ink: #222222;
  --cgv-text: #3f3f3f;
  --cgv-muted: #6f6f6f;
  --cgv-soft: #f7f5f0;
  --cgv-line: #e8e4dc;
  --cgv-radius: 18px;
  --cgv-reading-width: 760px;
}

html {
  font-size: 16px;
}

body {
  color: var(--cgv-text);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

p,
li {
  line-height: 1.7;
}

p {
  margin-bottom: 1.15em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--cgv-ink);
  font-family: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3vw, 2.75rem);
}

h3 {
  font-size: 1.55rem;
}

h4 {
  font-size: 1.25rem;
}

a {
  color: var(--cgv-green-dark);
  transition: color .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

a:hover,
a:focus {
  color: var(--cgv-green);
}

.cgv-home-hero h1,
.cgv-library-hero h1,
.cgv-single-title {
  letter-spacing: -0.04em;
}

.cgv-home-lead,
.cgv-hero-text,
.cgv-single-description {
  max-width: var(--cgv-reading-width);
  color: #444444;
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.58;
}

.cgv-eyebrow,
.cgv-course-meta {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cgv-course-card h2 {
  font-size: 1.55rem;
  line-height: 1.22;
}

.cgv-course-card-body p,
.cgv-home-card p,
.cgv-download-note p,
.cgv-course-purpose p,
.cgv-course-materials li,
.cgv-course-content {
  line-height: 1.68;
}

.cgv-course-content {
  max-width: var(--cgv-reading-width);
  font-size: 1.06rem;
  line-height: 1.78;
}

.btn-template-main {
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.navbar ul.nav > li > a {
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.cgv-roadmap {
  display: grid;
  gap: 18px;
  margin: 48px 0 70px;
}

.cgv-roadmap-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--cgv-line);
  border-radius: var(--cgv-radius);
  background: #ffffff;
}

.cgv-roadmap-order {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--cgv-soft);
  color: var(--cgv-ink);
  font-size: 1.4rem;
  font-weight: 800;
}

.cgv-roadmap-content h2 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.cgv-roadmap-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: #555555;
  font-size: .96rem;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .cgv-home-lead,
  .cgv-hero-text,
  .cgv-single-description {
    font-size: 1.12rem;
  }

  .cgv-roadmap-item {
    grid-template-columns: 1fr;
  }

  .cgv-roadmap-order {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }
}
