:root {
  color-scheme: light;
  --color-ink: #1c2024;
  --color-muted: #62676d;
  --color-line: #ded7ca;
  --color-paper: #fbfaf7;
  --color-soft: #f2eee6;
  --color-accent: #8c5b35;
  --color-accent-strong: #5f351d;
  --color-green: #2f6657;
  --color-blue: #315d75;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: 76px;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  margin: 0;
  min-height: 210px;
  padding: 20px max(20px, calc((100vw - 1180px) / 2)) 10px;
  background: #fff;
  border-bottom: 1px solid #d7d7d7;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .16);
}

.header-actions {
  position: absolute;
  top: 46px;
  right: max(20px, calc((100vw - 1200px) / 2 + 107px));
  display: flex;
  gap: 18px;
}

.header-actions a {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  background: #f4979a;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}

.action-search::before {
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 50%;
  content: "";
}

.action-search::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 9px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transform: rotate(45deg);
  content: "";
}

.action-account::before {
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 4px, transparent 4.5px),
    radial-gradient(ellipse at 50% 100%, #fff 0 8px, transparent 8.5px);
  content: "";
}

.mobile-menu {
  display: none;
}

.brand,
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.site-nav {
  flex-wrap: wrap;
  gap: 15px;
}

.brand {
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  display: block;
  width: 269px;
  height: auto;
}

.site-nav a {
  width: 142px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 15px;
  background: #4f5192;
  border: 2px solid #4f5192;
  border-radius: 10px;
  color: #fff;
  font-family: Montserrat, var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.site-nav a:nth-child(2) {
  width: 136px;
}

.site-nav a:nth-child(3) {
  width: 88px;
}

.site-nav a:nth-child(4) {
  width: 165px;
}

.site-nav a:nth-child(5) {
  width: 118px;
}

.site-nav a:nth-child(6) {
  width: 155px;
}

.site-nav a:hover {
  background: #fff;
  color: #4f5192;
}

.source-hero {
  position: relative;
  min-height: 484px;
  display: grid;
  place-items: center;
  padding: 40px max(20px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(rgba(0, 0, 0, .16), rgba(0, 0, 0, .16)),
    var(--hero-image) center / cover no-repeat,
    var(--color-soft);
}

.source-hero-panel {
  position: relative;
  width: min(1140px, 100%);
  min-height: 405px;
  display: grid;
  place-items: center;
  padding: 58px 280px 58px 70px;
  background: rgba(24, 31, 36, .72);
  color: #fff;
  text-align: center;
}

.source-hero-copy {
  max-width: 720px;
}

.source-hero h1 {
  max-width: none;
  color: #fff;
  font-family: Montserrat, var(--font-body);
  font-size: clamp(38px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

.source-hero p {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.source-hero p:not(.source-author) {
  font-style: italic;
  font-weight: 400;
}

.source-author {
  font-weight: 800;
  font-style: normal;
}

.source-badge {
  display: inline-block;
  margin: 0 0 14px !important;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  font-size: 13px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.source-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 12px 24px;
  background: #fff;
  border: 2px solid #4f5192;
  border-radius: 10px;
  color: #4f5192;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.source-hero-portrait {
  position: absolute;
  right: 54px;
  bottom: 30px;
  max-width: 270px;
  max-height: 300px;
  object-fit: contain;
}

.sticky-buy {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 285px minmax(0, 1fr) 320px;
  align-items: center;
  min-height: 68px;
  background: rgba(255, 255, 255, .96);
  border-top: 1px solid rgba(0, 0, 0, .14);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, .12);
}

.sticky-buy img {
  display: block;
  width: 100%;
  height: 68px;
  object-fit: cover;
}

.sticky-buy p {
  margin: 0;
  padding: 0 20px;
  color: #1c2024;
  font-size: 16px;
  line-height: 1.35;
}

.sticky-buy strong {
  color: #c986ff;
}

.sticky-buy a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-right: 20px;
  padding: 12px 20px;
  background: #f4979a;
  border-radius: 12px;
  color: #fff;
  font-family: Montserrat, var(--font-body);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.top-banner {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-soft);
  border-radius: 6px;
}

.top-banner img {
  display: block;
  width: 100%;
  aspect-ratio: 1600 / 375;
  object-fit: cover;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .55fr);
  gap: 48px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 64px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--color-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid var(--color-line);
  background: #fff;
  color: var(--color-green);
  font-size: 13px;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.author {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 700;
}

.summary {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--color-muted);
  font-size: 20px;
  line-height: 1.55;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.meta-grid span {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--color-line);
  color: var(--color-accent-strong);
  font-size: 14px;
  font-weight: 760;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--color-accent-strong);
  text-decoration: none;
  font-weight: 750;
}

.button-primary {
  background: var(--color-green);
  color: white;
  border-color: var(--color-green);
}

.button-secondary {
  color: var(--color-green);
  border-color: var(--color-green);
}

.hero-media {
  min-height: 310px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  align-self: stretch;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
}

.hero-media img.portrait {
  object-position: center top;
}

.text-visual {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 36px;
  text-align: center;
}

.text-visual span {
  display: grid;
  place-items: center;
  width: 140px;
  height: 140px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 48px;
}

.text-visual p {
  margin: 18px 0 0;
  color: var(--color-accent-strong);
  font-weight: 800;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
  color: var(--color-blue);
  font-weight: 760;
}

.strip span {
  display: grid;
  gap: 4px;
}

.strip strong {
  font-size: 16px;
}

.strip small {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.strip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.strip div + div {
  border-left: 1px solid var(--color-line);
}

.content-section,
.cta-section,
.teacher-section,
.promise-grid,
.feature-section,
.learning-section,
.offer-section,
.recommendations-section {
  width: min(860px, calc(100% - 40px));
  margin: 76px auto;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 42px;
  padding: 14px;
  background: #fff;
  border: 0;
  border-bottom: 3px solid #4f5192;
  border-radius: 0;
}

.anchor-nav a {
  padding: 8px 10px;
  color: var(--color-green);
  color: #4f5192;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
}

.archive-main {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto 90px;
  padding-top: 10px;
}

.archive-main > h1 {
  max-width: none;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 40px;
  line-height: 1.2;
}

.archive-entry h2,
.archive-teacher h2 {
  margin: 20px 0 16px;
  color: #4f5192;
  font-family: var(--font-body);
  font-size: 32px;
  line-height: 1.2;
}

.archive-entry p,
.archive-teacher p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.archive-entry-image {
  display: block;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  object-position: center top;
}

.archive-cards {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.archive-cards .course-card {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.archive-cards .course-card img {
  aspect-ratio: 1024 / 240;
}

.archive-cards .course-card h3 {
  padding-left: 0;
  color: #4f5192;
  font-family: var(--font-body);
  font-size: 32px;
}

.archive-cards .course-card p {
  padding-left: 0;
  color: #333;
  font-size: 16px;
}

.archive-cards .course-card .button {
  margin-left: 0;
}

.feature-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  width: min(1020px, calc(100% - 40px));
  text-align: center;
}

.feature-copy p {
  max-width: 940px;
  margin-right: auto;
  margin-left: auto;
  color: #4f5192;
  font-family: Montserrat, var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
}

.feature-copy h2 {
  color: #f4979a;
  font-family: Montserrat, var(--font-body);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  text-transform: uppercase;
}

.feature-copy,
.feature-media {
  min-width: 0;
}

.feature-copy p:last-child {
  margin-bottom: 0;
}

.feature-media {
  width: min(520px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.feature-media img {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: 240px;
  object-fit: cover;
}

.learning-section {
  width: min(980px, calc(100% - 40px));
  padding: 36px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.learning-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.learning-section li {
  position: relative;
  padding-left: 28px;
  color: var(--color-muted);
  font-size: 17px;
  line-height: 1.55;
}

.learning-section li::before {
  position: absolute;
  top: .55em;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-green);
  border-radius: 50%;
  content: "";
}

.content-section article + article {
  margin-top: 40px;
}

.content-section p,
.cta-section p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.7;
}

.curriculum {
  margin-top: 46px;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.steps-section {
  margin-top: 46px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.steps-grid article {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.steps-grid img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.steps-grid h3 {
  margin: 14px 0 8px;
  color: var(--color-accent-strong);
  font-size: 18px;
}

.steps-grid p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.curriculum ol {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding-left: 22px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.55;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.course-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
  overflow: hidden;
}

.course-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.course-card h3 {
  margin: 0;
  padding: 20px 20px 4px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1.1;
}

.course-card p {
  margin: 0;
  padding: 12px 20px 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

.course-card .button {
  margin: 16px 20px 22px;
}

.teacher-section {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  width: min(920px, calc(100% - 40px));
  padding: 34px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.teacher-section img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 1px solid var(--color-line);
}

.teacher-section p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
}

.promise-grid article {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.promise-grid img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.promise-grid h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.promise-grid p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(300px, .75fr);
  gap: 26px;
  align-items: start;
  width: min(980px, calc(100% - 40px));
  padding: 38px;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 6px;
}

.offer-section p {
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.65;
}

.price-grid {
  display: grid;
  gap: 14px;
}

.price-grid article {
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--color-green) 26%, var(--color-line));
  border-radius: 6px;
  background: color-mix(in srgb, var(--color-green) 7%, #fff);
}

.price-grid span,
.price-grid strong {
  display: block;
}

.price-grid span {
  color: var(--color-green);
  font-weight: 800;
}

.price-grid strong {
  margin-top: 4px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
}

.price-grid p {
  margin: 8px 0 0;
  font-size: 14px;
}

.cta-section {
  display: flex;
  justify-content: center;
  padding: 10px 0 42px;
  background: transparent;
  border: 0;
}

.cta-section .button-primary {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-height: 64px;
  padding: 14px 32px;
  background: #f4979a;
  border-color: #f4979a;
  border-radius: 0;
  color: #fff;
  font-family: Montserrat, var(--font-body);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.cta-section .button-primary span {
  font-size: 12px;
  font-weight: 700;
  text-transform: none;
}

.recommendations-section {
  width: min(1140px, calc(100% - 40px));
  text-align: center;
}

.recommendations-section > h2 {
  color: #4f5192;
  font-family: Montserrat, var(--font-body);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

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

.recommendation-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.recommendation-card h3 {
  min-height: 74px;
  margin: 0 0 18px;
  color: #4f5192;
  font-family: Montserrat, var(--font-body);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.08;
}

.recommendation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 760 / 420;
  object-fit: cover;
}

.recommendation-card ul {
  display: grid;
  gap: 9px;
  width: 100%;
  margin: 18px 0 0;
  padding: 0;
  color: #4f5192;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

.recommendation-card li {
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #eee;
}

.recommendation-card .button {
  margin-top: 18px;
  border-color: #f4979a;
  background: #f4979a;
  color: #fff;
  font-family: Montserrat, var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  body {
    padding-bottom: 128px;
  }

  .site-header,
  .site-nav,
  .hero,
  .actions {
    align-items: flex-start;
  }

  .site-header,
  .site-nav {
    flex-direction: column;
  }

  .site-header {
    min-height: 68px;
    padding: 10px 20px;
    align-items: center;
  }

  .header-actions {
    top: 19px;
    right: 15px;
    display: flex;
    gap: 15px;
  }

  .header-actions a {
    width: 30px;
    height: 30px;
  }

  .action-search::before {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  .action-search::after {
    right: 8px;
    bottom: 8px;
    width: 9px;
    height: 3px;
  }

  .action-account::before {
    width: 18px;
    height: 18px;
    background:
      radial-gradient(circle at 50% 34%, #fff 0 4px, transparent 4.5px),
      radial-gradient(ellipse at 50% 100%, #fff 0 8px, transparent 8.5px);
  }

  .mobile-menu {
    position: absolute;
    top: 22px;
    left: 38px;
    display: grid;
    gap: 4px;
    width: 22px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .mobile-menu span {
    display: block;
    height: 4px;
    background: #4f5192;
    border-radius: 2px;
  }

  .brand img {
    width: 171px;
    max-width: 100%;
  }

  .site-nav {
    display: none;
  }

  .source-hero {
    min-height: 680px;
    padding: 30px 0 0;
  }

  .source-hero-panel {
    width: 100%;
    min-height: 620px;
    padding: 20px 20px 300px;
  }

  .source-hero h1 {
    font-size: 28.5px;
    line-height: 1.28;
  }

  .source-hero-portrait {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    max-width: 340px;
    max-height: 300px;
  }

  .sticky-buy {
    grid-template-columns: 1fr;
    min-height: 118px;
    padding: 10px;
  }

  .sticky-buy img {
    display: none;
  }

  .sticky-buy p {
    padding: 0 0 8px;
    font-size: 14px;
  }

  .sticky-buy a {
    width: min(320px, 100%);
    min-height: 48px;
    margin: 0 auto;
    font-size: 16px;
  }

  .archive-main > h1 {
    font-size: 36px;
  }

  .archive-entry h2,
  .archive-teacher h2,
  .archive-cards .course-card h3 {
    font-size: 28px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 12px;
    padding-top: 36px;
    padding-bottom: 44px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 54px);
    line-height: 1;
  }

  .summary {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .meta-grid,
  .card-grid,
  .teacher-section,
  .promise-grid,
  .feature-section,
  .learning-section ul,
  .offer-section,
  .recommendations-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .anchor-nav {
    justify-content: flex-start;
    margin-top: -16px;
  }

  .feature-section,
  .learning-section,
  .offer-section,
  .recommendations-section {
    margin-top: 52px;
    margin-bottom: 52px;
  }

  .recommendation-card h3 {
    min-height: 0;
  }

  .feature-media {
    order: -1;
  }

  .learning-section,
  .offer-section {
    padding: 26px;
  }

  .teacher-section {
    padding: 24px;
  }

  .teacher-section img {
    width: min(220px, 100%);
  }

  .cta-section {
    padding: 0 0 32px;
  }

  .cta-section .button-primary {
    font-size: 16px;
  }

  .strip {
    grid-template-columns: 1fr;
  }

  .strip div + div {
    border-top: 1px solid var(--color-line);
    border-left: 0;
  }
}
