:root {
  --paper: #fff8f1;
  --cream: #f7eadc;
  --sage: #7a8d74;
  --sage-dark: #566b55;
  --coral: #e96f4f;
  --coral-dark: #c9573c;
  --sun: #f3b65d;
  --ink: #303236;
  --muted: #666b68;
  --line: rgba(48, 50, 54, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(70, 78, 62, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 248, 241, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--coral);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-action,
.button.primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(233, 111, 79, 0.26);
}

.button.secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--sage-dark);
}

.button:hover,
.header-action:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 78px);
  min-height: calc(100vh - 97px);
  padding: clamp(42px, 6vw, 82px) clamp(18px, 5vw, 72px) 34px;
  overflow: hidden;
}

.enrollment-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  margin: clamp(18px, 3vw, 34px) clamp(18px, 5vw, 72px) 0;
  padding: clamp(30px, 5vw, 56px);
  border: 1px solid rgba(233, 111, 79, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(122, 141, 116, 0.22), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(233, 111, 79, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #fff2e8);
  box-shadow: var(--shadow);
}

.enrollment-visual h2 {
  max-width: 820px;
  margin-bottom: 16px;
  font-size: clamp(38px, 6vw, 72px);
}

.enrollment-visual p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.enrollment-badge {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 28px;
  border: 2px dashed rgba(122, 141, 116, 0.5);
  border-radius: 50%;
  background: var(--paper);
  text-align: center;
}

.enrollment-badge span {
  color: var(--coral);
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.enrollment-badge strong {
  color: var(--sage-dark);
  font-size: 26px;
}

.enrollment-badge em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.08;
}

.hero-text {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  border: 10px solid rgba(233, 111, 79, 0.16);
  border-radius: 42% 58% 46% 54% / 54% 42% 58% 46%;
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.hero-note {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  width: min(250px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(86, 107, 85, 0.18);
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.95);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.hero-note strong {
  color: var(--sage-dark);
  font-size: 28px;
}

.hero-note span {
  color: var(--muted);
  font-weight: 800;
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.intro-strip div {
  display: grid;
  gap: 6px;
  padding: 26px;
  background: var(--white);
}

.intro-strip strong {
  color: var(--sage-dark);
  font-size: 20px;
}

.intro-strip span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.two-column,
.summer-section,
.career-section,
.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.section-copy,
.contact-section p,
.summer-card p,
.career-section p,
.vision-card p {
  color: var(--muted);
  font-size: 19px;
}

.founder-section {
  padding-top: clamp(58px, 7vw, 92px);
}

.founder-card {
  max-width: 980px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.founder-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.founder-signature {
  margin: 26px 0 0;
  color: var(--sage-dark);
  font-size: 22px;
  font-weight: 900;
}

.founder-signature span {
  color: var(--coral);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-section {
  background: var(--cream);
}

.why-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.why-grid article,
.project-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(58, 66, 56, 0.08);
}

.why-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--sage-dark);
  font-size: 22px;
}

.why-grid p,
.project-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-copy p {
  margin-bottom: 18px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.program-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(58, 66, 56, 0.08);
}

.age-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  background:
    linear-gradient(90deg, var(--coral) 0 6px, transparent 6px),
    radial-gradient(circle at 88% 18%, rgba(243, 182, 93, 0.18), transparent 30%),
    radial-gradient(circle at 14% 88%, rgba(122, 141, 116, 0.14), transparent 32%),
    linear-gradient(145deg, #ffffff, #fff8f1);
}

.age-card div {
  position: relative;
  z-index: 1;
}

.age-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.program-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.age-card ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.age-card li {
  position: relative;
  padding-left: 24px;
  color: var(--sage-dark);
  font-weight: 800;
}

.age-card li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.lessons-section {
  background: var(--white);
}

.news-section {
  background: var(--white);
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.news-feature img {
  width: 100%;
  max-height: 680px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.news-feature h3 {
  font-size: clamp(30px, 4vw, 52px);
}

.news-feature p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
}

.lesson-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.lesson-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(58, 66, 56, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lesson-item::after {
  grid-column: 2;
  width: 28px;
  height: 28px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  content: "›";
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
}

.lesson-item:hover {
  transform: translateY(-2px);
  border-color: rgba(233, 111, 79, 0.38);
}

.lesson-item span {
  font-size: 28px;
  line-height: 1;
}

.lesson-item small {
  display: inline-block;
  margin-left: 2px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.summer-section {
  background: var(--cream);
}

.projects-section {
  background: var(--white);
}

.project-grid {
  grid-template-columns: repeat(4, 1fr);
}

.project-card span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  font-size: 28px;
}

.gallery-section {
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
}

.gallery-photo,
.gallery-placeholder {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(58, 66, 56, 0.08);
}

.gallery-photo.large {
  grid-row: span 2;
  min-height: 456px;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.gallery-photo figcaption,
.gallery-placeholder span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.92);
  color: var(--sage-dark);
  font-weight: 900;
}

.gallery-placeholder {
  background:
    radial-gradient(circle at 82% 18%, rgba(233, 111, 79, 0.18), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(122, 141, 116, 0.18), transparent 34%),
    linear-gradient(135deg, #ffffff, #fff8f1);
}

.instagram-section {
  background: var(--white);
}

.instagram-panel {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(233, 111, 79, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 16%, rgba(191, 64, 159, 0.1), transparent 28%),
    radial-gradient(circle at 14% 88%, rgba(233, 111, 79, 0.14), transparent 34%),
    var(--paper);
  box-shadow: var(--shadow);
}

.instagram-copy strong,
.instagram-handle {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
}

.instagram-handle:hover,
.instagram-handle:focus-visible {
  color: var(--coral-dark);
  text-decoration: underline;
}

.instagram-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.instagram-qr-large {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.instagram-qr-large img {
  width: 210px;
  aspect-ratio: 1;
  border-radius: 8px;
  background: var(--white);
  object-fit: cover;
}

.instagram-qr-large span {
  color: var(--sage-dark);
  font-weight: 900;
}

.social-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.social-gallery article {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(58, 66, 56, 0.08);
}

.social-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.social-gallery strong,
.social-gallery > article > span {
  position: absolute;
  left: 16px;
  max-width: calc(100% - 32px);
}

.social-gallery strong {
  bottom: 48px;
  padding: 8px 11px;
  border-radius: 8px;
  background: rgba(255, 248, 241, 0.94);
  color: var(--sage-dark);
  font-size: 20px;
}

.social-gallery > article > span {
  bottom: 16px;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.social-event-card {
  display: grid;
  align-items: end;
  padding: 22px;
  background:
    radial-gradient(circle at 86% 18%, rgba(122, 141, 116, 0.3), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(233, 111, 79, 0.28), transparent 34%),
    linear-gradient(135deg, #fff8f1, #ffffff);
}

.social-event-card div {
  position: static;
  display: grid;
  gap: 10px;
}

.social-event-card div span,
.social-event-card div strong {
  position: static;
  max-width: none;
  padding: 0;
  background: transparent;
  text-shadow: none;
}

.social-event-card div span {
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.social-event-card div strong {
  color: var(--sage-dark);
  font-size: 28px;
  line-height: 1.08;
}

.page-hero {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 18%, rgba(122, 141, 116, 0.18), transparent 30%),
    radial-gradient(circle at 16% 70%, rgba(233, 111, 79, 0.15), transparent 34%),
    var(--paper);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 6vw, 76px);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 21px;
}

.lesson-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 36px;
}

.lesson-detail-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(58, 66, 56, 0.08);
  scroll-margin-top: 110px;
}

.lesson-detail-card span {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  font-size: 28px;
}

.lesson-detail-card h2 {
  font-size: 30px;
}

.lesson-detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.summer-card,
.vision-card,
.career-form,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.summer-card {
  padding: 28px;
}

.summer-card strong {
  color: var(--sage-dark);
  font-size: 22px;
}

.vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.vision-card {
  padding: clamp(26px, 4vw, 40px);
}

.vision-card h2 {
  font-size: clamp(28px, 3vw, 40px);
}

.quote-band {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 8vw, 110px);
  background: var(--sage-dark);
  color: var(--white);
  text-align: center;
}

.quote-band p {
  max-width: 920px;
  margin: 0 auto 12px;
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.12;
}

.quote-band span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.career-section {
  background: var(--cream);
}

.career-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.career-form label {
  display: grid;
  gap: 7px;
  color: var(--sage-dark);
  font-weight: 900;
}

.career-form input,
.career-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.career-form textarea {
  resize: vertical;
}

.contact-section {
  grid-template-columns: 1fr minmax(320px, 470px);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.map-card {
  display: grid;
  gap: 14px;
  max-width: 620px;
  margin-top: 28px;
}

.map-card iframe {
  width: 100%;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-row {
  display: grid;
  gap: 2px;
  padding: 16px;
  border-radius: 8px;
  background: var(--paper);
}

.instagram-row {
  background:
    linear-gradient(135deg, rgba(233, 111, 79, 0.13), rgba(191, 64, 159, 0.1)),
    var(--paper);
}

.contact-row span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-row strong {
  font-size: 20px;
}

.instagram-qr {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(233, 111, 79, 0.18);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff8f1, #ffffff);
}

.instagram-qr img {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.instagram-qr span {
  display: block;
  margin-bottom: 4px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instagram-qr strong {
  color: var(--sage-dark);
  font-size: 20px;
  line-height: 1.2;
}

.full {
  width: 100%;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.footer a {
  color: var(--coral);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lesson-grid,
  .why-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lesson-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero,
  .enrollment-visual,
  .two-column,
  .summer-section,
  .vision-section,
  .career-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

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

  .enrollment-badge {
    width: min(100%, 320px);
    min-height: 220px;
  }

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

  .instagram-panel,
  .social-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-photo.large {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand-logo {
    width: 82px;
    height: 82px;
  }

  .header-action {
    min-height: 40px;
    padding: 0 16px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero-media,
  .hero-media img {
    min-height: 350px;
  }

  .hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    width: auto;
  }

  .button,
  .program-grid,
  .lesson-grid {
    width: 100%;
  }

  .program-grid,
  .lesson-grid,
  .why-grid,
  .project-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .news-feature {
    grid-template-columns: 1fr;
  }

  .enrollment-visual {
    margin-inline: 16px;
  }

  .enrollment-badge {
    border-radius: 8px;
  }

  .intro-strip {
    margin-inline: 16px;
  }

  .lesson-item p {
    margin-left: 20px;
  }

  .lesson-detail-grid {
    grid-template-columns: 1fr;
  }

  .instagram-qr {
    grid-template-columns: 1fr;
  }

  .instagram-qr img {
    width: min(100%, 240px);
  }

  .map-actions {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
