/* ============================================================
   Paula Righetti – Brand Consultant | Berlin
   Shared Stylesheet
   Fonts: Space Grotesk (headings), DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:    #2b3bee;
  --orange:  #e8652a;
  --dark:    #131720;
  --bg:      #f9fafb;
  --white:   #ffffff;
  --gray:    #6b7280;
  --light:   #f3f4f6;
  --border:  #e5e7eb;
  --badge-bg:#eeeffd;
  --badge-c: #4a55d4;
  --radius:  14px;
  --radius-sm: 8px;
  --shadow:  0 1px 3px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.10);
  --nav-h:   72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 14px;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  padding: 16px 32px;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  border: none;
}
.btn:hover { opacity: .85; transform: translateY(-2px); }

.btn-dark  { background: var(--dark); color: var(--white); }
.btn-blue  { background: var(--blue); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--dark);
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 500;
}
.btn-ghost:hover { opacity: .65; transform: none; }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}

/* Text underline CTA — secondary hero button */
.btn-underline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 2px solid var(--dark);
  padding-bottom: 3px;
  background: none;
  cursor: pointer;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.btn-underline:hover { color: var(--blue); border-color: var(--blue); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(249,250,251,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  color: var(--gray);
  transition: color .2s;
}
.nav-links a:hover { color: var(--dark); }
.nav-links .btn-blue {
  padding: 9px 22px;
  font-size: 14px;
  margin-left: 8px;
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: transform .3s, opacity .3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 24px 40px;
  z-index: 99;
  flex-direction: column;
  gap: 20px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 16px;
  color: var(--dark);
  font-weight: 500;
}
.nav-drawer .btn-blue {
  align-self: flex-start;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Background blobs */
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(43,59,238,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 100px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(43,59,238,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: clamp(52px, 7.5vw, 96px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero h1 .blue { color: var(--blue); }

.hero-subtitle {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1280px;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
  display: block;
}

/* ── Section Layouts ─────────────────────────────────────── */
.section {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--dark);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--gray);
  max-width: 540px;
}

/* ── Services ────────────────────────────────────────────── */
#services {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.services-intro {
  font-size: 18px;
  color: var(--gray);
  max-width: 620px;
  margin-bottom: 60px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--badge-bg);
  color: var(--badge-c);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 4px;
}
.service-card .service-sub {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

.service-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #8b97f5);
  border-radius: 2px;
  margin-bottom: 24px;
}

.service-meta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.service-who {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Accordion */
.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
}
.accordion-btn .chevron {
  transition: transform .25s;
  font-size: 16px;
}
.accordion-btn.open .chevron { transform: rotate(180deg); }

.accordion-body {
  display: none;
  padding-top: 16px;
}
.accordion-body.open { display: block; }
.accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.accordion-body li {
  font-size: 15px;
  color: var(--gray);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.accordion-body li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--blue);
}

/* Expert topics for Workshop card */
.expert-topics {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.expert-topics-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 12px;
}
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.topic-tag {
  font-size: 12px;
  background: var(--badge-bg);
  color: var(--badge-c);
  border-radius: 999px;
  padding: 4px 12px;
}

/* ── Work Grid ───────────────────────────────────────────── */
#work {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

/* Staggered vertical offsets — mimics the original kinetic grid */
.work-grid .project-card:nth-child(3n+2) { margin-top: 48px; }
.work-grid .project-card:nth-child(3n+3) { margin-top: -20px; }

.project-card {
  display: block;
  background: none;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform .3s;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-6px);
}

.project-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--light);
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .4s ease, filter .3s;
}
.project-card:hover .project-card-img {
  transform: scale(1.02);
}

.project-card-body {
  padding: 16px 0 0;
}
.project-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 6px;
}
.project-card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.project-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.project-card-year {
  font-size: 13px;
  color: var(--gray);
  flex-shrink: 0;
}

/* ── About ───────────────────────────────────────────────── */
#about {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 28px;
}

.about-content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-content p a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-cta { margin-top: 36px; }

.about-sidebar h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.expertise-tag {
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  color: var(--dark);
  font-weight: 500;
}

/* ── Contact ─────────────────────────────────────────────── */
#contact {
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-content h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 16px;
}
.contact-content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow .2s, transform .2s;
}
.contact-link:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.contact-link-icon {
  font-size: 20px;
  width: 44px; height: 44px;
  background: var(--badge-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-link-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 4px;
}
.contact-link-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.footer-copy {
  font-size: 13px;
  color: var(--gray);
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--gray);
  transition: color .2s;
}
.footer-links a:hover { color: var(--dark); }

.back-to-top {
  background: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}
.back-to-top:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ═══════════════════════════════════════════════════════════
   PROJECT PAGE STYLES
═══════════════════════════════════════════════════════════ */

.project-hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 60px;
  padding-left: 40px;
  padding-right: 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 40px;
  transition: color .2s;
}
.back-link:hover { color: var(--dark); }
.back-link::before { content: '←'; }

.project-meta {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.project-meta-dot { color: var(--border); }

.project-title {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.project-tagline {
  font-size: 20px;
  color: var(--gray);
  max-width: 680px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.project-hero-img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 80px;
}

/* Project content body */
.project-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px 80px;
}

.project-section {
  margin-bottom: 64px;
}
.project-section h3 {
  font-size: 22px;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.project-section p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.project-section p:last-child { margin-bottom: 0; }

/* Numbered steps */
.project-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--badge-c);
  background: var(--badge-bg);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 {
  font-size: 17px;
  font-family: 'Space Grotesk', sans-serif;
  color: var(--dark);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* Insight/Strategy callouts */
.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}
.callout {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.callout-icon { font-size: 22px; margin-bottom: 12px; }
.callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.callout p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.result-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 8px;
}
.result-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* Image gallery */
.project-gallery {
  display: grid;
  gap: 20px;
  margin-bottom: 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 80px;
}
.project-gallery.cols-2 { grid-template-columns: 1fr 1fr; }
.project-gallery.cols-1 { grid-template-columns: 1fr; }
.project-gallery img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border);
}

/* Video embed */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  margin: 0 auto 32px;
  max-width: 760px;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: var(--radius);
}

/* Native video */
.project-video {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 40px;
  max-width: 1280px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Next project nav */
.next-project {
  border-top: 1px solid var(--border);
  padding: 64px 40px;
  text-align: center;
  max-width: 1280px;
  margin: 0 auto;
}
.next-project-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.next-project-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  transition: color .2s;
}
.next-project-link:hover { color: var(--blue); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .callout-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-drawer { padding: 24px 20px; }

  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero h1 { font-size: clamp(40px, 11vw, 64px); }
  .hero-stats { justify-content: flex-start; gap: 32px; }
  .stat-num { font-size: 40px; }
  .work-grid .project-card:nth-child(3n+2),
  .work-grid .project-card:nth-child(3n+3) { margin-top: 0; }

  #services, #work, #about, #contact { padding: 70px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }

  .project-hero { padding: calc(var(--nav-h) + 32px) 20px 40px; }
  .project-body { padding: 0 20px 60px; }
  .project-steps { padding: 0 20px; }
  .callout-grid { padding: 0 20px; }
  .results-grid { padding: 0 20px; }
  .project-gallery { padding: 0 20px; }
  .next-project { padding: 48px 20px; }

  footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .work-grid { grid-template-columns: 1fr; }
  .project-gallery.cols-2 { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
