/* ==========================================================================
   DELMARIQUE.COM - CANADIAN CASINO NEWS & REGULATORY JOURNAL
   Design System: Deep Navy & Canadian Crimson / Authoritative Editorial
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800&family=Inter:wght@300;400;500;600;700&family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400&display=swap');

:root {
  --navy-950: #070d18;
  --navy-900: #0f172a;
  --navy-800: #1e293b;
  --navy-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  
  --crimson-600: #dc2626;
  --crimson-700: #b91c1c;
  --crimson-800: #991b1b;
  --gold-500: #f59e0b;
  --gold-600: #d97706;

  --font-serif: 'Newsreader', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Cinzel', serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px -1px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -3px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.18);
  
  --max-w: 1240px;
  --header-h: 74px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--slate-50);
  color: var(--navy-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* CONTAINER */
.container {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* TOP NEWS TICKER */
.top-ticker-bar {
  background-color: var(--navy-950);
  color: var(--slate-400);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-label {
  background: var(--crimson-700);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.ticker-marquee {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  color: var(--slate-200);
}

.ticker-marquee span {
  margin-right: 24px;
}

/* HEADER */
.site-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--slate-600);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-700);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--crimson-600);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--crimson-600);
  border-radius: 2px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-contact {
  background-color: var(--navy-900);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-contact:hover {
  background-color: var(--crimson-700);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--navy-900);
  cursor: pointer;
  padding: 6px;
}

/* HERO SECTION */
.hero-news {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: var(--white);
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(220, 38, 38, 0.15), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content .badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.2);
  border: 1px solid var(--crimson-600);
  color: #fca5a5;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--white);
}

.hero-title a:hover {
  color: #fca5a5;
}

.hero-excerpt {
  font-size: 1.0625rem;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.875rem;
  color: var(--slate-400);
}

.hero-meta .author {
  font-weight: 600;
  color: var(--slate-200);
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-image-wrap:hover img {
  transform: scale(1.03);
}

/* STATS BAR */
.stats-bar {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 28px 0;
  box-shadow: var(--shadow-sm);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
  padding: 8px 12px;
  border-right: 1px solid var(--slate-200);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--crimson-700);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION HEADINGS */
.section-header {
  margin-bottom: 36px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid var(--slate-200);
  padding-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy-900);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--crimson-600);
  border-radius: 2px;
}

.section-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--crimson-700);
}

.section-link:hover {
  text-decoration: underline;
}

/* CARDS GRID */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.news-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(220, 38, 38, 0.3);
}

.card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background-color: var(--navy-900);
}

.card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .card-thumb img {
  transform: scale(1.05);
}

.card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--crimson-600);
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8125rem;
  color: var(--slate-600);
  margin-bottom: 12px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--navy-900);
  flex-grow: 1;
}

.card-title a:hover {
  color: var(--crimson-600);
}

.card-excerpt {
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.8125rem;
  color: var(--slate-600);
}

.card-read-link {
  color: var(--crimson-700);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.card-read-link:hover {
  color: var(--crimson-600);
  gap: 7px;
}

/* FILTER PILLS */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.filter-btn {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

/* SEARCH BAR */
.archive-search-box {
  position: relative;
  max-width: 480px;
  margin-bottom: 32px;
}

.archive-search-input {
  width: 100%;
  padding: 12px 18px 12px 42px;
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  background-color: var(--white);
  color: var(--navy-900);
  outline: none;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.archive-search-input:focus {
  border-color: var(--crimson-600);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.archive-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--slate-400);
  pointer-events: none;
}

/* ARTICLE DETAIL PAGE */
.article-page-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--slate-200);
  padding: 42px 0 32px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--slate-600);
  margin-bottom: 18px;
}

.breadcrumbs a:hover {
  color: var(--crimson-600);
}

.article-title-main {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy-950);
  margin-bottom: 20px;
}

.article-byline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.9375rem;
  color: var(--slate-600);
}

.byline-author {
  font-weight: 600;
  color: var(--navy-900);
}

.article-main-layout {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 48px;
  padding: 48px 0 72px;
}

.article-body-content {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.article-body-content .lead {
  font-size: 1.2rem;
  font-family: var(--font-serif);
  line-height: 1.65;
  color: var(--navy-800);
  margin-bottom: 28px;
  font-weight: 500;
}

.article-body-content h2 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 36px 0 16px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 8px;
}

.article-body-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy-800);
  margin: 28px 0 12px;
}

.article-body-content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #334155;
  margin-bottom: 20px;
}

.article-body-content blockquote {
  border-left: 4px solid var(--crimson-600);
  background-color: var(--slate-50);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--navy-900);
}

.article-body-content blockquote cite {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-600);
  font-style: normal;
  margin-top: 10px;
}

.article-body-content ul, .article-body-content ol {
  margin: 20px 0 24px 28px;
}

.article-body-content li {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 10px;
}

.article-featured-media {
  margin-bottom: 32px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.article-featured-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* SIDEBAR */
.sidebar-sticky {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background-color: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--slate-100);
  padding-bottom: 8px;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.related-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.related-thumb {
  width: 72px;
  height: 54px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.related-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--navy-900);
}

.related-title:hover {
  color: var(--crimson-600);
}

/* INFORMATIONAL / STATIC PAGES */
.editorial-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  margin: 48px 0 72px;
}

.editorial-content h1 {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 24px;
}

.editorial-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-900);
  margin: 32px 0 14px;
}

.editorial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 16px;
}

.editorial-content ul, .editorial-content ol {
  margin: 16px 0 20px 24px;
}

.editorial-content li {
  font-size: 1rem;
  line-height: 1.65;
  color: #334155;
  margin-bottom: 8px;
}

/* LEGAL PAGES 5-SECTION ACCORDION/BLOCKS */
.legal-section-block {
  margin-bottom: 28px;
  padding: 24px;
  background-color: var(--slate-50);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--crimson-700);
}

.legal-section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 12px;
}

/* FAQ ACCORDION */
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background-color: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy-900);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #475569;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin: 48px 0 72px;
}

.contact-info-card {
  background-color: var(--navy-900);
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-card h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 16px;
}

.contact-info-card p {
  color: var(--slate-400);
  margin-bottom: 28px;
}

.contact-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-form-card {
  background-color: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background-color: var(--slate-50);
  outline: none;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: var(--crimson-600);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.btn-submit {
  background-color: var(--crimson-700);
  color: var(--white);
  border: none;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: all 0.2s ease;
}

.btn-submit:hover {
  background-color: var(--crimson-600);
}

/* FOOTER */
.site-footer {
  background-color: var(--navy-950);
  color: var(--slate-400);
  padding: 64px 0 32px;
  border-top: 3px solid var(--crimson-700);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand-logo img {
  width: 48px;
  height: 48px;
}

.footer-brand .brand-title {
  color: var(--white);
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 16px 0 24px;
  max-width: 360px;
}

.footer-col-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--slate-400);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.rg-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 20px;
  font-size: 0.8125rem;
  line-height: 1.5;
}

.rg-box-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rg-box strong {
  color: var(--gold-500);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.footer-legal-links {
  display: flex;
  gap: 18px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   MOBILE RESPONSIVENESS & STRICT 20px PADDING REQUIREMENT
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-title {
    font-size: 1.85rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-main-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .article-body-content {
    padding: 24px 20px;
  }

  .article-title-main {
    font-size: 1.85rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--slate-200);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
  }

  .main-nav.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}
