/* ═══════════════════════════════════════════════
   VentureSEA — Expert Call Page Styles
   Light theme — aligned with expansion-needs styles.css
   ═══════════════════════════════════════════════ */

:root {
  --navy:         #1D3260;
  --navy-deep:    #142449;
  --navy-light:   #243d78;
  --blue-mid:     #045DE9;
  --blue-bright:  #09C6F9;
  --orange:       #FF9122;
  --orange-light: #FFBA49;
  --orange-tint:  #FFF4E6;
  --blue-tint:    #E8EFFE;

  --ink:          #1D3260;
  --paper:        #ffffff;
  --canvas:       #f6f8fc;
  --line:         #e6eaf2;
  --line-strong:  #d3d9e6;

  --slate-50:  #f7f9fc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;

  --emerald-50:  #ecfaf3;
  --emerald-600: #129365;

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-xs: 0 1px 2px rgba(15,23,42,0.04);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 12px rgba(15,23,42,0.07), 0 2px 4px rgba(15,23,42,0.04);
  --shadow-md: 0 12px 28px rgba(15,23,42,0.09), 0 4px 10px rgba(15,23,42,0.05);
  --shadow-lg: 0 24px 48px rgba(15,23,42,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { background: var(--canvas); }

body {
  font-family: 'Poppins', ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(9,198,249,0.05) 0%, transparent 60%),
    radial-gradient(50% 40% at 100% 100%, rgba(255,145,34,0.04) 0%, transparent 70%),
    var(--canvas);
  background-attachment: fixed;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 32px;
  height: 64px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; object-fit: contain; }
.logo-text { font-size: 18px; font-weight: 700; }
.logo-venture { color: var(--navy); }
.logo-sea { color: var(--orange); }
.nav-center {
  display: flex; align-items: center; gap: 4px;
}
.nav-center a {
  font-size: 13px; font-weight: 600; color: var(--slate-500);
  text-decoration: none; padding: 7px 14px; border-radius: var(--radius-sm);
  transition: all .2s;
}
.nav-center a:hover { background: var(--slate-100); color: var(--ink); }
.nav-center a.active { color: var(--navy); font-weight: 700; }
.nav-right-side {
  display: flex; align-items: center; gap: 8px; justify-content: flex-end;
}
.nav-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--blue-mid); background: var(--blue-tint);
  border: 1px solid rgba(4,93,233,0.2); border-radius: 6px; padding: 3px 9px;
}
.nav-back {
  font-size: 13px; font-weight: 600; color: var(--slate-500);
  text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s;
}
.nav-back:hover { color: var(--orange); }
#nav-signin-btn {
  font-size: 12px; font-weight: 700; color: #1D3260; text-decoration: none;
  padding: 7px 14px; background: linear-gradient(135deg,var(--orange),var(--orange-light));
  border-radius: var(--radius-sm); transition: opacity .15s;
}
#nav-signin-btn:hover { opacity: .9; }
#nav-advisor-signin-btn {
  font-size: 12px; font-weight: 600; color: var(--slate-600); text-decoration: none;
  padding: 7px 14px; border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: all .2s; background: var(--paper);
}
#nav-advisor-signin-btn:hover { border-color: var(--slate-400); color: var(--ink); }

/* ── HERO ── */
.hero {
  position: relative; z-index: 1;
  padding: 112px 48px 48px;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); border: 1px solid rgba(255,145,34,0.3);
  background: var(--orange-tint); padding: 6px 16px; border-radius: 30px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(28px, 4.5vw, 52px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; color: var(--ink);
}
.hero-title .accent   { color: var(--blue-mid); }
.hero-title .accent-o { color: var(--orange); }
.hero-sub {
  font-size: 16px; color: var(--slate-500);
  max-width: 560px; margin: 0 auto 36px; line-height: 1.7;
}

/* ── SEARCH ── */
.search-wrap { position: relative; max-width: 520px; margin: 0 auto 20px; }
.search-icon {
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%); color: var(--slate-400); pointer-events: none;
}
.search-input {
  width: 100%; background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 14px 18px 14px 48px;
  font-family: 'Poppins', sans-serif; font-size: 14px; color: var(--ink);
  outline: none; transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.search-input::placeholder { color: var(--slate-400); }
.search-input:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(4,93,233,0.1);
}

/* ── STATS BAR ── */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 40px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num   { font-size: 22px; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 11px; color: var(--slate-400); text-transform: uppercase; letter-spacing: 1px; }
.stat-div   { width: 1px; height: 30px; background: var(--line-strong); }

/* ── FILTERS ── */
.filter-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: center; margin-bottom: 44px;
}
.filter-chip {
  font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 600;
  padding: 7px 16px; border-radius: 30px;
  border: 1px solid var(--line-strong); background: var(--paper);
  color: var(--slate-500); cursor: pointer; transition: all .2s;
  box-shadow: var(--shadow-xs);
}
.filter-chip:hover  { border-color: rgba(255,145,34,0.4); color: var(--ink); background: var(--orange-tint); }
.filter-chip.active {
  background: linear-gradient(135deg,var(--orange),var(--orange-light));
  border-color: transparent; color: #fff; font-weight: 700;
  box-shadow: 0 4px 12px rgba(255,145,34,0.25);
}

/* ── MAIN LAYOUT ── */
.main-content {
  position: relative; z-index: 1;
  padding: 0 48px 80px; max-width: 1320px; margin: 0 auto;
}

/* ── RESULTS COUNT ── */
.results-info { font-size: 13px; color: var(--slate-500); margin-bottom: 24px; }
.results-info span { color: var(--blue-mid); font-weight: 600; }

/* ── ADVISOR GRID ── */
.advisor-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }

/* ── ADVISOR CARD ── */
.advisor-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 28px;
  display: flex; flex-direction: column; gap: 0;
  cursor: pointer; transition: transform .2s, border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.advisor-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,145,34,0.3);
  box-shadow: var(--shadow-md);
}
.card-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.advisor-avatar {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; flex-shrink: 0; letter-spacing: -0.5px;
}
.advisor-name  { font-size: 15px; font-weight: 700; margin-bottom: 2px; line-height: 1.3; color: var(--ink); }
.advisor-title { font-size: 12px; color: var(--slate-500); line-height: 1.4; }
.advisor-org   { font-size: 12px; color: var(--blue-mid); font-weight: 600; margin-top: 2px; }
.past-orgs { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.past-org-chip {
  font-size: 10px; font-weight: 600; padding: 3px 9px; border-radius: 20px;
  background: var(--slate-100); border: 1px solid var(--line-strong); color: var(--slate-600);
}
.past-org-label {
  font-size: 10px; color: var(--slate-400); font-weight: 500;
  display: flex; align-items: center; gap: 5px;
}
.advisor-bio {
  font-size: 12.5px; color: var(--slate-600); line-height: 1.65; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.expertise-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 20px; }
.expertise-tag  { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.card-footer { margin-top: auto; display: flex; gap: 8px; }
.btn-view {
  flex: 1; padding: 10px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
  background: linear-gradient(135deg,var(--orange),var(--orange-light));
  color: #fff; transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(255,145,34,0.2);
}
.btn-view:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255,145,34,0.3); }

/* ── MODAL OVERLAY ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(15,23,42,0.5); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 0;
  max-width: 580px; width: 100%; max-height: 88vh;
  overflow-y: auto; position: relative;
  animation: modalIn .25s ease; box-shadow: var(--shadow-lg);
}
.modal-top-bar {
  height: 4px; border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  background: linear-gradient(135deg,var(--orange),var(--orange-light));
}
.modal-body { padding: 32px; }
.modal-header {
  display: flex; align-items: flex-start; gap: 20px; margin-bottom: 0;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.modal-avatar {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; flex-shrink: 0; letter-spacing: -1px;
}
.modal-name    { font-size: 22px; font-weight: 800; color: var(--ink); margin-bottom: 4px; line-height: 1.2; }
.modal-title   { font-size: 13px; color: var(--slate-500); margin-bottom: 4px; }
.modal-org     { font-size: 14px; color: var(--blue-mid); font-weight: 700; }
.modal-location { font-size: 12px; color: var(--slate-400); margin-top: 6px; }
.modal-section-title {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--slate-400); margin-bottom: 10px; margin-top: 20px;
}
.modal-bio {
  font-size: 13px; color: var(--slate-600); line-height: 1.75;
  background: var(--slate-50); border-radius: var(--radius);
  padding: 14px 16px; border: 1px solid var(--line);
}
.modal-expertise-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-past-orgs      { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-past-org-chip {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px;
  background: var(--slate-100); border: 1px solid var(--line-strong); color: var(--slate-600);
}
.modal-actions {
  display: flex; gap: 10px; margin-top: 24px; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--line);
}

/* ── Bundle-generated modal classes ── */
.modal-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--slate-400); margin-top: 20px; margin-bottom: 10px; display: block;
}
.modal-bio {
  font-size: 13px; color: var(--slate-600); line-height: 1.75;
  background: var(--slate-50); border-radius: var(--radius);
  padding: 14px 16px; border: 1px solid var(--line);
}
.modal-past-orgs, .modal-past-chip-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-past-chip {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px;
  background: var(--slate-100); border: 1px solid var(--line-strong);
  color: var(--slate-600); display: inline-block;
}
.modal-expertise { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-exp-tag {
  font-size: 11px; font-weight: 600; padding: 5px 12px;
  border-radius: 20px; display: inline-block;
}
.modal-countries { display: flex; flex-wrap: wrap; gap: 6px; }
.modal-country {
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px;
  background: var(--blue-tint); border: 1px solid rgba(4,93,233,.15);
  color: var(--blue-mid); display: inline-block;
}
.modal-btn-book {
  flex: 1; padding: 13px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
  background: linear-gradient(135deg,var(--orange),var(--orange-light));
  color: #fff; box-shadow: 0 4px 14px rgba(255,145,34,0.25);
  transition: opacity .15s;
}
.modal-btn-book:hover { opacity: .9; }
.btn-book-modal {
  flex: 1; padding: 13px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
  background: linear-gradient(135deg,var(--orange),var(--orange-light));
  color: #fff; box-shadow: 0 4px 14px rgba(255,145,34,0.25);
  transition: opacity .15s;
}
.btn-book-modal:hover { opacity: .9; }
.modal-btn-linkedin {
  padding: 13px 18px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; background: var(--paper);
  border: 1px solid var(--line-strong); color: var(--slate-700);
  display: flex; align-items: center; gap: 6px; text-decoration: none;
  transition: all .15s;
}
.modal-btn-linkedin:hover { border-color: var(--blue-mid); color: var(--blue-mid); background: var(--blue-tint); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  background: var(--slate-100); border: none; color: var(--slate-500);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: all .2s;
}
.modal-close:hover { background: var(--orange-tint); color: var(--orange); }

/* ── BOOK MODAL ── */
.book-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(15,23,42,0.5); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 24px;
}
.book-modal-overlay.open { display: flex; }
.book-modal-box {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-xl); padding: 0;
  max-width: 480px; width: 100%;
  animation: modalIn .25s ease; box-shadow: var(--shadow-lg);
}
.book-modal-body  { padding: 36px; }
.book-modal-icon  { font-size: 40px; margin-bottom: 16px; }
.book-modal-title { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.book-modal-sub   { font-size: 13px; color: var(--slate-500); line-height: 1.6; margin-bottom: 28px; }
.book-form-field  { margin-bottom: 16px; }
.book-form-field label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--slate-600); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.8px;
}
.book-form-field input,
.book-form-field textarea {
  width: 100%; background: var(--paper);
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
  padding: 11px 14px; font-family: 'Poppins', sans-serif;
  font-size: 13px; color: var(--ink); outline: none; resize: none;
  transition: border-color .2s, box-shadow .2s;
}
.book-form-field input:focus,
.book-form-field textarea:focus {
  border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(4,93,233,0.1);
}
.book-form-field input::placeholder,
.book-form-field textarea::placeholder { color: var(--slate-400); }
.book-actions { display: flex; gap: 10px; }
.btn-send-request {
  flex: 1; padding: 13px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700;
  cursor: pointer; border: none;
  background: linear-gradient(135deg,var(--orange),var(--orange-light));
  color: #fff; box-shadow: 0 4px 14px rgba(255,145,34,0.25);
}
.btn-cancel-book {
  padding: 13px 20px; border-radius: var(--radius);
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600;
  cursor: pointer; border: 1px solid var(--line-strong);
  background: var(--paper); color: var(--slate-600); transition: all .15s;
}
.btn-cancel-book:hover { background: var(--slate-100); }

/* ── AUTH GATE ── */
#auth-gate {
  background: rgba(246,248,252,0.92) !important;
  backdrop-filter: blur(8px);
}
#auth-gate div[style*="color:white"] { color: var(--ink) !important; }
#auth-gate div[style*="rgba(255,255,255,0.6)"] { color: var(--slate-500) !important; }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 400;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 20px;
  font-size: 13px; font-weight: 600; color: var(--emerald-600);
  display: flex; align-items: center; gap: 10px;
  transform: translateY(80px); opacity: 0;
  transition: all .3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--shadow-md);
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ── FOOTER ── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; background: var(--paper);
}
.footer-copy { font-size: 12px; color: var(--slate-400); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 12px; color: var(--slate-400); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes modalIn { from { opacity: 0; transform: scale(.96) translateY(8px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .55s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .18s; }
.delay-3 { animation-delay: .26s; }

/* ── JOURNEY STEPS ── */
.journey-steps {
  position: relative; z-index: 1; display: flex; gap: 0;
  max-width: 1100px; margin: 0 auto; padding: 48px 24px 60px;
}
.journey-step {
  flex: 1; padding: 24px 20px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); margin: 0 6px;
  background: var(--paper); transition: border-color .2s, box-shadow .2s;
  box-shadow: var(--shadow-xs);
}
.journey-step.clickable { cursor: pointer; }
.journey-step.clickable:hover {
  border-color: rgba(4,93,233,0.25); box-shadow: var(--shadow);
  background: var(--blue-tint);
}
.journey-step.active {
  border-color: rgba(255,145,34,0.35); background: var(--orange-tint);
  box-shadow: var(--shadow-sm);
}
.step-num   { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.step-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.step-desc  { font-size: 13px; color: var(--slate-500); line-height: 1.6; }
.step-soon  { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; color: var(--blue-mid); }
.journey-step.active .step-soon { color: var(--orange); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .advisor-grid { grid-template-columns: repeat(2,1fr); }
  .main-content { padding: 0 24px 80px; }
  .hero         { padding: 100px 24px 36px; }
  nav           { padding: 0 24px; }
}
@media (max-width: 700px) {
  .journey-steps { flex-wrap: wrap; padding: 32px 16px 40px; }
  .journey-step  { flex: 1 1 calc(50% - 16px); min-width: 140px; margin: 4px; }
}
@media (max-width: 600px) {
  nav           { padding: 0 16px; }
  .nav-tag      { display: none; }
  .hero         { padding: 88px 16px 24px; }
  .hero-sub     { font-size: 14px; margin-bottom: 24px; }
  .search-wrap  { padding: 0 4px; }
  .stats-bar    { gap: 16px; }
  .stat-div     { display: none; }
  .filter-row   {
    flex-wrap: nowrap; overflow-x: auto;
    justify-content: flex-start; padding-bottom: 8px;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .filter-row::-webkit-scrollbar { display: none; }
  .filter-chip  { flex-shrink: 0; }
  .advisor-grid { grid-template-columns: 1fr; gap: 14px; }
  .main-content { padding: 0 16px 60px; }
  .advisor-card { padding: 20px 18px; }
  .modal-overlay,
  .book-modal-overlay { padding: 12px; }
  .modal-box    { max-height: 92vh; border-radius: 18px; }
  .modal-body   { padding: 24px 20px; }
  .modal-header { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .modal-avatar { width: 60px; height: 60px; font-size: 18px; }
  .modal-name   { font-size: 18px; }
  .modal-actions { flex-direction: column; }
  .modal-btn-linkedin { justify-content: center; }
  .book-modal-box  { border-radius: 18px; }
  .book-modal-body { padding: 24px 20px; }
  .book-actions    { flex-direction: column; }
  .btn-cancel-book { text-align: center; }
  .toast { bottom: 16px; right: 16px; left: 16px; font-size: 12px; }
  footer { flex-direction: column; text-align: center; padding: 20px 16px; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}
