/* Florida Mobile Health — Main Stylesheet */
:root {
  --terra-50: #f9ede3;
  --terra-100: #f0d0bc;
  --terra-500: #6b2518;
  --terra-700: #4a160e;
  --terra-800: #3c1208;
  --olive-50: #eaf0e4;
  --olive-500: #3a5420;
  --olive-800: #18240d;
  --navy-500: #1a2e4a;
  --navy-700: #101c2a;
  --cream: #f5ede3;
  --amber: #8a6018;
  --text: #1c1a18;
  --text-muted: #5a5850;
  --text-light: #9a9890;
  --border: rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: system-ui,-apple-system,'Segoe UI',sans-serif; color: var(--text); line-height: 1.65; background: #fff; }
h1,h2,h3,h4 { font-family: Georgia,'Times New Roman',serif; font-weight: 400; line-height: 1.22; color: var(--text); }
p { color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }
.section-alt { background: #faf8f4; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 14px; }

/* ── TYPOGRAPHY ── */
.section-label { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 6px; }
.section-title { font-size: clamp(22px,3vw,28px); color: var(--terra-800); margin-bottom: 6px; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 480px; margin-bottom: 32px; line-height: 1.65; }
.italic-sub { font-style: italic; font-size: 13px; color: var(--text-light); margin-top: 2px; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 11px 22px; border-radius: var(--radius); font-size: 14px; font-weight: 500; cursor: pointer; border: none; transition: opacity .15s, transform .1s; text-align: center; }
.btn:hover { opacity: .88; }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--terra-500); color: #fff; }
.btn-outline { background: transparent; color: var(--terra-500); border: 1.5px solid var(--terra-500); }
.btn-olive { background: var(--olive-500); color: #fff; }
.btn-navy { background: var(--navy-500); color: #fff; }
.btn-light { background: var(--cream); color: var(--terra-800); }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-full { width: 100%; display: block; }

/* ── BADGES ── */
.badge { display: inline-block; font-size: 11px; padding: 3px 10px; border-radius: 20px; font-weight: 500; }
.badge-terra { background: var(--terra-50); color: var(--terra-500); }
.badge-olive { background: var(--olive-50); color: var(--olive-500); }
.badge-navy { background: #dce8f5; color: var(--navy-500); }
.badge-featured { background: var(--terra-500); color: #fff; }
.lang-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--terra-500); color: var(--cream); font-size: 12px; padding: 5px 14px; border-radius: 20px; margin-bottom: 16px; }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: .5px solid var(--border); padding: 0 24px; }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav-logo { display: flex; flex-direction: column; }
.nav-logo-main { font-size: 13px; font-weight: 600; letter-spacing: .06em; color: var(--terra-500); font-family: Georgia,serif; }
.nav-logo-sub { font-size: 10px; color: var(--text-light); letter-spacing: .03em; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 13px; color: var(--text-muted); transition: color .15s; }
.nav-links a:hover { color: var(--terra-500); }
.nav-cta { background: var(--terra-500); color: #fff !important; padding: 7px 16px; border-radius: var(--radius); font-size: 13px; }
.nav-cta:hover { opacity: .88; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }
.nav-mobile { display: none; flex-direction: column; padding: 16px 0; border-top: .5px solid var(--border); background: #fff; }
.nav-mobile a { padding: 10px 24px; font-size: 14px; color: var(--text-muted); border-bottom: .5px solid var(--border); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile.open { display: flex; }
.lang-toggle-btn { font-size: 12px; border: .5px solid var(--border); padding: 4px 10px; border-radius: 20px; cursor: pointer; background: none; color: var(--text-muted); }

/* ── HERO ── */
.hero { padding: 64px 0 56px; background: var(--cream); text-align: center; }
.hero h1 { font-size: clamp(28px,4vw,40px); color: var(--terra-800); max-width: 560px; margin: 0 auto 6px; }
.hero-en { font-size: 16px; color: var(--text-light); margin-bottom: 14px; font-family: Georgia,serif; }
.hero-sub { font-size: 15px; color: var(--text-muted); max-width: 480px; margin: 0 auto 24px; line-height: 1.65; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.hero-states { font-size: 12px; color: #9a7a5a; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--terra-500); padding: 13px 24px; display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: #fff; font-size: 12px; }
.trust-item strong { color: #fff; }
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: #f5a08a; flex-shrink: 0; }

/* ── DIABETES BANNER ── */
.diabetes-banner { background: var(--terra-800); padding: 36px 24px; text-align: center; }
.diabetes-banner .section-label { color: #c4856a; }
.diabetes-banner h2 { color: #fff; font-size: clamp(20px,2.5vw,26px); margin-bottom: 8px; }
.diabetes-banner p { color: #c4a090; max-width: 500px; margin: 0 auto 20px; font-size: 14px; }
.tag-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 14px; }
.tag { background: #5a1c0c; color: #f0cfc4; font-size: 11px; padding: 3px 10px; border-radius: 20px; }

/* ── ABOUT PROVIDER ── */
.about-row { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; }
.avatar { width: 72px; height: 72px; border-radius: 50%; background: #e8c4b4; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 600; color: var(--terra-500); flex-shrink: 0; font-family: Georgia,serif; }
.about-creds { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 10px; }

/* ── FAMILIA ── */
.familia { background: var(--olive-500); padding: 44px 24px; text-align: center; }
.familia h2 { color: #fff; font-size: clamp(22px,3vw,30px); margin-bottom: 4px; }
.familia .en { color: #a8c490; font-size: 14px; font-family: Georgia,serif; margin-bottom: 10px; }
.familia p { color: #c0d8a8; max-width: 460px; margin: 0 auto 22px; font-size: 14px; }

/* ── PILLAR CARDS ── */
.pillar-card { background: #fff; border: .5px solid var(--border); border-radius: var(--radius-lg); padding: 20px 16px; text-align: center; }
.pillar-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 20px; }
.pillar-icon.terra { background: var(--terra-50); color: var(--terra-500); }
.pillar-icon.olive { background: var(--olive-50); color: var(--olive-500); }
.pillar-icon.amber { background: #faeeda; color: var(--amber); }
.pillar-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 3px; color: var(--text); font-family: system-ui,sans-serif; }

/* ── SERVICE CARDS ── */
.svc-card { background: #faf8f4; border: .5px solid var(--border); border-radius: var(--radius); padding: 16px; }
.svc-card.featured { border: 2px solid var(--terra-500); background: #fff; }
.svc-card-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; font-size: 16px; }
.svc-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 2px; font-family: system-ui,sans-serif; color: var(--text); }
.svc-card ul li { font-size: 12px; color: var(--text-muted); line-height: 1.8; padding-left: 12px; position: relative; }
.svc-card ul li::before { content: '·'; position: absolute; left: 0; color: var(--terra-500); }

/* ── PROGRAM CARDS ── */
.program-card { background: #fff; border: .5px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; display: flex; flex-direction: column; }
.program-card.featured { border: 2px solid var(--terra-500); }
.program-card .price { font-size: 28px; font-weight: 400; color: var(--terra-500); font-family: Georgia,serif; margin: 8px 0 2px; }
.program-card .duration { font-size: 12px; color: var(--text-light); margin-bottom: 14px; }
.program-card ul { margin-bottom: 20px; flex: 1; }
.program-card ul li { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: flex; gap: 7px; align-items: flex-start; }
.program-card ul li .chk { color: var(--olive-500); font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.program-card h3 { font-size: 17px; font-weight: 500; color: var(--text); margin-bottom: 2px; font-family: system-ui,sans-serif; }

/* ── PRICING TABLE ── */
.pricing-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.pricing-table th { text-align: left; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: var(--text-light); padding: 8px 0; border-bottom: .5px solid var(--border); font-weight: 500; }
.pricing-table td { padding: 12px 0; border-bottom: .5px solid var(--border); vertical-align: top; }
.pricing-table td:last-child { text-align: right; font-weight: 600; color: var(--terra-500); white-space: nowrap; padding-left: 16px; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table .sub { font-size: 12px; color: var(--text-light); font-weight: 400; display: block; margin-top: 2px; }
.pricing-section { margin-bottom: 40px; }
.pricing-section h2 { font-size: 17px; font-weight: 500; font-family: system-ui,sans-serif; color: var(--text); margin-bottom: 16px; padding-bottom: 8px; border-bottom: .5px solid var(--border); }

/* ── VIDEO CARDS ── */
.video-card { background: #fff; border: .5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.video-thumb { height: 120px; display: flex; align-items: center; justify-content: center; position: relative; font-size: 32px; cursor: pointer; transition: filter .2s; }
.video-thumb:hover { filter: brightness(.9); }
.video-badge { position: absolute; top: 8px; right: 8px; font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; }
.video-badge.free { background: var(--olive-500); color: #fff; }
.video-badge.paid { background: var(--terra-500); color: #fff; }
.video-badge.bundle { background: var(--olive-500); color: #fff; }
.video-info { padding: 12px; }
.video-info h4 { font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 2px; font-family: system-ui,sans-serif; line-height: 1.4; }
.video-meta { font-size: 11px; color: var(--text-light); margin: 2px 0; }
.video-price { font-size: 14px; font-weight: 600; color: var(--terra-500); margin-top: 6px; }
.video-price .orig { font-size: 12px; color: var(--text-light); text-decoration: line-through; margin-right: 5px; font-weight: 400; }

/* ── B2B TRACK SELECTOR ── */
.track-selector { display: grid; grid-template-columns: 1fr 1fr; border-bottom: .5px solid var(--border); }
.track-btn { padding: 18px 24px; cursor: pointer; background: #faf8f4; border: none; text-align: left; border-bottom: 3px solid transparent; transition: .2s; }
.track-btn:hover { background: #fff; }
.track-btn.active-fl { border-bottom-color: var(--navy-500); background: #fff; }
.track-btn.active-vt { border-bottom-color: var(--olive-500); background: #fff; }
.track-label-sm { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; display: block; }
.track-title { font-size: 15px; font-weight: 600; color: var(--text); font-family: system-ui,sans-serif; }
.track-desc { font-size: 12px; color: var(--text-light); margin-top: 2px; }
.track-pane { display: none; }
.track-pane.active { display: block; }

/* ── VS COMPARISON ── */
.vs-grid { display: grid; grid-template-columns: 1fr 1fr; border: .5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.vs-col { padding: 20px; }
.vs-col.them { background: #faf8f4; }
.vs-lbl { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-light); margin-bottom: 6px; }
.vs-lbl.us { color: var(--navy-500); }
.vs-price { font-size: 24px; font-family: Georgia,serif; color: var(--text); margin-bottom: 2px; }
.vs-price.us { color: var(--navy-500); }
.vs-sub { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.vs-list li { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: flex; gap: 6px; align-items: flex-start; }
.vs-list li .icon-bad { color: #a32d2d; }
.vs-list li .icon-good { color: var(--navy-500); }

/* ── INFO BOXES ── */
.info-box { border-radius: var(--radius); padding: 14px 16px; font-size: 13px; line-height: 1.65; margin-bottom: 24px; }
.info-box h4 { font-size: 13px; font-weight: 600; margin-bottom: 5px; font-family: system-ui,sans-serif; }
.info-green { background: var(--olive-50); border: .5px solid #a8c490; color: #27500a; }
.info-blue { background: #e6f1fb; border: .5px solid #85b7eb; color: #0c447c; }
.info-terra { background: var(--terra-50); border: .5px solid var(--terra-100); color: var(--terra-700); }

/* ── BOOKING CARDS ── */
.booking-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 16px; }
.booking-card { border: .5px solid var(--border); border-radius: var(--radius-lg); padding: 24px 20px; background: #fff; }
.booking-card.featured { border: 2px solid var(--terra-500); }
.booking-card h3 { font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 2px; font-family: system-ui,sans-serif; }
.booking-card p { font-size: 13px; color: var(--text-muted); margin: 8px 0 16px; line-height: 1.55; }

/* ── LOCUM CARDS ── */
.locum-card { background: #fff; border: .5px solid var(--border); border-radius: var(--radius-lg); padding: 22px 18px; }
.locum-card.featured { border: 2px solid var(--navy-500); }
.locum-card .price { font-size: 26px; font-family: Georgia,serif; color: var(--navy-500); margin: 8px 0 2px; }
.locum-card .per { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.locum-card ul li { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: flex; gap: 6px; }
.locum-card ul li .chk { color: var(--navy-500); }
.locum-card h3 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 2px; font-family: system-ui,sans-serif; }

/* ── COUNTY TAGS ── */
.county-row { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 20px; }
.county-tag { background: #dce8f5; color: var(--navy-500); font-size: 12px; padding: 4px 12px; border-radius: 20px; }

/* ── CRED STRIP ── */
.cred-strip { background: #dce8f5; border: .5px solid #85b7eb; border-radius: var(--radius); padding: 14px 16px; margin-bottom: 24px; }
.cred-strip h4 { font-size: 13px; font-weight: 600; color: #0c447c; margin-bottom: 8px; font-family: system-ui,sans-serif; }
.cred-row { display: flex; gap: 7px; flex-wrap: wrap; }
.cred-tag { background: #dce8f5; color: var(--navy-500); font-size: 12px; padding: 3px 10px; border-radius: 20px; border: .5px solid #85b7eb; }

/* ── CTA BANNER ── */
.cta-banner { border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; }
.cta-banner.terra { background: var(--terra-500); }
.cta-banner.navy { background: var(--navy-500); }
.cta-banner.olive { background: var(--olive-500); }
.cta-banner h2 { color: #fff; font-size: clamp(20px,2.5vw,26px); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 14px; max-width: 460px; margin: 0 auto 20px; }

/* ── BLOG CARDS ── */
.blog-card { background: #fff; border: .5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.blog-thumb { height: 140px; display: flex; align-items: center; justify-content: center; font-size: 36px; }
.blog-body { padding: 16px; }
.blog-body .category { font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--terra-500); margin-bottom: 6px; }
.blog-body h3 { font-size: 15px; font-weight: 500; color: var(--text); margin-bottom: 6px; line-height: 1.35; font-family: system-ui,sans-serif; }
.blog-body p { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 12px; }
.blog-body .read-more { font-size: 13px; color: var(--terra-500); font-weight: 500; }

/* ── FOOTER ── */
.footer { background: var(--terra-800); padding: 44px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 24px; margin-bottom: 28px; }
.footer-col h4 { font-size: 11px; letter-spacing: .07em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 12px; font-family: system-ui,sans-serif; }
.footer-col p, .footer-col a { font-size: 13px; color: rgba(255,255,255,.82); line-height: 1.9; display: block; }
.footer-col a:hover { color: #f5a08a; }
.footer-col .footer-headline { font-size: 14px; color: #fff; font-family: Georgia,serif; margin-bottom: 6px; }
.footer-bottom { border-top: .5px solid #5a2818; padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 11px; color: rgba(255,255,255,.5); }
.footer-bottom a { font-size: 11px; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.85); }

/* ── PAGE HEADER ── */
.page-header { padding: 48px 0 40px; }
.page-header.terra { background: var(--cream); }
.page-header.dark { background: var(--terra-800); }
.page-header.dark h1, .page-header.dark p { color: #fff; }
.page-header.dark p { color: rgba(255,255,255,.92) !important; }
.page-header.olive { background: var(--olive-500); }
.page-header.olive h1, .page-header.olive p { color: #fff; }
.page-header.olive p { color: #c0d8a8 !important; }
.page-header.navy { background: var(--navy-700); }
.page-header.navy h1 { color: #fff; }
.page-header.navy p { color: #a8c4d8 !important; }
.page-header h1 { font-size: clamp(24px,3.5vw,36px); margin-bottom: 8px; }
.page-header p { font-size: 15px; max-width: 540px; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; padding: 16px 0; border-bottom: .5px solid var(--border); margin-bottom: 24px; }
.filter-btn { font-size: 13px; padding: 5px 14px; border-radius: 20px; border: .5px solid var(--border); cursor: pointer; background: none; color: var(--text-muted); transition: .15s; font-family: system-ui,sans-serif; }
.filter-btn:hover, .filter-btn.active { background: var(--terra-50); color: var(--terra-500); border-color: var(--terra-100); }

/* ── USE CASE CARDS ── */
.usecase-card { background: #faf8f4; border: .5px solid var(--border); border-radius: var(--radius); padding: 16px; }
.usecase-card .uc-icon { font-size: 24px; margin-bottom: 8px; }
.usecase-card h4 { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; font-family: system-ui,sans-serif; }
.usecase-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ── MESSAGING PLAN CARDS ── */
.msg-plan { background: #fff; border: .5px solid var(--border); border-radius: var(--radius-lg); padding: 22px 18px; }
.msg-plan.featured { border: 2px solid var(--terra-500); }
.msg-plan h3 { font-size: 15px; font-weight: 600; color: var(--text); font-family: system-ui,sans-serif; margin-bottom: 2px; }
.msg-plan .price { font-size: 28px; font-family: Georgia,serif; color: var(--terra-500); margin: 8px 0 2px; }
.msg-plan .per { font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.msg-plan ul { margin-bottom: 18px; }
.msg-plan ul li { font-size: 13px; color: var(--text-muted); line-height: 1.8; display: flex; gap: 7px; }
.msg-plan ul li .chk { color: var(--olive-500); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 44px 0 36px; }
  .about-row { grid-template-columns: 1fr; }
  .avatar { margin-bottom: 8px; }
  .trust-bar { gap: 14px; }
  .track-selector { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .section { padding: 40px 0; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { padding: 12px 20px; }
}

/* ── LANGUAGE TOGGLE ── */
.lang-toggle-btn {
  background: transparent;
  border: 1.5px solid var(--terra-500);
  color: var(--terra-500);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  font-family: sans-serif;
  font-weight: 600;
  transition: .15s;
}
.lang-toggle-btn:hover {
  background: var(--terra-50);
}

/* ── LANGUAGE TOGGLE VISIBILITY ── */
.lang-hidden { display: none !important; }

/* Nav dropdown */
.nav-dropdown { position: relative; display: inline-block; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  min-width: 220px;
  z-index: 999;
  overflow: hidden;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-trigger { cursor: pointer; user-select: none; }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-family: sans-serif;
  color: var(--text);
  text-decoration: none;
  border-bottom: 0.5px solid var(--border);
  white-space: nowrap;
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: var(--bg-alt); }
.nav-dropdown-trigger { cursor: pointer; }
