/* ==========================================================================
   TechSkillSchool Core CSS + Light/Dark Theme + Hashnode-Style Blog
   ========================================================================== */

@import url('./tss-core.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

/* ==========================================================================
   Dark / Light Theme Tokens
   ========================================================================== */

:root,
html[data-theme="dark"] {
  --background: #050508;
  --foreground: #fafafa;
  --muted: #71717a;
  --muted-foreground: #a1a1aa;
  
  --surface: rgba(18, 18, 24, 0.75);
  --surface-elevated: rgba(24, 24, 32, 0.95);
  --border: rgba(255, 255, 255, 0.1);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);

  --accent: #38bdf8;
  --accent-cyan: #00f0ff;
  --accent-blue: #528bff;
  --accent-purple: #a78bfa;
  --accent-green: #34d399;
  --accent-muted: rgba(56, 189, 248, 0.12);
  --accent-glow: #38bdf8;
  --status-green: #34d399;
}

html[data-theme="light"] {
  --background: #f8fafc;
  --foreground: #09090b;
  --muted: #64748b;
  --muted-foreground: #475569;
  
  --surface: rgba(255, 255, 255, 0.9);
  --surface-elevated: rgba(255, 255, 255, 0.98);
  --border: rgba(0, 0, 0, 0.08);
  --glass: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.06);

  --accent: #0284c7;
  --accent-cyan: #0284c7;
  --accent-blue: #2563eb;
  --accent-purple: #7c3aed;
  --accent-green: #059669;
  --accent-muted: rgba(2, 132, 199, 0.1);
  --accent-glow: #0284c7;
  --status-green: #059669;
}

/* Logo toggling */
.logo-dark,
.logo-light {
  opacity: 1 !important;
  filter: none !important;
}
html[data-theme="dark"] .logo-dark { display: block !important; }
html[data-theme="dark"] .logo-light { display: none !important; }
html[data-theme="light"] .logo-dark { display: none !important; }
html[data-theme="light"] .logo-light { display: block !important; }

/* Sun & Moon animation toggling */
html[data-theme="dark"] .theme-sun {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}
html[data-theme="dark"] .theme-moon {
  opacity: 0;
  transform: rotate(-90deg) scale(0);
}

html[data-theme="light"] .theme-sun {
  opacity: 0;
  transform: rotate(90deg) scale(0);
}
html[data-theme="light"] .theme-moon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Navbar glass capsule with increased vertical padding */
header nav {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid var(--border);
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

/* Theme toggle button styling */
.theme-toggle-btn {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
  background: var(--surface-elevated);
  border-color: var(--accent);
}

/* ==========================================================================
   Main Blog Page Layout & Generous Navigation Clearance (Zero Overlap)
   ========================================================================== */

header.fixed {
  padding-bottom: 1.25rem !important;
}

#blog-main {
  padding-top: clamp(7rem, 9.5vw, 8.5rem) !important;
  padding-bottom: clamp(6.5rem, 9vw, 8.5rem) !important;
}

.blog-hero-header-wrap {
  margin-bottom: 2.25rem;
}

.blog-hero-tag {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.45rem;
  display: block;
}

.blog-hero-title {
  font-family: var(--font-display, 'Inter', -apple-system, sans-serif);
  font-weight: 900 !important;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--foreground);
}

/* ==========================================================================
   Hashnode-Style Featured Hero Card (Uncropped & Unstretched)
   ========================================================================== */

.spotlight-wrapper {
  margin-bottom: 4.5rem;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 2.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.spotlight-card:hover {
  border-color: var(--accent);
  box-shadow: 0 14px 40px rgba(56, 189, 248, 0.15);
  transform: translateY(-3px);
}

.spotlight-content {
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Unified Keyword & Tag Pills */
.spotlight-tag-row,
.card-tag-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
}

.badge-featured {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  background: var(--accent-muted);
  color: var(--accent);
  border: 1px solid var(--accent);
  line-height: 1.3;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-weight: 500;
  background: var(--glass);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  padding: 0.22rem 0.65rem;
  border-radius: 9999px;
  line-height: 1.3;
  transition: all 0.2s ease;
}

.tag-badge:hover {
  color: var(--foreground);
  border-color: var(--accent);
  background: var(--surface-elevated);
}

.spotlight-title {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--foreground);
  margin-top: 0.25rem;
  margin-bottom: 0.95rem;
  transition: color 0.2s ease;
}

.spotlight-card:hover .spotlight-title {
  color: var(--accent);
}

.spotlight-excerpt {
  color: var(--muted-foreground);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.spotlight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 1.15rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.author-meta {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.avatar-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Theme Toggle for Profile Photo Logo */
html[data-theme="dark"] .avatar-logo-img {
  filter: brightness(0) invert(1);
}

html[data-theme="light"] .avatar-logo-img {
  filter: none;
}

.author-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.15rem;
}

.author-name-link {
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
}

.author-name-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.post-date-read {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.btn-read-spotlight {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--accent-muted);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.spotlight-card:hover .btn-read-spotlight {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

/* 16:9 Uncropped & Unstretched Featured Media */
.spotlight-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.85rem;
  overflow: hidden;
  background: var(--surface-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.spotlight-card:hover .spotlight-img {
  transform: scale(1.03);
}

/* ==========================================================================
   Filter HUD Box (Themed with Cyber / Ecosystem Accents)
   ========================================================================== */

.filter-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.35rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.filter-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 480px;
}

.search-svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  color: var(--muted);
  pointer-events: none;
}

.search-text-field {
  width: 100%;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.7rem 1.15rem 0.7rem 2.75rem;
  color: var(--foreground);
  font-size: 0.88rem;
  outline: none;
  transition: all 0.2s ease;
}

.search-text-field:focus {
  border-color: var(--accent);
  background: var(--surface-elevated);
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.18);
}

.filter-meta-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.counter-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8rem;
  color: var(--muted-foreground);
}

.sort-dropdown {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  border-radius: 0.6rem;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-dropdown:focus {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
}

.sort-dropdown option {
  background: #0e0e16;
  color: #fafafa;
}

.category-pills-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
}

.pill-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.38rem 0.9rem;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.pill-btn:hover {
  background: var(--surface-elevated);
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.2);
}

.pill-btn.active {
  background: var(--accent-muted);
  color: var(--accent);
  font-weight: 600;
  border-color: var(--accent);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.22);
}

/* ==========================================================================
   Hashnode 16:9 Blog Cards Grid
   ========================================================================== */

#blogGrid {
  margin-bottom: 5.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.15rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

/* Hashnode exact 16:9 Thumbnail */
.blog-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-elevated);
}

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

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.card-read-badge {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fafafa;
  font-size: 0.7rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
}

.blog-card-body {
  padding: 1.15rem 1.25rem 0.95rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.blog-card-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--foreground);
  margin-top: 0.35rem;
  margin-bottom: 0.65rem;
  transition: color 0.2s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--accent);
}

.blog-card-excerpt {
  color: var(--muted-foreground);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.95rem;
}

.card-author-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-author-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.15rem;
}

.card-pubdate {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

.card-read-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: gap 0.2s ease;
}

.blog-card:hover .card-read-link {
  gap: 0.45rem;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4.5rem 1.5rem;
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: 1.15rem;
}

.empty-state-icon {
  width: 44px;
  height: 44px;
  color: var(--muted);
  margin: 0 auto 1rem auto;
}

.empty-state-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.empty-state-desc {
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

/* ==========================================================================
   Fullscreen Reader Modal
   ========================================================================== */

.reader-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--background);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  overflow: hidden;
}

.reader-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  width: 0%;
  z-index: 210;
}

.reader-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 205;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.reader-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--foreground);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reader-back-btn:hover {
  background: var(--surface-elevated);
}

.reader-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-share {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-share:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.btn-external-hashnode {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--glass);
  color: var(--foreground);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-external-hashnode:hover {
  background: var(--foreground);
  color: var(--background);
}

/* Single Scroll Lock for Reader Modal */
html.reader-open,
body.reader-open {
  overflow: hidden !important;
  height: 100vh !important;
}

.reader-scroll-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 6rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.reader-article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.reader-article-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: 1.65rem;
}

.reader-meta-bar {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  margin-top: 0.5rem;
  margin-bottom: 2.25rem;
  padding-top: 0.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.reader-cover-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 2.25rem;
  border: 1px solid var(--border);
}

.reader-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* End of Article Tags Section */
.reader-end-tags-section {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.reader-end-tags-heading {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.reader-end-tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.reader-tag-pill {
  font-size: 0.8rem !important;
  padding: 0.35rem 0.85rem !important;
  border-radius: 9999px !important;
}

.article-prose {
  color: var(--muted-foreground);
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-prose aside,
.article-prose nav {
  display: none !important;
}

.article-prose * {
  max-width: 100%;
}

.article-prose img,
.article-prose picture,
.article-prose figure {
  display: none !important;
}

.article-prose h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.45rem;
}

.article-prose h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--foreground);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-prose p {
  margin-bottom: 1.45rem;
}

.article-prose strong {
  color: var(--foreground);
  font-weight: 600;
}

.article-prose a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-prose blockquote {
  border-left: 3px solid var(--accent);
  background: var(--glass);
  padding: 1rem 1.35rem;
  margin: 1.75rem 0;
  font-style: italic;
  border-radius: 0 0.5rem 0.5rem 0;
}

.article-prose pre {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  padding: 1.15rem;
  overflow-x: auto;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.88rem;
  margin: 1.75rem 0;
}

.article-prose code {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  background: var(--glass);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--accent);
}

.article-prose pre code {
  background: transparent;
  padding: 0;
  color: var(--foreground);
}

/* Toast */
.toast-notice {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  background: var(--surface-elevated);
  border: 1px solid var(--accent);
  color: var(--foreground);
  padding: 0.75rem 1.35rem;
  border-radius: 0.65rem;
  font-size: 0.88rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
  z-index: 300;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.2s ease;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .spotlight-card {
    grid-template-columns: 1fr;
    padding: 1.25rem;
    gap: 1.5rem;
  }
  .spotlight-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    order: -1;
  }
  .spotlight-content {
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 640px) {
  .filter-controls-row {
    flex-direction: column;
    align-items: stretch;
  }
/* Mobile Menu Drawer */
.mobile-menu-drawer {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.mobile-menu-drawer.open {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

#mobileMenuBackdrop.open {
  opacity: 1 !important;
  pointer-events: auto !important;
}

