:root {
  --bg: #071a36;
  --bg-deep: #041124;
  --ink: #101820;
  --muted: #607080;
  --surface: #ffffff;
  --soft: #edf3fb;
  --line: #dce5f0;
  --blue: #0b2d5f;
  --blue-light: #1d63a7;
  --yellow: #ffb51d;
  --orange: #f07f1a;
  --cyan: #37c7f4;
  --shadow: 0 26px 70px rgba(4, 17, 36, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, var(--bg-deep) 0, var(--bg) 700px, #f6f8fb 701px);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  letter-spacing: 0;
}

.site-header,
main,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: #ffffff;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-word span:first-child {
  color: #ffffff;
}

.brand-word span:last-child {
  color: var(--yellow);
}

.brand {
  font-size: 26px;
}

.nav {
  display: flex;
  gap: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.nav a {
  border-radius: 6px;
  padding: 9px 11px;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(4, 17, 36, 0.94), rgba(4, 17, 36, 0.78) 45%, rgba(4, 17, 36, 0.16)),
    linear-gradient(0deg, rgba(4, 17, 36, 0.3), rgba(4, 17, 36, 0.04)),
    url("/assets/brand/prokod-cover.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--orange), var(--cyan));
}

.hero-content {
  max-width: 680px;
  padding: 90px 54px 78px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  max-width: 640px;
  font-size: 66px;
  line-height: 0.98;
  font-weight: 950;
}

h2 {
  max-width: 760px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 920;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 11px 18px;
  font-weight: 920;
}

.button-primary {
  border-color: var(--yellow);
  background: var(--yellow);
  color: #091429;
}

.button-primary:hover {
  background: #ffd063;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.34);
  background: #ffffff;
  color: var(--blue);
}

.button-light:hover {
  background: #eef5ff;
}

.section {
  padding: 78px 0 0;
}

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.58;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 28px;
}

.section-head-row p {
  max-width: 410px;
  margin: 0;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.path-item {
  min-height: 270px;
  background: var(--surface);
  padding: 24px;
}

.path-item span {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-weight: 950;
}

.path-item p,
.course-body p,
.featured-content p,
.kids-content p,
.kids-card p,
.author-band p {
  color: var(--muted);
  line-height: 1.58;
}

.featured-course {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  overflow: hidden;
  border-radius: 8px;
  background: #08172e;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.featured-cover {
  overflow: hidden;
  min-height: 480px;
  background: var(--blue);
}

.featured-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 44px;
}

.featured-content h3 {
  max-width: 560px;
  margin-top: 10px;
  font-size: 36px;
  line-height: 1.08;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.course-label {
  margin: 0;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 26px;
}

.course-tags span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 850;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.course-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.course-cover {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}

.course-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.course-card:hover .course-cover img {
  transform: scale(1.025);
}

.course-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
}

.course-body h3 {
  margin-top: 12px;
}

.course-body p:not(.course-label) {
  margin-bottom: 20px;
}

.text-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--blue-light);
  font-weight: 920;
}

.text-link::after {
  content: " ->";
}

.reviews-section {
  margin-top: 78px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 17, 36, 0.98), rgba(11, 45, 95, 0.94)),
    var(--blue);
  color: #ffffff;
  padding: 42px;
  box-shadow: var(--shadow);
}

.reviews-section .section-head h2,
.reviews-section .section-head p {
  color: #ffffff;
}

.reviews-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.review-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 22px;
}

.review-card blockquote {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.24;
}

.review-card blockquote::before {
  display: block;
  margin-bottom: 18px;
  color: var(--yellow);
  content: "5/5";
  font-size: 12px;
  font-weight: 950;
}

.review-card figcaption,
.review-card figcaption strong,
.review-card figcaption span {
  display: block;
}

.review-card figcaption {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 850;
}

.review-card figcaption strong {
  color: #ffffff;
}

.review-card figcaption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
}

.kids-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr);
  gap: 0;
  overflow: hidden;
  margin-top: 78px;
  border-radius: 8px;
  background: #fff7e8;
  box-shadow: var(--shadow);
}

.kids-visual {
  min-height: 500px;
  background: #e9d0ab;
}

.kids-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kids-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
}

.kids-content .kicker {
  color: #8a55bb;
}

.kids-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid #ead5b4;
  border-radius: 8px;
  background: #ffffff;
  padding: 14px;
}

.kids-card img {
  width: 160px;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  object-fit: cover;
}

.kids-card h3 {
  font-size: 19px;
}

.kids-card p {
  margin: 8px 0 10px;
}

.kids-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pylandia-page {
  --py-green: #4caf50;
  --py-orange: #ff9800;
  --py-blue: #2196f3;
  --py-purple: #9c27b0;
  --py-pink: #e91e63;
  background:
    linear-gradient(180deg, #041124 0, #071a36 620px, #fff8ec 621px, #f6f8fb 980px);
}

.pylandia-hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(4, 17, 36, 0.96), rgba(4, 17, 36, 0.78) 44%, rgba(4, 17, 36, 0.08)),
    linear-gradient(0deg, rgba(4, 17, 36, 0.32), rgba(4, 17, 36, 0.02)),
    url("/assets/brand/pylandia-classroom-site.jpg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.pylandia-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  content: "";
  background: linear-gradient(
    90deg,
    var(--py-green),
    var(--py-orange),
    var(--py-blue),
    var(--py-purple),
    var(--py-pink)
  );
}

.pylandia-hero-content {
  width: min(100%, 690px);
  max-width: 690px;
  padding: 94px 54px 82px;
}

.pylandia-hero h1 {
  font-size: 78px;
}

.pylandia-series,
.pylandia-characters,
.pylandia-format {
  padding-top: 78px;
}

.pylandia-book-grid,
.character-grid,
.format-grid {
  display: grid;
  gap: 16px;
}

.pylandia-book-grid {
  grid-template-columns: 1.25fr 0.88fr 0.88fr;
}

.pylandia-book {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.pylandia-book-active {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(190px, 0.82fr) minmax(0, 1fr);
  gap: 22px;
  background: #08172e;
  color: #ffffff;
}

.pylandia-book img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  border-radius: 8px;
  object-fit: cover;
}

.pylandia-book h3 {
  margin-top: 10px;
}

.pylandia-book p:not(.course-label) {
  color: var(--muted);
  line-height: 1.58;
}

.pylandia-book-active p:not(.course-label) {
  color: rgba(255, 255, 255, 0.72);
}

.pylandia-book-active .text-link {
  color: var(--yellow);
}

.pylandia-book-placeholder {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 181, 29, 0.24), rgba(156, 39, 176, 0.16)),
    #fff8ec;
  color: var(--blue);
  font-size: 34px;
  font-weight: 950;
}

.pylandia-character-visual {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #fff8ec;
  box-shadow: var(--shadow);
}

.pylandia-character-visual img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

.character-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.character-card {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.character-card span {
  display: block;
  width: 42px;
  height: 8px;
  margin-bottom: 26px;
  border-radius: 999px;
}

.character-card h3 {
  font-size: 21px;
}

.character-card p,
.format-card p {
  color: var(--muted);
  line-height: 1.55;
}

.character-python span {
  background: var(--py-green);
}

.character-buggy span {
  background: var(--py-orange);
}

.character-cody span {
  background: var(--py-blue);
}

.character-perry span {
  background: var(--py-purple);
}

.character-snake span {
  background: var(--py-pink);
}

.format-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.format-card {
  min-height: 270px;
  background: var(--surface);
  padding: 24px;
}

.format-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--py-purple);
  font-weight: 950;
}

.pylandia-feedback {
  margin-bottom: 24px;
}

.feedback-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: center;
  margin-top: 78px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(4, 17, 36, 0.98), rgba(11, 45, 95, 0.9)),
    var(--blue);
  color: #ffffff;
  padding: 38px;
  box-shadow: var(--shadow);
}

.feedback-copy p:not(.kicker) {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.58;
}

.feedback-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.feedback-form label,
.feedback-form span {
  display: block;
}

.feedback-form span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  padding: 12px;
}

.feedback-form textarea {
  min-height: 164px;
  resize: vertical;
}

.feedback-message,
.feedback-form .button,
.feedback-status {
  grid-column: 1 / -1;
}

.feedback-form .button {
  width: 100%;
}

.feedback-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.feedback-status {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 850;
}

.feedback-status[data-status="success"] {
  color: #89f0b2;
}

.feedback-status[data-status="error"] {
  color: #ffd1c4;
}

.feedback-website {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.author-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 78px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(4, 17, 36, 0.95), rgba(4, 17, 36, 0.74)),
    url("/assets/brand/prokod-logo-site.jpg");
  background-position: right center;
  background-size: auto 100%;
  color: #ffffff;
  padding: 38px;
}

.author-band > div {
  max-width: 730px;
}

.author-band p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  padding: 30px 0 38px;
  font-size: 14px;
  font-weight: 850;
}

.site-footer .brand-word {
  font-size: 20px;
}

.site-footer .brand-word span:first-child {
  color: var(--blue);
}

.site-footer a:hover {
  color: var(--blue);
}

@media (max-width: 980px) {
  body {
    background:
      linear-gradient(180deg, var(--bg-deep) 0, var(--bg) 820px, #f6f8fb 821px);
  }

  .hero {
    min-height: 590px;
  }

  .hero-content {
    padding: 62px 34px 64px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .path-grid,
  .course-grid,
  .review-grid,
  .pylandia-book-grid,
  .character-grid,
  .format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pylandia-hero {
    min-height: 590px;
  }

  .featured-course,
  .kids-section,
  .feedback-section {
    grid-template-columns: 1fr;
  }

  .featured-cover,
  .kids-visual {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .pylandia-book-active {
    grid-column: 1 / -1;
  }

}

@media (max-width: 700px) {
  body {
    background:
      linear-gradient(180deg, var(--bg-deep) 0, var(--bg) 626px, #f6f8fb 627px);
  }

  .site-header,
  .section-head-row,
  .author-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header,
  main,
  .site-footer {
    width: min(1180px, calc(100% - 24px));
  }

  .site-header {
    min-height: auto;
    gap: 14px;
    padding: 16px 0 12px;
  }

  .brand {
    font-size: 24px;
  }

  .nav {
    width: 100%;
    gap: 7px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 9px 10px;
  }

  .hero {
    min-height: min(540px, calc(100svh - 106px));
    background-image:
      linear-gradient(0deg, rgba(4, 17, 36, 0.94), rgba(4, 17, 36, 0.52)),
      url("/assets/brand/prokod-cover.jpg");
    background-position: 58% center;
  }

  .pylandia-hero {
    min-height: min(560px, calc(100svh - 106px));
    background-image:
      linear-gradient(0deg, rgba(4, 17, 36, 0.95), rgba(4, 17, 36, 0.5)),
      url("/assets/brand/pylandia-classroom-site.jpg");
    background-position: 55% center;
  }

  .hero-content {
    padding: 38px 20px 44px;
  }

  .pylandia-hero-content {
    width: min(100%, 330px);
    padding: 42px 20px 46px;
  }

  .pylandia-hero .hero-lead {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .pylandia-hero .hero-actions {
    max-width: 330px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .pylandia-hero h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions,
  .hero-actions .button,
  .featured-content .button,
  .author-band .button {
    width: 100%;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button {
    min-height: 48px;
  }

  .section {
    padding-top: 48px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .section-head p {
    line-height: 1.5;
  }

  .reviews-section {
    margin-top: 54px;
    padding: 24px 18px;
  }

  .path-grid,
  .course-grid,
  .pylandia-book-grid,
  .character-grid,
  .format-grid {
    grid-template-columns: 1fr;
  }

  .path-item {
    min-height: auto;
    padding: 18px;
  }

  .path-item span,
  .format-card span {
    margin-bottom: 14px;
  }

  .pylandia-series,
  .pylandia-characters,
  .pylandia-format {
    padding-top: 48px;
  }

  .pylandia-book,
  .character-card,
  .format-card {
    min-height: auto;
    padding: 18px;
  }

  .pylandia-book-active {
    grid-template-columns: 1fr;
  }

  .pylandia-book h3,
  .pylandia-book p:not(.course-label) {
    max-width: 32ch;
  }

  .pylandia-book img,
  .pylandia-character-visual img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .character-card span {
    margin-bottom: 18px;
  }

  .featured-content,
  .kids-content {
    padding: 24px;
  }

  .featured-content h3 {
    font-size: 28px;
  }

  .course-grid {
    gap: 12px;
  }

  .course-card {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
  }

  .course-cover {
    aspect-ratio: 1 / 1;
  }

  .course-body {
    min-width: 0;
    padding: 14px;
  }

  .course-body h3 {
    margin-top: 8px;
    font-size: 18px;
  }

  .course-body p:not(.course-label) {
    margin: 9px 0 14px;
    font-size: 14px;
    line-height: 1.42;
  }

  .review-grid {
    display: flex;
    gap: 12px;
    margin-right: -18px;
    overflow-x: auto;
    padding: 0 18px 4px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 min(82vw, 310px);
    min-height: 178px;
    padding: 18px;
    scroll-snap-align: start;
  }

  .review-card blockquote {
    font-size: 20px;
  }

  .kids-card {
    grid-template-columns: 1fr;
  }

  .kids-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .feedback-section,
  .author-band {
    margin-top: 54px;
    padding: 26px;
  }

  .feedback-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
  }
}

@media (max-width: 460px) {
  .site-header,
  main,
  .site-footer {
    width: min(1180px, calc(100% - 20px));
  }

  .hero {
    border-radius: 7px;
    min-height: min(510px, calc(100svh - 104px));
  }

  .hero-content {
    padding: 32px 16px 38px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 20px;
  }

  .kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .featured-cover {
    aspect-ratio: 16 / 10;
  }

  .featured-content,
  .kids-content,
  .pylandia-hero-content,
  .feedback-section,
  .author-band {
    padding: 20px;
  }

  .featured-content h3 {
    font-size: 25px;
  }

  .course-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .course-body h3 {
    font-size: 17px;
  }

  .course-body p:not(.course-label) {
    display: none;
  }

  .text-link {
    margin-top: 12px;
  }

  .reviews-section {
    padding: 22px 16px;
  }

  .review-grid {
    margin-right: -16px;
    padding-right: 16px;
  }

  .review-card {
    flex-basis: min(86vw, 300px);
  }

  .kids-visual {
    aspect-ratio: 4 / 3;
  }

  .kids-card img {
    aspect-ratio: 3 / 2;
  }

  .pylandia-hero h1 {
    font-size: 40px;
  }

  .pylandia-book-placeholder {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }

  .feedback-copy p:not(.kicker),
  .author-band p {
    font-size: 16px;
  }
}
