/* ============================================================
   CloudNotes — Minimal DevOps & AWS blog
   Style inspired by Untitled UI's minimal blog
   ============================================================ */

:root {
  /* Neutrals (Untitled UI gray scale) */
  --gray-25:  #FCFCFD;
  --gray-50:  #F9FAFB;
  --gray-100: #F2F4F7;
  --gray-200: #EAECF0;
  --gray-300: #D0D5DD;
  --gray-400: #98A2B3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1D2939;
  --gray-900: #101828;

  /* Brand (refined indigo/violet) */
  --brand-50:  #F4F3FF;
  --brand-100: #EBE9FE;
  --brand-200: #D9D6FE;
  --brand-600: #6938EF;
  --brand-700: #5925DC;

  /* Accent tags */
  --teal-700:   #107569;
  --teal-50:    #F0FDF9;
  --orange-700: #B93815;
  --orange-50:  #FEF6EE;
  --blue-700:   #175CD3;
  --blue-50:    #EFF8FF;

  --white: #FFFFFF;

  --container: 1216px;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 8px -2px rgba(16, 24, 40, 0.10), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  --shadow-lg: 0 12px 16px -4px rgba(16, 24, 40, 0.08), 0 4px 6px -2px rgba(16, 24, 40, 0.03);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.brand .logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-50); }
.nav-links a.active { color: var(--brand-700); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: 9px;
  padding: 10px 18px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background .15s ease, box-shadow .15s ease, border-color .15s ease, transform .05s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-700); }
.btn-secondary { background: #fff; color: var(--gray-700); border-color: var(--gray-300); box-shadow: var(--shadow-sm); }
.btn-secondary:hover { background: var(--gray-50); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--gray-700);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 96px 0 56px;
  text-align: center;
}
.hero-logo { display: block; margin: 0 auto 24px; width: 100%; max-width: 360px; height: auto; }
.hero-logo-sm { max-width: 210px; margin-bottom: 16px; }
.eyebrow {
  font-size: 15px;
  font-weight: 600;
  color: var(--brand-700);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: 60px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--gray-900);
}
.hero p {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   Featured post
   ============================================================ */
.section { padding: 32px 0 64px; }

.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 24px 0 72px;
}
.featured .thumb { aspect-ratio: 16 / 11; border-radius: var(--radius-lg); }
.featured .post-body { padding: 0; }
.featured h2 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 14px 0 14px;
}
.featured .excerpt { font-size: 17px; }

/* ============================================================
   Section heading + filter pills
   ============================================================ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0;
}
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  padding: 7px 14px;
  cursor: pointer;
  transition: all .15s ease;
}
.pill:hover { background: var(--gray-50); }
.pill.active { background: var(--brand-50); color: var(--brand-700); border-color: var(--brand-200); }

/* ============================================================
   Post grid + cards
   ============================================================ */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
}
.card .thumb { aspect-ratio: 3 / 2; border-radius: var(--radius); }

.thumb {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.92);
}
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,.18), transparent 50%);
}

.post-body { display: flex; flex-direction: column; }
.meta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-700);
  margin-bottom: 8px;
}
.meta-top .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gray-400); }
.meta-top .read { color: var(--gray-500); }

.card h3 {
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.card h3 .arrow {
  flex: none;
  color: var(--gray-900);
  transition: transform .2s ease;
  margin-top: 4px;
}
.card:hover h3 .arrow { transform: translate(3px, -3px); }
.card:hover h3 { color: var(--brand-700); }

.excerpt {
  color: var(--gray-600);
  font-size: 16px;
  margin: 12px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* author row */
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--brand-600), #9E77ED);
  flex: none;
}
img.avatar { object-fit: cover; }
.author .who { font-size: 14px; }
.author .who strong { display: block; font-weight: 600; color: var(--gray-900); }
.author .who span { color: var(--gray-500); }

/* ============================================================
   Newsletter CTA
   ============================================================ */
.cta {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-top: 32px;
}
.cta-inner {
  padding: 64px 0;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta h2 { font-size: 30px; letter-spacing: -0.02em; margin: 0 0 12px; }
.cta p { color: var(--gray-600); font-size: 18px; margin: 0 0 28px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  margin-top: 80px;
  padding: 56px 0 40px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--gray-200);
}
.footer-brand { max-width: 300px; }
.footer-brand .brand { font-size: 17px; }
.footer-brand p { color: var(--gray-600); font-size: 15px; line-height: 1.65; margin: 16px 0 0; }
.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gray-500);
  margin: 0 0 16px;
}
.footer-col a {
  display: block;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
}
.footer-col a:hover { color: var(--brand-700); }
.footer-bottom { padding-top: 24px; text-align: center; }
.footer-bottom p { color: var(--gray-500); font-size: 14px; margin: 0; }

/* ============================================================
   Blog archive (blog.html)
   ============================================================ */
.year-block { margin-bottom: 64px; }
.year-head {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-bottom: 16px;
  margin: 0 0 32px;
  border-bottom: 1px solid var(--gray-200);
}

/* ============================================================
   Single post (posts/*.html)
   ============================================================ */
.post { padding-top: 56px; }
.post-head { max-width: 768px; }
.back-link {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.back-link:hover { color: var(--brand-700); }
.post-head h1 {
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 10px 0 18px;
}
.post-lede { font-size: 20px; color: var(--gray-600); margin: 0 0 28px; }
.post-head .author { margin-top: 0; }

.post-hero {
  max-width: 1216px;
  margin: 48px auto;
  width: calc(100% - 64px);
  aspect-ratio: 21 / 8;
  border-radius: var(--radius-lg);
}
.post-hero svg { width: 88px; height: 88px; }

.post-content { max-width: 720px; font-size: 18px; line-height: 1.75; color: var(--gray-700); }
.post-content > *:first-child { margin-top: 0; }
.post-content h2 {
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin: 48px 0 16px;
}
.post-content h3 {
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--gray-900);
  margin: 32px 0 12px;
}
.post-content p { margin: 0 0 22px; }
.post-content a { color: var(--brand-700); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--brand-200); }
.post-content a:hover { text-decoration-color: var(--brand-600); }
.post-content ul, .post-content ol { margin: 0 0 22px; padding-left: 26px; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 10px; padding-left: 4px; }
.post-content li::marker { color: var(--gray-400); }
.post-content strong { color: var(--gray-900); font-weight: 600; }
.post-content blockquote {
  margin: 28px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--brand-600);
  color: var(--gray-600);
  font-size: 19px;
}
.post-content code {
  font-family: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.88em;
  background: var(--gray-100);
  color: var(--gray-800);
  padding: 2px 6px;
  border-radius: 5px;
}
.post-content pre {
  background: var(--gray-900);
  color: #E4E7EC;
  border-radius: var(--radius);
  padding: 20px 22px;
  overflow-x: auto;
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 24px;
}
.post-content pre code { background: none; color: inherit; padding: 0; font-size: inherit; }
.post-content img { border-radius: var(--radius); margin: 24px 0; }
.post-content table { width: 100%; border-collapse: collapse; margin: 0 0 24px; font-size: 16px; }
.post-content th, .post-content td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--gray-200); }
.post-content th { color: var(--gray-900); font-weight: 600; }
.post-content hr { border: none; border-top: 1px solid var(--gray-200); margin: 40px 0; }

.post-foot {
  max-width: 720px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.post-foot .author { margin-top: 0; }

/* about page two-column layout */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}
.about-photo { position: sticky; top: 96px; }
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-md);
}

/* shared prose for about/contact */
.prose { font-size: 18px; line-height: 1.75; color: var(--gray-700); }
.prose h2 { font-size: 24px; color: var(--gray-900); letter-spacing: -0.02em; margin: 36px 0 14px; }
.prose p { margin: 0 0 20px; }
.prose ul { margin: 0 0 20px; padding-left: 24px; list-style: disc; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--gray-400); }
.prose a { color: var(--brand-700); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }
.contact-list { list-style: none !important; padding: 0 !important; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--gray-200); }

/* ============================================================
   Spotlight + slideshow (re:Invent feature)
   ============================================================ */
.spotlight-section { padding-top: 8px; }
.spotlight {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.spotlight-body { padding: 8px 20px 8px 4px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--brand-700); background: var(--brand-50);
  border: 1px solid var(--brand-100);
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.badge svg { color: #F79009; }
.spotlight-body h2 { font-size: 30px; line-height: 1.18; letter-spacing: -0.02em; margin: 6px 0 14px; }
.spotlight-body h2 a:hover { color: var(--brand-700); }
.spotlight-body p { color: var(--gray-600); font-size: 17px; margin: 0 0 24px; }

.slideshow { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; aspect-ratio: 3 / 2; }
.slideshow .slides { position: absolute; inset: 0; }
.slideshow .slide { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity .6s ease; }
.slideshow .slide.active { opacity: 1; }
.slideshow .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ss-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border: none; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff; font-size: 24px; line-height: 1;
  cursor: pointer; display: grid; place-items: center; transition: background .15s ease;
}
.ss-nav:hover { background: rgba(0,0,0,.72); }
.ss-nav.prev { left: 14px; }
.ss-nav.next { right: 14px; }
.ss-counter {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.5); color: #fff; font-size: 13px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
}
.ss-dots { position: absolute; bottom: 14px; left: 0; right: 0; display: flex; justify-content: center; gap: 8px; }
.ss-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.5); cursor: pointer; padding: 0; transition: transform .15s ease, background .15s ease; }
.ss-dot.active { background: #fff; transform: scale(1.3); }
.post-content .slideshow { aspect-ratio: 16 / 9; margin: 8px 0 28px; }

/* ============================================================
   Testimonials (testimonials.html)
   ============================================================ */
.masonry { columns: 2; column-gap: 24px; }

/* LinkedIn-style recommendation cards */
.li-card {
  break-inside: avoid;
  margin: 0 0 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 16px 16px 14px;
  box-shadow: 0 1px 2px rgba(16,24,40,.06);
}
.li-top { display: flex; align-items: flex-start; gap: 10px; }
.li-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 16px; flex: none;
}
.li-meta { flex: 1; min-width: 0; line-height: 1.32; }
.li-name { font-weight: 600; color: var(--gray-900); font-size: 14px; }
.li-deg { color: var(--gray-500); font-weight: 400; }
.li-role { color: var(--gray-600); font-size: 12.5px; }
.li-time { color: var(--gray-500); font-size: 12px; display: flex; align-items: center; gap: 4px; }
.li-globe { width: 12px; height: 12px; }
.li-logo { width: 23px; height: 23px; flex: none; }
.li-text { color: var(--gray-800); font-size: 14px; line-height: 1.55; margin: 12px 0 8px; }
.li-ctx {
  display: inline-block; margin: 0 0 12px;
  font-size: 12.5px; font-weight: 600; color: var(--brand-700);
}
.li-ctx:hover { text-decoration: underline; }

/* ============================================================
   Modals (say hi + leave a testimonial)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 24, 40, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fade .15s ease;
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  animation: pop .18s ease;
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(8px) scale(.98); } }
.modal-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border: none;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 22px;
  line-height: 1;
  color: var(--gray-500);
  cursor: pointer;
}
.modal-x:hover { background: var(--gray-100); color: var(--gray-800); }
.modal-card h3 { font-size: 22px; letter-spacing: -0.02em; margin: 0 0 6px; }
.modal-sub { color: var(--gray-600); font-size: 15px; margin: 0 0 22px; }
.modal form { display: flex; flex-direction: column; gap: 14px; }
.modal .form-row { display: flex; gap: 14px; }
.modal .form-row label { flex: 1; }
.modal label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.modal input,
.modal textarea,
.modal select {
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  color: var(--gray-900);
  padding: 10px 12px;
  border: 1px solid var(--gray-300);
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.modal textarea { resize: vertical; }
.modal input:focus,
.modal textarea:focus,
.modal select:focus {
  outline: none;
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px var(--brand-100);
}
.modal form .btn { margin-top: 4px; }
.modal-note {
  display: none;
  margin: 14px 0 0;
  padding: 10px 14px;
  background: var(--brand-50);
  color: var(--brand-700);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 500;
}
.modal-note.show { display: block; }
.modal-or {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--gray-400);
  font-size: 13px;
  margin: 22px 0 18px;
}
.modal-or::before, .modal-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.modal-or span { padding: 0 14px; }
.linkedin-btn { width: 100%; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 64px 0 40px; }
  .hero h1 { font-size: 40px; }
  .hero p { font-size: 18px; }
  .featured { grid-template-columns: 1fr; gap: 28px; padding-bottom: 48px; }
  .featured h2 { font-size: 26px; }
  .grid { grid-template-columns: 1fr; gap: 40px; }
  .post-head h1 { font-size: 32px; }
  .post-lede { font-size: 18px; }
  .post-hero { aspect-ratio: 16 / 9; width: calc(100% - 40px); margin: 32px auto; }
  .post-content { font-size: 17px; }
  .post-content h2 { font-size: 24px; }
  .masonry { columns: 1; }
  .modal .form-row { flex-direction: column; }
  .spotlight { grid-template-columns: 1fr; gap: 20px; }
  .spotlight-body { padding: 4px; }
  .spotlight-body h2 { font-size: 24px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; max-width: 560px; }
  .about-photo { position: static; max-width: 260px; }
}

/* mobile menu (toggled via :target) */
.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--gray-200);
  background: #fff;
}
.mobile-menu:target { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-weight: 600;
  color: var(--gray-700);
  border-top: 1px solid var(--gray-100);
}
@media (min-width: 769px) { .mobile-menu { display: none !important; } }
