:root {
  --ink: #1f1f2d;
  --ink-soft: #4d4d5c;
  --paper: #f8f7f2;
  --white: #fffdf8;
  --sage: #696877;
  --deep-green: #2b286b;
  --gold: #f0bf32;
  --gold-light: #ffe69a;
  --line: rgba(43, 40, 107, 0.16);
  --shadow: 0 24px 70px rgba(43, 40, 107, 0.13);
  --sans: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --serif: var(--sans);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: -.01em;
  overflow-wrap: break-word;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button { font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.section { padding: 128px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 1000; padding: 10px 16px;
  background: var(--ink); color: #fff; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent; transition: background .25s, border-color .25s, box-shadow .25s;
}
.site-header.scrolled {
  border-color: rgba(21, 35, 31, .1); background: rgba(255, 253, 248, .94);
  box-shadow: 0 8px 30px rgba(30, 42, 38, .06); backdrop-filter: blur(16px);
}
.header-inner { display: flex; min-height: 90px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; gap: 12px; align-items: center; text-decoration: none; }
.brand-mark { display: grid; width: 54px; height: 54px; place-items: center; }
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong { font-family: var(--serif); font-size: 20px; font-weight: 700; letter-spacing: .04em; }
.brand-copy small { margin-top: 3px; color: var(--sage); font-size: 10px; font-weight: 600; letter-spacing: .2em; }
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a { position: relative; font-size: 15px; font-weight: 600; text-decoration: none; }
.primary-nav a:not(.nav-cta)::after {
  position: absolute; right: 0; bottom: -7px; left: 0; height: 1px; content: "";
  background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 11px 20px; border: 1px solid var(--deep-green); transition: color .2s, background .2s; }
.nav-cta:hover { background: var(--deep-green); color: #fff; }
.menu-button { display: none; padding: 8px; border: 0; background: none; }
.menu-button > span:not(.sr-only) { display: block; width: 24px; height: 1px; margin: 6px 0; background: var(--ink); }

.hero {
  position: relative; min-height: 780px; overflow: hidden; padding: 205px 0 130px;
  background: var(--paper);
}
.hero::before {
  position: absolute; top: 0; left: 6%; width: 1px; height: 100%; content: "";
  background: linear-gradient(transparent, rgba(21,35,31,.12) 18%, rgba(21,35,31,.12) 82%, transparent);
}
.hero-grid { position: relative; z-index: 1; }
.hero-copy { max-width: 980px; }
.eyebrow { margin: 0 0 24px; color: #b98200; font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.7vw, 72px); font-weight: 700; line-height: 1.28; letter-spacing: -.035em; }
.hero h1 em { color: var(--deep-green); font-style: normal; background: linear-gradient(transparent 76%, rgba(240,191,50,.42) 0); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hero-description { max-width: 680px; margin: 32px 0 0; color: var(--ink-soft); font-size: 17px; font-weight: 400; line-height: 1.75; }
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 42px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; text-decoration: none; }
.button-primary { min-width: 166px; padding: 0 28px; background: var(--deep-green); color: #fff; box-shadow: 0 14px 30px rgba(24, 63, 53, .2); transition: transform .2s, box-shadow .2s; }
.button-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 35px rgba(24, 63, 53, .28); }
.button-text { gap: 16px; color: var(--deep-green); }
.button-text span { transition: transform .2s; }
.button-text:hover span { transform: translateX(5px); }
.hero-scroll { position: absolute; bottom: 34px; left: 50%; display: flex; gap: 13px; align-items: center; color: var(--sage); font-size: 9px; font-weight: 700; letter-spacing: .24em; transform: translateX(-50%); }
.hero-scroll span { width: 45px; height: 1px; background: var(--sage); }

.intro { background: var(--white); }
.intro-grid { display: grid; grid-template-columns: 240px 1fr; gap: 70px; }
.section-label { display: flex; gap: 16px; align-items: center; color: var(--sage); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.section-label span { color: #a87400; }
.section-label.light { color: rgba(255,255,255,.78); }
.section-label.light span { color: var(--gold-light); }
.intro-copy .lead { margin: -8px 0 55px; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 42px); font-weight: 600; line-height: 1.45; letter-spacing: -.025em; }
.intro-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; padding-top: 35px; border-top: 1px solid var(--line); }
.intro-details p { margin: 0; color: #4f5552; font-size: 16px; line-height: 1.75; }

.services { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.services::after { position: absolute; right: -150px; bottom: -330px; width: 600px; height: 600px; border: 1px solid rgba(198,154,75,.15); border-radius: 50%; content: ""; }
.section-heading { max-width: 650px; margin-bottom: 65px; }
.section-heading h2, .program-heading h2 { margin: 25px 0 16px; font-family: var(--serif); font-size: clamp(36px, 4vw, 50px); font-weight: 700; line-height: 1.35; letter-spacing: -.03em; }
.section-heading p { margin: 0; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; }
.service-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { position: relative; min-height: 500px; padding: 38px 34px; border: 1px solid rgba(255,255,255,.13); background: rgba(255,255,255,.035); transition: border-color .25s, transform .25s, background .25s; }
.service-card:hover { border-color: rgba(198,154,75,.65); background: rgba(255,255,255,.06); transform: translateY(-7px); }
.service-card.featured { border-top: 3px solid var(--gold); }
.service-number { position: absolute; top: 31px; right: 30px; color: rgba(255,255,255,.55); font-family: var(--serif); font-size: 13px; font-weight: 600; }
.service-icon { position: relative; width: 70px; height: 70px; margin: 35px 0 55px; color: var(--gold-light); }
.icon-exhibition { border: 1px solid currentColor; }
.icon-exhibition span { position: absolute; bottom: 13px; width: 10px; border: 1px solid currentColor; border-bottom: 0; }
.icon-exhibition span:nth-child(1) { left: 12px; height: 22px; }
.icon-exhibition span:nth-child(2) { left: 29px; height: 38px; }
.icon-exhibition span:nth-child(3) { left: 46px; height: 29px; }
.icon-education { border: 1px solid currentColor; border-radius: 50% 50% 5px 5px; }
.icon-education span:first-child { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; border: 1px solid currentColor; border-radius: 50%; }
.icon-education span:last-child { position: absolute; top: 0; left: 34px; width: 1px; height: 70px; background: currentColor; }
.icon-operation span:nth-child(1) { position: absolute; inset: 6px; border: 1px solid currentColor; transform: rotate(45deg); }
.icon-operation span:nth-child(2), .icon-operation span:nth-child(3) { position: absolute; background: currentColor; }
.icon-operation span:nth-child(2) { top: 34px; width: 70px; height: 1px; }
.icon-operation span:nth-child(3) { left: 34px; width: 1px; height: 70px; }
.service-card h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 27px; font-weight: 700; line-height: 1.4; }
.service-card p { min-height: 76px; margin: 0 0 30px; color: rgba(255,255,255,.8); font-size: 16px; line-height: 1.7; }
.service-card ul { margin: 0; padding: 24px 0 0; border-top: 1px solid rgba(255,255,255,.1); list-style: none; }
.service-card li { position: relative; margin: 9px 0; padding-left: 16px; color: rgba(255,255,255,.9); font-size: 15px; line-height: 1.6; }
.service-card li::before { position: absolute; top: .75em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); content: ""; }

.programs { background: var(--paper); }
.program-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }
.program-heading p { margin: 0 0 15px; color: #555d59; font-size: 16px; line-height: 1.7; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.program-card { overflow: hidden; background: var(--white); box-shadow: 0 15px 45px rgba(43,40,107,.08); transition: transform .25s, box-shadow .25s; }
.program-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.program-visual { position: relative; height: 270px; margin: 0; overflow: hidden; background: #e8e6dc; }
.program-visual img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.program-card:hover .program-visual img { transform: scale(1.035); }
.program-visual figcaption { position: absolute; right: 14px; bottom: 14px; padding: 7px 11px; border: 1px solid rgba(255,255,255,.65); background: rgba(43,40,107,.9); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; backdrop-filter: blur(8px); }
.program-body { padding: 28px 28px 32px; }
.program-meta { display: flex; justify-content: space-between; color: #a87400; font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.program-meta span:last-child { color: var(--sage); }
.program-body h3 { margin: 16px 0 12px; font-family: var(--serif); font-size: 22px; font-weight: 700; line-height: 1.45; }
.program-body p { margin: 0; color: #555d59; font-size: 15px; line-height: 1.7; }

.blog { border-top: 1px solid var(--line); background: var(--white); }
.blog-heading { display: grid; grid-template-columns: 1fr .8fr; gap: 90px; align-items: end; margin-bottom: 52px; }
.blog-heading h2 { margin: 25px 0 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 50px); font-weight: 700; line-height: 1.35; letter-spacing: -.03em; }
.blog-intro p { margin: 0 0 22px; color: #555d59; font-size: 16px; line-height: 1.7; }
.blog-all-link { display: inline-flex; gap: 12px; align-items: center; color: var(--deep-green); font-size: 15px; font-weight: 700; text-decoration: none; }
.blog-all-link span { color: var(--gold); font-size: 16px; transition: transform .2s; }
.blog-all-link:hover span { transform: translate(3px, -3px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.blog-card { display: flex; min-height: 300px; flex-direction: column; padding: 32px 30px; background: #fff; color: var(--ink); text-decoration: none; transition: background .25s, transform .25s; }
.blog-card + .blog-card { border-left: 1px solid var(--line); }
.blog-card:hover { position: relative; z-index: 1; background: #fff8e7; transform: translateY(-5px); }
.blog-card-meta { display: flex; gap: 14px; align-items: flex-start; justify-content: space-between; color: var(--sage); font-size: 12px; font-weight: 600; }
.blog-card-meta span { color: #a87400; }
.blog-card-meta time { flex: 0 0 auto; }
.blog-card h3 { margin: 34px 0 30px; font-family: var(--serif); font-size: 21px; font-weight: 700; line-height: 1.55; letter-spacing: -.02em; }
.blog-card-more { display: flex; gap: 9px; align-items: center; margin-top: auto; color: var(--deep-green); font-size: 13px; font-weight: 700; }
.blog-card-more b { color: var(--gold); font-size: 14px; font-weight: 400; }
.blog-status { margin: 18px 0 0; color: var(--sage); font-size: 12px; text-align: right; }

.process { background: var(--white); }
.process-intro { display: grid; grid-template-columns: .9fr 1.05fr 1.05fr; border: 1px solid var(--line); }
.process-promise, .process-custom, .brief-flow { min-height: 440px; padding: 44px 38px; }
.process-promise { background: #f3f2ee; }
.process-promise h2 { margin: 72px 0 30px; font-family: var(--serif); font-size: clamp(34px, 3.5vw, 46px); font-weight: 700; line-height: 1.4; letter-spacing: -.03em; }
.process-promise h2 em { color: var(--deep-green); font-style: normal; }
.process-promise > p { margin: 0; color: #565563; font-size: 16px; line-height: 1.75; }
.process-custom { border-left: 1px solid var(--line); background: #fff; }
.process-kicker { margin: 0 0 24px; color: #a87400; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.process-custom h3 { margin: 0 0 25px; font-family: var(--serif); font-size: 30px; font-weight: 700; line-height: 1.4; letter-spacing: -.025em; }
.process-custom strong { display: block; margin-bottom: 14px; color: var(--deep-green); font-size: 16px; line-height: 1.6; }
.process-custom > p:last-child { margin: 0; color: #595866; font-size: 15px; line-height: 1.75; }
.brief-flow { display: flex; align-items: stretch; flex-direction: column; border-left: 1px solid var(--line); background: #fff; }
.brief-step, .brief-condition { display: grid; min-height: 58px; place-items: center; background: #f1f0ed; color: #3f3e4c; font-size: 15px; font-weight: 700; text-align: center; }
.brief-condition { background: #f6f5f2; }
.brief-connector { width: 1px; height: 24px; margin: 0 auto; border-left: 1px dashed var(--gold); }
.brief-flow ul { display: grid; flex: 1; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; align-content: center; margin: 0; padding: 24px; background: #fff5d9; color: var(--deep-green); list-style: none; }
.brief-flow li { position: relative; padding-left: 12px; font-size: 14px; font-weight: 600; line-height: 1.55; }
.brief-flow li::before { position: absolute; top: .72em; left: 0; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); content: ""; }
.one-stop-block { margin-top: 54px; padding-top: 48px; border-top: 1px solid var(--line); }
.one-stop-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 38px; }
.one-stop-heading h3 { margin: 0; font-family: var(--serif); font-size: clamp(32px, 3.5vw, 43px); font-weight: 700; line-height: 1.4; letter-spacing: -.03em; }
.one-stop-heading > p { margin: 0 0 5px; color: #595866; font-size: 16px; line-height: 1.7; }
.one-stop-steps { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); margin: 0; padding: 0; border: 1px solid var(--line); list-style: none; }
.one-stop-steps li { position: relative; min-height: 168px; padding: 24px 18px; background: #fff; }
.one-stop-steps li:nth-child(n+2):nth-child(-n+6) { background: #fff8e7; }
.one-stop-steps li + li { border-left: 1px solid rgba(240,191,50,.65); }
.one-stop-steps li:not(:last-child)::after { position: absolute; z-index: 2; top: 50%; right: -6px; width: 10px; height: 10px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); background: inherit; content: ""; transform: translateY(-50%) rotate(45deg); }
.one-stop-steps span { display: block; margin-bottom: 25px; color: #a87400; font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.one-stop-steps strong { display: block; min-height: 48px; color: var(--deep-green); font-size: 15px; font-weight: 700; line-height: 1.45; }
.one-stop-steps small { display: block; margin-top: 9px; color: #62616e; font-size: 13px; line-height: 1.6; }

.contact { padding-top: 40px; background: var(--white); }
.contact-card { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; padding: 80px; background: var(--deep-green); color: #fff; }
.contact-card h2 { margin: 0; font-family: var(--serif); font-size: clamp(36px, 4vw, 50px); font-weight: 700; line-height: 1.4; letter-spacing: -.03em; }
.contact-logo { display: block; width: 90px; height: 90px; margin: -18px 0 24px; object-fit: contain; }
.contact-copy { align-self: end; }
.contact .eyebrow { color: var(--gold-light); }
.contact-copy > p { margin: 0 0 36px; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.75; }
.contact-placeholder { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-placeholder span { display: block; margin-bottom: 8px; color: var(--gold-light); font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.contact-links { display: flex; align-items: flex-start; flex-direction: column; gap: 5px; }
.contact-links a, .contact-links strong { color: #fff; font-size: 16px; font-weight: 600; text-decoration: none; }
.contact-links a:hover { color: var(--gold-light); }

.site-footer { padding: 55px 0; background: var(--white); }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; }
.footer-inner strong { font-family: var(--serif); font-size: 19px; font-weight: 700; }
.footer-inner p { margin: 6px 0 0; color: #666b68; font-size: 13px; line-height: 1.6; }
.footer-inner address { margin: 0; color: #555461; font-size: 13px; font-style: normal; line-height: 1.6; }
.footer-note { text-align: right; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (max-width: 980px) {
  .section { padding: 95px 0; }
  .hero { min-height: 720px; padding: 180px 0 110px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card p { min-height: auto; }
  .program-grid { grid-template-columns: repeat(2, 1fr); }
  .program-card:last-child { grid-column: span 2; }
  .blog-heading { gap: 45px; }
  .blog-card { min-height: 280px; padding: 28px 24px; }
  .process-intro { grid-template-columns: 1fr 1fr; }
  .process-promise { grid-row: span 2; min-height: auto; }
  .process-custom, .brief-flow { min-height: 360px; }
  .brief-flow { grid-column: 2; }
  .one-stop-steps { grid-template-columns: repeat(4, 1fr); }
  .one-stop-steps li + li { border-left: 1px solid rgba(240,191,50,.65); }
  .one-stop-steps li:nth-child(5) { border-left: 0; }
  .one-stop-steps li:nth-child(n+5) { border-top: 1px solid rgba(240,191,50,.65); }
  .one-stop-steps li:nth-child(4)::after { display: none; }
  .contact-card { gap: 50px; padding: 60px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 36px, 620px); }
  .section { padding: 78px 0; }
  .header-inner { min-height: 72px; }
  .menu-button { position: relative; z-index: 102; display: block; cursor: pointer; }
  .primary-nav {
    position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; gap: 24px;
    align-items: flex-start; justify-content: center; padding: 70px 42px; background: var(--paper);
    visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .25s, transform .25s, visibility .25s;
  }
  .primary-nav.open { visibility: visible; opacity: 1; transform: none; }
  .primary-nav a { font-family: var(--serif); font-size: 27px; font-weight: 600; }
  .primary-nav .nav-cta { margin-top: 12px; font-family: var(--sans); font-size: 14px; }
  .menu-button[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-button > span { transition: transform .2s, opacity .2s; }
  .hero { padding: 135px 0 75px; }
  .hero h1 { font-size: clamp(38px, 10vw, 52px); line-height: 1.32; }
  .hero-description { font-size: 16px; line-height: 1.7; }
  .hero-scroll { display: none; }
  .intro-grid { display: block; }
  .intro-copy { margin-top: 38px; }
  .intro-copy .lead { margin-bottom: 35px; font-size: 29px; line-height: 1.5; }
  .intro-details { grid-template-columns: 1fr; gap: 20px; }
  .program-heading { display: block; }
  .program-heading p { margin-top: 20px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card:last-child { grid-column: auto; }
  .program-visual { height: 240px; }
  .blog-heading { grid-template-columns: 1fr; gap: 24px; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card { min-height: 230px; }
  .blog-card + .blog-card { border-top: 1px solid var(--line); border-left: 0; }
  .blog-card h3 { margin: 28px 0 24px; }
  .blog-status { text-align: left; }
  .process-intro { grid-template-columns: 1fr; }
  .process-promise, .process-custom, .brief-flow { min-height: auto; padding: 38px 26px; }
  .process-promise { grid-row: auto; }
  .process-promise h2 { margin-top: 45px; }
  .process-custom, .brief-flow { border-top: 1px solid var(--line); border-left: 0; }
  .brief-flow { grid-column: auto; }
  .one-stop-heading { grid-template-columns: 1fr; gap: 22px; }
  .one-stop-steps { grid-template-columns: 1fr; }
  .one-stop-steps li { min-height: auto; padding: 20px 22px 20px 68px; }
  .one-stop-steps li + li, .one-stop-steps li:nth-child(5) { border-top: 1px solid rgba(240,191,50,.65); border-left: 0; }
  .one-stop-steps li:not(:last-child)::after { top: auto; right: auto; bottom: -6px; left: 50%; transform: translateX(-50%) rotate(135deg); }
  .one-stop-steps li:nth-child(4)::after { display: block; }
  .one-stop-steps span { position: absolute; top: 22px; left: 22px; margin: 0; }
  .one-stop-steps strong { min-height: auto; }
  .contact { padding-top: 0; }
  .contact .container { width: 100%; }
  .contact-card { display: block; padding: 60px 26px; }
  .contact-copy { margin-top: 45px; }
  .footer-inner { display: block; }
  .footer-note { margin-top: 28px; text-align: left; }
}

@media (max-width: 420px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .button-primary { width: 100%; }
  .service-card { padding: 32px 25px; }
  .program-meta { gap: 10px; align-items: flex-start; flex-direction: column; }
}
