/* ============================================================
   MIKE PINOTTI HEALTH INSURANCE — SITE STYLESHEET
   Theme: Clean Navy/Cream Professional
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Source+Sans+3:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0f2a5e;
  --navy-mid:    #1a3a7c;
  --navy-light:  #2755a8;
  --cream:       #f5f2eb;
  --cream-dark:  #ede9df;
  --sky:         #dbeafe;
  --sky-mid:     #bfdbfe;
  --gold:        #c8952a;
  --gold-light:  #f5c842;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-soft:   #6b7280;
  --white:       #ffffff;
  --border:      #d4d8e2;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(15,42,94,.10);
  --shadow-lg:   0 12px 48px rgba(15,42,94,.16);
  --transition:  all .22s cubic-bezier(.4,0,.2,1);
  --max:         1180px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Sans 3', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ── PROMO BANNER ── */
.promo-bar {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .3px;
  text-align: center;
  padding: 9px 20px;
  line-height: 1.4;
}
.promo-bar strong { color: var(--gold-light); }

/* ── NAVIGATION ── */
.site-nav {
  background: var(--white);
  border-bottom: 2px solid var(--cream-dark);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(15,42,94,.08);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 0;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  margin-right: 44px;
  flex-shrink: 0;
}
.nav-logo .logo-name {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -.2px;
}
.nav-logo .logo-tag {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 7px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active { color: var(--navy); background: var(--sky); }
.nav-link.active { color: var(--navy-mid); }
.nav-chev {
  font-size: 9px;
  opacity: .5;
  transition: transform .2s;
  line-height: 1;
}
/* ── DROPDOWNS — JS controlled via .open class on .nav-item ── */
.nav-drop {
  position: absolute;
  top: 100%; /* flush — no gap for mouse to fall through */
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--navy-mid);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease;
  z-index: 300;
}
/* Invisible bridge fills the gap so mouse can travel from link → dropdown */
.nav-drop::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.nav-drop a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.nav-drop a:hover {
  color: var(--navy);
  background: var(--sky);
  border-left-color: var(--navy-mid);
  padding-left: 24px;
}
/* JS adds/removes .open */
.nav-item.open > .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-item.open > .nav-link { color: var(--navy); background: var(--sky); }
.nav-item.open > .nav-link .nav-chev { transform: rotate(180deg); }

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.nav-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.2px;
}
.nav-phone a { color: var(--navy); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .2px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--navy); color: var(--white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 18px;
  color: var(--navy);
  margin-left: auto;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .1px;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy-mid); border-color: var(--navy-mid); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-gold  { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover  { background: #b07e22; border-color: #b07e22; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-white:hover { background: var(--cream); border-color: var(--cream); transform: translateY(-1px); }
.btn-sm { padding: 10px 22px; font-size: 13.5px; }

/* ── SECTION LAYOUT ── */
.section { padding: 80px 28px; }
.section-cream  { background: var(--cream); }
.section-navy   { background: var(--navy); }
.section-sky    { background: var(--sky); }
.wrap { max-width: var(--max); margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }
.section-sub {
  font-size: 16.5px;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 44px;
}
.section-sub.light { color: rgba(255,255,255,.75); }

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--cream);
}
.hero-img-wrap {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,42,94,.0) 30%,
    rgba(15,42,94,.65) 70%,
    rgba(15,42,94,.88) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 40px 44px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1260px;
  margin: 0 auto;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 10px;
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.hero-text p {
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,.35);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: 22px 28px;
  color: var(--white);
  text-align: center;
  flex-shrink: 0;
  min-width: 200px;
}
.hero-card .hc-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 6px;
}
.hero-card .hc-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
}
.hero-card .hc-number a { color: var(--white); }
.hero-card .hc-sub {
  font-size: 12px;
  opacity: .7;
  font-weight: 500;
}

/* ── CARDS GRID ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  opacity: 0;
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sky-mid); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  background: var(--sky);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3, .card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.7;
}
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-mid);
  transition: var(--transition);
}
.card .card-link:hover { gap: 8px; color: var(--gold); }

/* ── DIVIDER BANNER ── */
.divider-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  padding: 56px 28px;
  text-align: center;
}
.divider-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 34px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}
.divider-banner p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 24px; }

/* ── TWO-COL LAYOUT ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: .8px;
  text-transform: uppercase;
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--navy-mid);
  box-shadow: 0 0 0 3px rgba(26,58,124,.1);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.form-check input { margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }

/* ── CONTACT INFO ── */
.contact-item { margin-bottom: 28px; }
.contact-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-item p,
.contact-item a {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.contact-item a { color: var(--navy-mid); font-weight: 600; }
.contact-item a:hover { color: var(--gold); text-decoration: underline; }

/* Hours table */
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table tr td {
  padding: 5px 12px 5px 0;
  font-size: 14px;
  color: var(--text-mid);
}
.hours-table tr td:first-child { font-weight: 600; color: var(--navy); min-width: 120px; }
.hours-table tr:nth-child(even) td { color: var(--text-soft); }

/* ── MAP ── */
.map-wrap {
  width: 100%;
  height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 2px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }
.map-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.map-btn:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-1px); }

/* ── SOCIAL ── */
.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}
.social-fb { background: #1877f2; color: #fff; }
.social-fb:hover { background: #1565d8; color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

/* ── SUBSCRIBE ── */
.subscribe-form {
  display: flex;
  max-width: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  font-family: var(--font-body);
  font-size: 14.5px;
  outline: none;
  background: var(--white);
  color: var(--text-dark);
}
.subscribe-form button {
  padding: 14px 22px;
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}
.subscribe-form button:hover { background: #b07e22; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 52px 28px 32px;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto 44px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer-brand .logo-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 260px;
}
.footer-brand .f-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .f-phone a { color: var(--white); }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  margin-bottom: 9px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  text-align: center;
  line-height: 1.8;
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 28px;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .3px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
  font-size: 13.5px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 18px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--transition);
}
.cookie-accept { background: var(--gold); color: var(--white); }
.cookie-accept:hover { background: #b07e22; }
.cookie-decline { background: rgba(255,255,255,.15); color: var(--white); }
.cookie-decline:hover { background: rgba(255,255,255,.25); }

/* ── POPUP MODAL ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,42,94,.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  width: 520px;
  max-width: 95vw;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px) scale(.97);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-img img { width: 100%; height: 200px; object-fit: cover; object-position: center 30%; }
.modal-body { padding: 28px 32px 32px; text-align: center; }
.modal-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-body p { font-size: 14.5px; color: var(--text-soft); margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.modal-close:hover { background: var(--white); transform: scale(1.1); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s cubic-bezier(.4,0,.2,1) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .two-col  { grid-template-columns: 1fr; gap: 40px; }
  .two-col.flip { direction: ltr; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .nav-right .nav-cta { display: none; }
  .hero-content { flex-direction: column; align-items: flex-start; padding: 0 24px 32px; }
  .hero-card { width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: 1; }
}
@media (max-width: 600px) {
  .section { padding: 56px 20px; }
  .cards-3, .cards-2, .cards-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; border-radius: var(--radius); }
  .subscribe-form input { border-radius: var(--radius) var(--radius) 0 0; }
  .subscribe-form button { border-radius: 0 0 var(--radius) var(--radius); }
}
