/*
Theme Name: FuelMe
Theme URI: https://www.fuelme-tankbuch.app
Author: Martin Schröder
Author URI: https://www.fuelme-tankbuch.app
Description: Offizielles Theme für die FuelMe Tankbuch App Website
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: fuelme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue:       #007AFF;
  --blue-light: #55BEF0;
  --blue-dark:  #0055CC;
  --blue-soft:  #EAF3FF;
  --white:      #FAFAFA;
  --off:        #F2F2F7;
  --gray1:      #8E8E93;
  --gray2:      #C7C7CC;
  --gray3:      #EBEBF0;
  --dark:       #1C1C1E;
  --dark2:      #2C2C2E;
  --text:       #1C1C1E;
  --subtext:    #48484A;
  --gold:       #FF9500;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(250,250,250,0.85);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 0 40px;
  height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo span {
  font-size: 17px; font-weight: 700; color: var(--text);
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex; gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--subtext);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  padding: 7px 16px; border-radius: 20px;
  transition: background 0.15s, transform 0.1s;
}
.nav-cta:hover { background: var(--blue-dark); transform: scale(1.02); }

/* burger */
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ─── APP ICON ─────────────────────────────────────────────────────── */
.app-icon {
  width: var(--sz, 64px);
  height: var(--sz, 64px);
  border-radius: calc(var(--sz, 64px) * 0.2237);
  background: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.app-icon svg {
  width: 68%; height: 68%;
  fill: var(--blue);
  filter: drop-shadow(0 1px 2px rgba(0,122,255,0.15));
  position: relative; z-index: 1;
}

/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  min-height: 88vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,122,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-bg-circles::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(0,122,255,0.08);
  top: 50%; left: 50%; transform: translate(-50%, -55%);
}
.hero-bg-circles::after {
  content: '';
  position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  border: 1px solid rgba(0,122,255,0.05);
  top: 50%; left: 50%; transform: translate(-50%, -55%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-soft); color: var(--blue);
  font-size: 13px; font-weight: 600;
  padding: 5px 12px; border-radius: 20px; margin-bottom: 28px;
  border: 1px solid rgba(0,122,255,0.2);
}
.hero-badge .stars { color: var(--gold); letter-spacing: 1px; }
.hero .app-icon { --sz: 96px; margin-bottom: 24px; }
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 800; letter-spacing: -2px; line-height: 1.05;
  color: var(--text); margin-bottom: 18px; max-width: 700px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p {
  font-size: 19px; font-weight: 400; color: var(--subtext);
  line-height: 1.6; max-width: 480px; margin-bottom: 36px;
}
.hero-actions {
  display: flex; gap: 12px; align-items: center; flex-wrap: wrap; justify-content: center;
  margin-bottom: 56px;
}

/* ─── BUTTONS ──────────────────────────────────────────────────────── */
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--dark); color: white;
  text-decoration: none;
  padding: 12px 22px; border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.btn-store:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.22); }
.btn-store-text { display: flex; flex-direction: column; }
.btn-store-label { font-size: 10px; color: rgba(255,255,255,0.65); letter-spacing: 0.3px; line-height: 1; }
.btn-store-name  { font-size: 17px; font-weight: 700; line-height: 1.2; }
.btn-outline {
  font-size: 15px; font-weight: 600; color: var(--blue);
  text-decoration: none; padding: 12px 20px; border-radius: 14px;
  border: 1.5px solid rgba(0,122,255,0.3);
  transition: background 0.15s, border-color 0.15s;
}
.btn-outline:hover { background: var(--blue-soft); border-color: var(--blue); }
.btn-store.white { background: white; box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.btn-store.white .btn-store-label { color: rgba(0,0,0,0.5); }
.btn-store.white .btn-store-name  { color: var(--dark); }

/* ─── PHONE FRAMES ─────────────────────────────────────────────────── */
.hero-screens {
  display: flex; gap: 16px; align-items: flex-end; justify-content: center;
  position: relative;
}
.screen-wrap { display: flex; flex-direction: column; align-items: center; transition: transform 0.3s; }
.screen-wrap:first-child { transform: rotate(-5deg) translateY(16px); }
.screen-wrap:last-child  { transform: rotate( 5deg) translateY(16px); }
.screen-wrap:hover { transform: rotate(0deg) translateY(-4px) scale(1.02) !important; }
.phone-frame {
  background: var(--dark); border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22), 0 4px 16px rgba(0,0,0,0.12);
  position: relative;
}
.phone-frame img {
  display: block; width: 100%;
  border-radius: 20px;
  object-fit: cover; object-position: top center;
}

/* ─── STATS BAR ────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--off);
  border-top: 1px solid var(--gray3);
  border-bottom: 1px solid var(--gray3);
  padding: 28px 40px;
  display: flex; justify-content: center; gap: 0;
}
.stat-item {
  flex: 1; max-width: 200px; text-align: center;
  padding: 0 20px; border-right: 1px solid var(--gray2);
}
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--blue); }
.stat-lbl { font-size: 12px; font-weight: 500; color: var(--gray1); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.5px; }

/* ─── SECTIONS ─────────────────────────────────────────────────────── */
.section { padding: 80px 40px; max-width: 1100px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 12px; color: var(--text);
}
.section-sub {
  font-size: 17px; color: var(--subtext); line-height: 1.6;
  max-width: 500px; margin-bottom: 48px;
}

/* ─── FEATURES GRID ────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.feat-card {
  background: var(--off); border-radius: 20px; padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--gray3);
}
.feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.feat-card.highlight {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
}
.feat-icon {
  width: 44px; height: 44px; background: white; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.feat-card.highlight .feat-icon { background: rgba(255,255,255,0.15); box-shadow: none; }
.feat-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feat-desc  { font-size: 14px; color: var(--subtext); line-height: 1.6; }
.feat-card.highlight .feat-title,
.feat-card.highlight .feat-desc { color: white; }
.feat-card.highlight .feat-desc { opacity: 0.8; }

/* ─── SPLIT SECTIONS ───────────────────────────────────────────────── */
.split-section {
  padding: 60px 40px;
  background: var(--off);
  border-top: 1px solid var(--gray3);
  border-bottom: 1px solid var(--gray3);
}
.split-section.white-bg { background: white; }
.split-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: 64px; align-items: center;
}
.split-inner.reverse { flex-direction: row-reverse; }
.split-text { flex: 1; }
.split-visual { flex: 1; display: flex; justify-content: center; align-items: center; }

.feat-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.feat-item { display: flex; gap: 12px; align-items: flex-start; }
.feat-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--blue-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 11px; font-weight: 800; margin-top: 1px;
}
.feat-item-text { font-size: 15px; color: var(--subtext); line-height: 1.5; }
.feat-item-text strong { color: var(--text); font-weight: 600; }

/* ─── REVIEWS ──────────────────────────────────────────────────────── */
.reviews-section { padding: 80px 40px; background: var(--dark); color: white; }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-section .section-tag { color: var(--blue-light); }
.reviews-section .section-title { color: white; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.review-card {
  background: var(--dark2); border-radius: 16px; padding: 22px;
  border: 1px solid rgba(255,255,255,0.06);
}
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.65; margin-bottom: 14px; font-style: italic; }
.review-author { font-size: 12px; color: rgba(255,255,255,0.4); font-weight: 500; }

/* ─── PRICING ──────────────────────────────────────────────────────── */
.pricing-section { padding: 80px 40px; }
.pricing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pricing-tabs {
  display: inline-flex; background: var(--off); border-radius: 12px;
  padding: 4px; gap: 4px; margin-bottom: 36px;
}
.tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; padding: 8px 20px;
  border-radius: 8px; border: none; cursor: pointer;
  transition: all 0.2s;
}
.tab-btn.active { background: white; color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.tab-btn:not(.active) { background: transparent; color: var(--gray1); }
.pricing-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 16px; margin-top: 0; align-items: start; }
.price-card {
  background: var(--off); border-radius: 20px; padding: 24px 20px;
  border: 1.5px solid var(--gray3); text-align: left;
}
.price-card.main {
  background: white; border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(0,122,255,0.12);
}
.price-name { font-size: 14px; font-weight: 700; color: var(--subtext); margin-bottom: 6px; }
.price-val { font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--text); margin-bottom: 4px; }
.price-val span { font-size: 14px; font-weight: 400; color: var(--gray1); }
.price-desc { font-size: 12px; color: var(--gray1); margin-bottom: 16px; line-height: 1.5; }
.price-feat { font-size: 12px; color: var(--subtext); line-height: 2; }
.price-feat li { list-style: none; display: flex; gap: 6px; align-items: baseline; }
.price-feat li::before { content: '✓'; color: var(--blue); font-weight: 700; font-size: 11px; }
.abo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 600px; margin: 0 auto 16px; }
.abo-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: white;
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}

/* ─── CTA SECTION ──────────────────────────────────────────────────── */
.cta-section {
  padding: 100px 40px;
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-section h2 { font-size: clamp(28px,4vw,48px); font-weight: 800; letter-spacing: -1.5px; color: white; margin-bottom: 12px; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }

/* ─── FOOTER ───────────────────────────────────────────────────────── */
.site-footer {
  background: var(--dark); padding: 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-left { display: flex; align-items: center; gap: 10px; }
.footer-left span { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── INNER PAGE ───────────────────────────────────────────────────── */
.page-content-wrap {
  max-width: 720px; margin: 0 auto; padding: 64px 40px 80px;
}
.page-content-wrap h1 {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 28px; color: var(--text);
}
.page-content-wrap h2 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.5px;
  margin: 40px 0 12px; color: var(--text);
}
.page-content-wrap h3 { font-size: 18px; font-weight: 600; margin: 28px 0 8px; }
.page-content-wrap p {
  font-size: 16px; color: var(--subtext); line-height: 1.75;
  margin-bottom: 18px; text-wrap: pretty;
}
.page-content-wrap ul, .page-content-wrap ol {
  padding-left: 1.4em; margin-bottom: 18px;
}
.page-content-wrap li { font-size: 16px; color: var(--subtext); line-height: 1.7; margin-bottom: 4px; }
.page-content-wrap a { color: var(--blue); text-decoration: none; }
.page-content-wrap a:hover { text-decoration: underline; }
.page-content-wrap strong { color: var(--text); font-weight: 600; }

/* ─── BLOG INDEX ───────────────────────────────────────────────────── */
.blog-wrap { max-width: 760px; margin: 0 auto; padding: 64px 40px 80px; }
.blog-wrap h1 { font-size: 36px; font-weight: 800; letter-spacing: -1px; margin-bottom: 40px; }
.post-list { display: flex; flex-direction: column; gap: 0; }
.post-card {
  padding: 28px 0; border-bottom: 1px solid var(--gray3);
}
.post-card:last-child { border-bottom: none; }
.post-meta { font-size: 12px; color: var(--gray1); margin-bottom: 8px; font-weight: 500; }
.post-card h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.4px; margin-bottom: 8px; }
.post-card h2 a { color: var(--text); text-decoration: none; }
.post-card h2 a:hover { color: var(--blue); }
.post-excerpt { font-size: 15px; color: var(--subtext); line-height: 1.65; margin-bottom: 14px; }
.post-read-more {
  font-size: 14px; font-weight: 600; color: var(--blue);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
}
.post-read-more:hover { text-decoration: underline; }

/* blog pagination */
.pagination { display: flex; gap: 8px; margin-top: 40px; justify-content: center; }
.pagination a, .pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; font-size: 14px; font-weight: 600;
  text-decoration: none; color: var(--subtext); background: var(--off); border: 1px solid var(--gray3);
}
.pagination .current { background: var(--blue); color: white; border-color: var(--blue); }
.pagination a:hover { background: var(--blue-soft); color: var(--blue); border-color: var(--blue); }

/* single post */
.single-wrap { max-width: 720px; margin: 0 auto; padding: 64px 40px 80px; }
.single-wrap .post-header { margin-bottom: 40px; }
.single-wrap .post-header .post-meta { font-size: 13px; color: var(--gray1); margin-bottom: 12px; }
.single-wrap .post-header h1 {
  font-size: clamp(24px, 4vw, 42px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.15;
  margin-bottom: 0;
}
.post-body { font-size: 16px; color: var(--subtext); line-height: 1.8; }
.post-body h2 { font-size: 22px; font-weight: 700; color: var(--text); letter-spacing: -0.5px; margin: 36px 0 12px; }
.post-body h3 { font-size: 18px; font-weight: 600; color: var(--text); margin: 28px 0 8px; }
.post-body p { margin-bottom: 18px; text-wrap: pretty; }
.post-body ul, .post-body ol { padding-left: 1.4em; margin-bottom: 18px; }
.post-body li { margin-bottom: 6px; }
.post-body a { color: var(--blue); }
.post-body strong { color: var(--text); font-weight: 600; }
.post-body hr { border: none; border-top: 1px solid var(--gray3); margin: 36px 0; }
.post-nav {
  display: flex; justify-content: space-between; margin-top: 60px;
  padding-top: 28px; border-top: 1px solid var(--gray3); gap: 16px;
}
.post-nav a { font-size: 14px; font-weight: 600; color: var(--blue); text-decoration: none; max-width: 48%; }
.post-nav a:hover { text-decoration: underline; }

/* comments */
.comments-section { max-width: 720px; margin: 0 auto; padding: 0 40px 80px; }
.comments-section h2 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }
.comment-list { list-style: none; padding: 0; }
.comment-list .comment { padding: 20px 0; border-bottom: 1px solid var(--gray3); }
.comment-author-name { font-size: 14px; font-weight: 600; color: var(--text); }
.comment-date { font-size: 12px; color: var(--gray1); margin-left: 8px; }
.comment-text { font-size: 15px; color: var(--subtext); line-height: 1.65; margin-top: 8px; }
#respond h3 { font-size: 20px; font-weight: 700; margin-bottom: 20px; }
.comment-form label { display: block; font-size: 13px; font-weight: 600; color: var(--subtext); margin-bottom: 6px; }
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
  width: 100%; padding: 10px 14px; border-radius: 10px;
  border: 1.5px solid var(--gray2); font-family: inherit; font-size: 15px;
  color: var(--text); background: white; margin-bottom: 16px;
  transition: border-color 0.15s;
}
.comment-form input:focus, .comment-form textarea:focus {
  border-color: var(--blue); outline: none;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input[type=submit] {
  background: var(--blue); color: white; border: none; cursor: pointer;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 10px 24px; border-radius: 12px; transition: background 0.15s;
}
.comment-form input[type=submit]:hover { background: var(--blue-dark); }

/* ─── 404 ──────────────────────────────────────────────────────────── */
.error-wrap {
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 40px;
}
.error-wrap h1 { font-size: 96px; font-weight: 900; letter-spacing: -4px; color: var(--blue); line-height: 1; }
.error-wrap h2 { font-size: 24px; font-weight: 700; margin: 16px 0 10px; }
.error-wrap p { font-size: 16px; color: var(--subtext); margin-bottom: 28px; }

/* ─── MOBILE ───────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .features-grid { grid-template-columns: 1fr 1fr; }
  .split-inner, .split-inner.reverse { flex-direction: column; gap: 40px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .hero-screens { transform: scale(0.85); }

  .section, .split-section, .reviews-section, .pricing-section { padding: 48px 20px; }
  .page-content-wrap, .blog-wrap, .single-wrap, .comments-section { padding-left: 20px; padding-right: 20px; }
  .site-footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; align-items: center; gap: 20px; padding: 28px 20px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray2); padding-bottom: 16px; max-width: 100%; width: 100%; }
  .stat-item:last-child { border-bottom: none; }
  .abo-grid { grid-template-columns: 1fr; }
  .hero-screens { display: none; }
}

/* mobile menu open */
.mobile-nav-open .nav-links {
  display: flex; flex-direction: column; gap: 0;
  position: fixed; inset: 56px 0 0 0;
  background: rgba(250,250,250,0.97);
  backdrop-filter: blur(20px);
  padding: 20px;
  border-top: 1px solid var(--gray3);
  z-index: 99;
}
.mobile-nav-open .nav-links li { border-bottom: 1px solid var(--gray3); }
.mobile-nav-open .nav-links a { display: block; padding: 16px 0; font-size: 17px; }
