.learning-home {
  --paper: #fcfaf4;
  --ink: #24211c;
  --muted: #6f6a60;
  --line: #ded6c9;
  --home-accent: #92513c;
  --home-soft: #f4eadb;
  --home-blue: #526b76;
  --home-rose: #bd654b;
  --home-yellow: #f4eadb;
  --display-font: 'Bricolage Grotesque', sans-serif;
  --reading-font: 'Newsreader', Georgia, serif;
  background: var(--paper);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}
.learning-home * {
  letter-spacing: 0;
}
.learning-home [hidden] {
  display: none !important;
}
.learning-home .shell {
  width: min(1160px, calc(100% - 64px));
}
.learning-home h1,
.learning-home h2,
.learning-home h3 {
  font-family: var(--display-font);
  font-weight: 500;
}
.quiz-sentence,
.phrase-copy > p {
  font-family: var(--reading-font);
  font-weight: 400;
}
.learning-home button,
.learning-home input,
.learning-home select {
  font-family: inherit;
}
.learning-home button,
.learning-home select {
  cursor: pointer;
}
.learning-home button:disabled {
  cursor: default;
}
.learning-home a {
  text-underline-offset: 4px;
}
.learning-home :focus-visible {
  outline: 3px solid var(--home-blue);
  outline-offset: 4px;
}
.learning-home main svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.home-masthead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0 34px;
}
.home-kicker {
  margin: 0 0 8px;
  color: var(--home-accent);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.live-dot {
  display: inline-block;
  width: 12px;
  height: 3px;
  margin-right: 7px;
  background: var(--home-rose);
  vertical-align: middle;
}
.home-masthead h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 600;
}
.home-masthead h1 em {
  font-family: var(--reading-font);
  font-weight: 400;
  color: var(--home-accent);
}
.home-subtitle {
  color: var(--muted);
  margin: 10px 0 0;
  font-size: 15px;
}
.home-date {
  display: grid;
  gap: 5px;
  text-align: right;
  font-size: 12px;
  padding: 8px 0 8px 20px;
  border-left: 2px solid var(--home-rose);
  color: var(--muted);
}
.home-date > span {
  color: var(--home-accent);
  font-family: var(--reading-font);
  font-style: italic;
  font-size: 24px;
}
.daily-band {
  background: #fff;
  border-block: 1px solid var(--line);
}
.daily-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 48px;
  padding-block: 30px;
  align-items: start;
}
.daily-study {
  padding: 4px 0 0 26px;
  border-left: 1px solid var(--home-rose);
  min-width: 0;
}
.home-section-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--home-accent);
}
.home-section-label > span:first-child,
.home-section-label .daily-practice-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.daily-practice-link {
  color: inherit;
  text-decoration: none;
}
.daily-practice-link:hover,
.daily-practice-link:focus-visible {
  color: var(--home-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-section-label svg {
  width: 17px;
  height: 17px;
}
.home-badge {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 11px;
  line-height: 1.7;
  color: var(--muted);
  white-space: nowrap;
}
.daily-study h2 {
  font-size: 27px;
  line-height: 1.2;
  margin: 24px 0 8px;
}
.daily-prompt {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.quiz-sentence {
  font-size: 42px;
  line-height: 56px;
  margin: 20px 0 8px;
  padding-top: 4px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 55px,
    var(--home-soft) 55px 56px
  );
  overflow-wrap: anywhere;
}
.sentence-gap {
  display: inline-block;
  min-width: 70px;
  text-align: center;
  border-bottom: 2px solid var(--home-rose);
  color: var(--home-accent);
  line-height: 1.2;
}
.quiz-translation {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 24px;
}
.quiz-choices {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-inline-size: 0;
}
.quiz-choices button {
  min-height: 50px;
  border: 1px solid var(--line);
  border-bottom-width: 3px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  transition:
    background 0.15s,
    border-color 0.15s;
}
.quiz-choices button:hover:not(:disabled) {
  border-color: var(--home-accent);
  background: var(--home-soft);
}
.quiz-choices button[data-result='correct'] {
  color: white;
  border-color: var(--home-accent);
  background: var(--home-accent);
}
.quiz-choices button[data-result='incorrect'] {
  color: var(--home-accent);
  border-color: var(--home-rose);
  background: var(--home-soft);
  text-decoration: line-through;
}
.quiz-feedback {
  min-height: 60px;
  padding-top: 12px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--home-accent);
}
.quiz-feedback[data-state='incorrect'] {
  color: var(--home-accent);
}
.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}
.home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.home-text-link:hover {
  text-decoration: underline;
}
.home-text-link svg {
  width: 16px;
  height: 16px;
}
.home-icon-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--muted);
  background: transparent;
}
.home-icon-button:hover,
.home-icon-button[aria-pressed='true'] {
  background: var(--home-soft);
  color: var(--home-accent);
}
.home-icon-button[aria-pressed='true'] svg {
  fill: var(--home-soft);
}
.paris-feature {
  display: block;
  text-decoration: none;
}
.paris-feature img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  border-radius: 3px;
}
.paris-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}
.paris-caption .home-kicker {
  font-size: 10px;
}
.paris-caption h3 {
  font-family: var(--reading-font);
  font-size: 28px;
  margin: 2px 0 0;
  line-height: 1.2;
}
.paris-caption p {
  font-size: 12px;
  color: var(--muted);
  margin: 5px 0 0;
}
.paris-feature:hover h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.weekly-activity {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 2px;
}
.activity-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}
.activity-heading h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  margin: 0;
  font-weight: 500;
}
.activity-heading > span {
  color: var(--home-accent);
}
.week-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}
.week-day {
  display: grid;
  justify-items: center;
  gap: 5px;
  font-size: 10px;
  color: var(--muted);
}
.day-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 10px;
}
.week-day.is-today .day-mark {
  border: 2px solid var(--home-accent);
}
.week-day.is-complete .day-mark {
  background: var(--home-accent);
  color: #fff;
  border-color: var(--home-accent);
}
.day-mark svg {
  width: 13px;
  height: 13px;
}
.device-note {
  color: var(--muted);
  font-size: 10px;
  margin: 8px 0 0;
}
.phrase-band {
  background: var(--home-yellow);
  border-bottom: 1px solid var(--gold);
}
.phrase-strip {
  display: grid;
  grid-template-columns: 195px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding-block: 24px;
}
.phrase-label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0 10px;
}
.phrase-label svg {
  color: var(--home-blue);
  grid-row: span 2;
  align-self: center;
}
.phrase-label h2 {
  font:
    600 13px 'DM Sans',
    sans-serif;
  margin: 0;
}
.phrase-label > span {
  color: var(--muted);
  font-size: 11px;
}
.phrase-copy > p {
  font-size: 29px;
  line-height: 1.3;
  margin: 0 0 5px;
}
.phrase-copy > span {
  display: block;
  min-height: 19px;
  font-size: 12px;
  color: var(--muted);
}
.phrase-copy > span[hidden] {
  display: block !important;
  visibility: hidden;
}
.phrase-actions {
  display: flex;
  gap: 3px;
}
.lesson-section {
  padding-block: 56px 36px;
  scroll-margin-top: 100px;
}
.home-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}
.home-section-heading h2 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
}
.home-section-heading > a {
  margin-bottom: 5px;
  flex-shrink: 0;
}
.discovery-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.home-segments {
  display: flex;
  gap: 22px;
}
.home-segments button {
  padding: 10px 0 13px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  min-height: 44px;
}
.home-segments button[aria-pressed='true'] {
  color: var(--home-accent);
  border-color: var(--home-accent);
}
.study-list-toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 6px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
}
.study-list-toggle svg {
  width: 16px;
  height: 16px;
}
.study-list-toggle > span {
  min-width: 21px;
  border-radius: 3px;
  background: var(--home-soft);
  text-align: center;
  font-size: 10px;
  padding: 1px 3px;
}
.study-list-toggle[aria-pressed='true'] {
  color: var(--home-accent);
  background: var(--home-soft);
}
.discovery-filters {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}
.lesson-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted);
}
.lesson-search:focus-within {
  outline: 2px solid var(--home-blue);
  outline-offset: 2px;
}
.lesson-search > svg {
  width: 17px;
  height: 17px;
}
.lesson-search input {
  width: 100%;
  min-width: 0;
  padding: 10px 0;
  border: 0;
  outline: none !important;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}
.lesson-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}
.level-select {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.level-select select {
  min-height: 48px;
  min-width: 174px;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 9px 12px;
  color: var(--ink);
  background: white;
  font-size: 13px;
}
.discovery-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  min-height: 40px;
  align-items: center;
}
.discovery-summary p {
  margin: 0;
}
.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lesson-tile {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 16px 22px 20px;
  background: #fff;
  transition: border-color 0.18s;
}
.lesson-tile:hover {
  border-color: var(--home-blue);
}
.lesson-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
}
.category-label {
  font-size: 11px;
  color: var(--home-blue);
  font-weight: 600;
}
.lesson-tile[data-category='vocabulary'] .category-label {
  color: var(--home-rose);
}
.save-lesson {
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-basis: 44px;
}
.save-lesson svg {
  width: 16px;
  height: 16px;
}
.lesson-tile h3 {
  font-size: 25px;
  line-height: 1.2;
  margin: 13px 0 10px;
}
.lesson-tile h3 a,
.culture-story h3 a {
  text-decoration: none;
}
.lesson-tile h3 a:hover,
.culture-story h3 a:hover {
  text-decoration: underline;
}
.lesson-description {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}
.lesson-example {
  font: italic 19px/1.5 var(--reading-font);
  padding: 8px 0 8px 12px;
  margin: 12px 0 0;
  color: var(--home-blue);
  border-left: 2px solid var(--home-soft);
}
.lesson-open {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  color: var(--home-accent);
}
.lesson-open svg {
  width: 17px;
  height: 17px;
}
.lesson-open:hover {
  text-decoration: underline;
}
.lesson-empty {
  text-align: center;
  padding: 44px 20px;
  background: var(--home-soft);
  border-radius: 5px;
}
.lesson-empty > svg {
  width: 26px;
  height: 26px;
  color: var(--muted);
}
.lesson-empty h3 {
  font-size: 28px;
  margin: 12px 0 4px;
}
.lesson-empty p {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 18px;
}
.home-notice {
  color: var(--home-rose);
  font-size: 12px;
  margin: 10px 0 0;
  min-height: 18px;
}
.home-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 44px;
  padding: 12px 19px;
  border: 1px solid var(--home-accent);
  border-radius: 5px;
  background: var(--home-accent);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.home-button:hover {
  background: var(--coral-dark);
}
.home-button svg {
  width: 17px;
  height: 17px;
}
.tool-band {
  background: var(--home-blue);
  color: #fff;
  border-block: 1px solid var(--home-blue);
}
.tool-inner {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding-block: 34px;
}
.tool-symbol {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--home-yellow);
  font: 28px/1.1 var(--reading-font);
}
.tool-symbol em {
  color: #fff;
}
.tool-inner .home-kicker {
  color: var(--home-yellow);
}
.tool-inner h2 {
  font-size: 28px;
  margin: 0;
  line-height: 1.2;
}
.tool-inner p:not(.home-kicker) {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}
.tool-inner .home-button {
  background: #fff;
  border-color: #fff;
  color: var(--home-blue);
}
.tool-inner .home-button:hover {
  background: var(--home-yellow);
  border-color: var(--home-yellow);
}
.tool-inner :focus-visible {
  outline-color: var(--home-yellow);
}
.culture-section {
  padding-block: 56px;
}
.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.culture-story {
  display: flex;
  flex-direction: column;
  padding-top: 15px;
  border-top: 3px solid var(--home-blue);
}
.culture-story:nth-child(2) {
  border-color: var(--home-rose);
}
.culture-story:nth-child(3) {
  border-color: var(--gold);
}
.story-label {
  color: var(--muted);
  font-size: 12px;
}
.culture-story h3 {
  font-family: var(--reading-font);
  font-size: 32px;
  line-height: 1.2;
  margin: 12px 0;
}
.culture-story p {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 16px;
  flex: 1;
}
.newsletter-band {
  background: var(--home-soft);
  border-block: 1px solid var(--line);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-block: 32px;
}
.newsletter-inner h2 {
  font-size: 32px;
  line-height: 1.2;
  margin: 0;
}
.home-newsletter > label {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}
.home-newsletter-fields {
  display: flex;
  gap: 8px;
}
.home-newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  padding: 10px 12px;
  font-size: 14px;
}
.home-newsletter p {
  color: var(--muted);
  font-size: 11px;
  margin: 8px 0 0;
}
.learning-home .home-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding-block: 30px;
  border: 0;
  font-size: 11px;
}
.footer-brand {
  font-family: var(--display-font);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}
.footer-brand span {
  display: block;
  font:
    italic 24px 'Newsreader',
    serif;
  color: var(--home-accent);
  margin-top: 8px;
}
.home-footer > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.home-footer > div a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  text-decoration: none;
}
.home-footer > div a:hover {
  text-decoration: underline;
}
.home-footer > div svg {
  width: 12px;
  height: 12px;
}
.home-footer small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 10px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@keyframes home-arrive {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .home-masthead,
  .daily-layout {
    animation: home-arrive 0.45s ease-out both;
  }
  .daily-layout {
    animation-delay: 0.08s;
  }
}
@media (max-width: 980px) {
  .daily-layout {
    gap: 32px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }
  .quiz-sentence {
    font-size: 36px;
  }
  .lesson-tile {
    padding-inline: 16px;
  }
  .lesson-tile h3 {
    font-size: 23px;
  }
  .phrase-strip {
    grid-template-columns: 170px minmax(0, 1fr) auto;
    gap: 16px;
  }
  .phrase-copy > p {
    font-size: 25px;
  }
}
@media (max-width: 760px) {
  .learning-home .shell {
    width: calc(100% - 40px);
  }
  .home-masthead {
    padding-block: 28px 24px;
    align-items: start;
  }
  .home-masthead h1 {
    font-size: 48px;
  }
  .home-date {
    font-size: 10px;
  }
  .home-date > span {
    display: none;
  }
  .daily-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-block: 25px;
  }
  .daily-study h2 {
    font-size: 26px;
    margin-top: 18px;
  }
  .quiz-sentence {
    font-size: 36px;
    line-height: 48px;
    background-size: 100% 48px;
    background-image: repeating-linear-gradient(
      to bottom,
      transparent 0 47px,
      var(--home-soft) 47px 48px
    );
  }
  .quiz-feedback {
    min-height: 54px;
  }
  .daily-aside {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .paris-feature img {
    aspect-ratio: 2 / 1;
  }
  .paris-caption h3 {
    font-size: 22px;
  }
  .paris-caption > svg {
    display: none;
  }
  .weekly-activity {
    border: 0;
    margin: 0;
    padding: 0;
  }
  .week-days {
    gap: 3px;
    margin-top: 18px;
  }
  .phrase-strip {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-block: 24px;
  }
  .phrase-label {
    grid-column: 1 / -1;
    grid-template-columns: 24px auto 1fr;
    align-items: center;
  }
  .phrase-label svg {
    grid-row: auto;
  }
  .phrase-label > span {
    text-align: right;
  }
  .phrase-copy > p {
    font-size: 27px;
  }
  .lesson-section,
  .culture-section {
    padding-top: 32px;
  }
  .home-section-heading h2 {
    font-size: 30px;
  }
  .home-section-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .lesson-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .discovery-filters {
    gap: 10px;
  }
  .level-select > span {
    display: none;
  }
  .level-select select {
    min-width: 0;
    max-width: 145px;
    padding-inline: 6px;
    font-size: 13px;
  }
  .tool-inner {
    grid-template-columns: 48px 1fr;
    gap: 15px;
  }
  .tool-symbol {
    font-size: 22px;
  }
  .tool-inner h2 {
    font-size: 28px;
  }
  .tool-inner .home-button {
    grid-column: 2;
    justify-self: start;
  }
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .culture-story h3 {
    margin-block: 8px;
  }
  .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .newsletter-inner h2 {
    font-size: 30px;
  }
  .learning-home .home-footer {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .home-masthead {
    display: block;
  }
  .home-masthead h1 {
    font-size: 40px;
  }
  .home-date {
    margin-top: 12px;
    text-align: left;
    padding: 0 0 0 10px;
  }
  .home-subtitle {
    font-size: 14px;
  }
  .daily-study {
    padding-left: 16px;
  }
  .quiz-sentence {
    font-size: 32px;
  }
  .discovery-topline {
    flex-wrap: wrap;
    gap: 8px;
  }
  .home-segments {
    gap: 20px;
  }
  .home-segments button {
    font-size: 13px;
    white-space: nowrap;
  }
  .learning-home .study-list-toggle {
    gap: 7px;
    padding-inline: 10px;
    font-size: 13px;
    white-space: nowrap;
  }
  .daily-aside {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .paris-feature {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }
  .paris-feature img {
    aspect-ratio: 1 / 1;
  }
  .paris-caption {
    padding: 0;
  }
  .weekly-activity {
    border-top: 1px solid var(--line);
    padding-top: 14px;
  }
  .week-days {
    margin-top: 10px;
  }
  .phrase-copy > p {
    font-size: 26px;
  }
  .phrase-actions {
    flex-direction: column;
  }
  .lesson-grid {
    grid-template-columns: 1fr;
  }
  .lesson-tile h3 {
    font-size: 27px;
  }
  .lesson-description {
    font-size: 14px;
  }
  .discovery-filters {
    grid-template-columns: 1fr;
  }
  .lesson-search {
    padding-inline: 9px;
    gap: 6px;
  }
  .lesson-search input {
    font-size: 16px;
  }
  .level-select > span {
    display: inline;
  }
  .level-select select {
    max-width: none;
    flex: 1;
    min-width: 0;
    font-size: 16px;
  }
  .home-newsletter-fields {
    flex-wrap: wrap;
  }
  .home-newsletter input {
    min-height: 44px;
    flex-basis: 180px;
    font-size: 16px;
  }
  .home-footer > div {
    gap: 16px;
  }
}
