/* Homepage - Tool-First Design */

.home-page .home-main {
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: block;
  min-height: auto;
  overflow-x: hidden;
}

.home-page {
  overflow-x: hidden;
}

/* Above the fold - Modern Complementary Colors Tool */
.hero-above-fold {
  padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
}

.hero-tagline::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  border-radius: 50%;
  animation: heroDotPulse 2s ease-in-out infinite;
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-above-fold h1 {
  margin-bottom: var(--space-lg);
  font-size: clamp(1.875rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

.hero-intro {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-2xl);
  width: 100%;
}

.hero-below-tool {
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--border);
}

.hero-below-tool p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.hero-below-tool ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 var(--space-lg);
}

.hero-below-tool li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-below-tool li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.hero-below-tool li:last-child {
  margin-bottom: 0;
}

/* Hero tool panel - Glassmorphism-inspired modern card */
.hero-tool-panel {
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 24px;
  padding: var(--space-2xl);
  margin-bottom: 0;
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 10px 20px -5px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(24, 95, 165, 0.03);
  position: relative;
  overflow: hidden;
}

.hero-tool-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  border-radius: 24px 24px 0 0;
}

.hero-tool-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

@media (max-width: 768px) {
  .hero-above-fold {
    width: 100%;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
  .hero-tool-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    min-width: 0;
  }
  .hero-tool-panel {
    padding: var(--space-lg) var(--space-md);
    border-radius: 20px;
    margin-left: 0;
    margin-right: 0;
  }
  .hero-inputs,
  .hero-result-panel {
    min-width: 0;
  }
  .hero-input-row {
    min-width: 0;
  }
  .hero-input-row input[type="text"] {
    min-width: 0;
    flex: 1;
    max-width: 100%;
  }
}

.hero-inputs {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero-wheel-container {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  background: linear-gradient(180deg, rgba(248,250,252,0.5) 0%, transparent 100%);
  border-radius: 16px;
}

.hero-wheel-svg {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.06));
}

.hero-wheel-seg:hover {
  filter: brightness(1.1);
}

.hero-input-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: flex-end;
}

.hero-input-row .form-group {
  margin-bottom: 0;
}

.hero-input-row input[type="text"] {
  width: 130px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-input-row input[type="color"] {
  border-radius: 10px;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-input-row input[type="color"]:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(24, 95, 165, 0.15);
}

.hero-rgb-panel {
  display: none;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding: var(--space-md);
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
}

.hero-rgb-panel.visible {
  display: flex;
}

.hero-rgb-panel input[type="range"] {
  width: 100px;
  min-height: auto;
}

.hero-inputs .form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-input-row .btn-outline,
#hero-eyedropper,
#hero-rgb-toggle {
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.hero-input-row .btn-outline:hover,
#hero-eyedropper:hover,
#hero-rgb-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(24, 95, 165, 0.06);
}

/* Result panel - Elevated card with refined styling */
.hero-result-panel {
  background: var(--bg);
  border: 1px solid rgba(229, 231, 235, 0.6);
  border-radius: 20px;
  padding: var(--space-2xl);
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-result-panel:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.hero-result-panel.hero-pulse {
  box-shadow: 0 0 0 3px var(--orange);
  animation: heroPulse 0.4s ease;
}

@keyframes heroPulse {
  0% { box-shadow: 0 0 0 3px var(--orange); }
  100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); }
}

.hero-result-panel h3 {
  margin-top: 0;
  margin-bottom: var(--space-xl);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-main-result {
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
}

.hero-pair-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.hero-swatch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.hero-swatch-wrap .color-swatch {
  min-width: 80px;
  min-height: 80px;
  width: 80px;
  height: 80px;
  border-radius: 16px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-swatch-wrap .color-swatch:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.hero-base-name,
.hero-comp-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-arrow {
  font-size: 1.75rem;
  color: var(--text-light);
  opacity: 0.7;
  font-weight: 300;
}

.hero-comp-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.hero-comp-details .hex-code,
.hero-comp-details .hero-comp-hex {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Fira Code', monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.hero-comp-details .hero-comp-rgb {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.hero-comp-details .btn-copy {
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.hero-comp-details .btn-copy:hover {
  background: rgba(24, 95, 165, 0.08);
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.hero-contrast-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-wcag-badge {
  padding: var(--space-xs) var(--space-sm);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-wcag-badge.pass-aaa {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
}

.hero-wcag-badge.pass-aa {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
}

.hero-wcag-badge.fail {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
}

.hero-secondary {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(229, 231, 235, 0.8);
}

.hero-secondary h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text);
  letter-spacing: 0.01em;
}

.hero-secondary h4:first-child {
  margin-top: 0;
}

.hero-secondary-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-secondary-row .swatch-item {
  transition: transform 0.2s ease;
}

.hero-secondary-row .swatch-item:hover {
  transform: translateY(-2px);
}

.hero-secondary-row .swatch-item .color-swatch {
  min-width: 52px;
  min-height: 52px;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-secondary-row .swatch-item .color-swatch:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-secondary-row .swatch-item .btn-copy {
  border-radius: 8px;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.hero-secondary-row .swatch-item .btn-copy:hover {
  background: rgba(24, 95, 165, 0.08);
  border-color: var(--blue);
  color: var(--blue);
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.hero-actions .btn-primary {
  box-shadow: 0 4px 14px rgba(239, 159, 39, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239, 159, 39, 0.4);
}

.hero-actions .btn-outline {
  transition: all 0.2s ease;
}

.hero-actions .btn-outline:hover {
  transform: translateY(-1px);
}

/* Saved palette */
.saved-palette-section {
  display: none;
  padding: var(--space-xl) var(--space-lg);
  background: var(--bg-muted);
  border-top: 1px solid var(--border);
}

.saved-palette-section.visible {
  display: block;
}

.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.saved-palette-section h3 {
  margin-bottom: var(--space-md);
  font-size: 1.125rem;
}

.saved-palette-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.saved-pair {
  display: flex;
  gap: 2px;
  padding: 4px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s;
}

.saved-pair:hover {
  border-color: var(--blue);
}

.saved-swatch {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.saved-actions {
  display: flex;
  gap: var(--space-md);
}

/* Quick pairs */
.quick-pairs-section {
  padding: var(--space-2xl) var(--space-lg);
}

@media (max-width: 768px) {
  .quick-pairs-section,
  .harmony-section,
  .definition-section,
  .contrast-section,
  .faq-section,
  .explore-section {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }
}

.quick-pairs-section h2 {
  margin-top: 0;
}

.quick-pairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (max-width: 640px) {
  .quick-pairs-grid {
    grid-template-columns: 1fr;
    overflow-x: auto;
    flex-direction: row;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--space-md);
  }
  .quick-pair-card {
    min-width: 180px;
    flex-shrink: 0;
  }
}

.quick-pair-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.quick-pair-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(24, 95, 165, 0.08);
}

.quick-pair-swatches {
  display: flex;
  gap: var(--space-sm);
}

.quick-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.quick-pair-names {
  font-weight: 600;
  font-size: 1rem;
}

.quick-pair-hex {
  font-family: monospace;
  font-size: 0.8125rem;
  color: var(--text-light);
}

.quick-link {
  font-size: 0.875rem;
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.8125rem;
  min-height: 36px;
  margin-top: auto;
}

/* Harmony explorer */
.harmony-section {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-alt);
}

.harmony-section h2 {
  margin-top: 0;
}

.harmony-base {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.harmony-base .color-swatch {
  min-width: 48px;
  min-height: 48px;
}

.harmony-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-lg);
}

.harmony-strip {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-lg);
}

.harmony-strip h4 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.harmony-strip h4 a {
  color: inherit;
}

.harmony-strip h4 a:hover {
  color: var(--link);
}

.harmony-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.harmony-swatch {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid var(--border);
  flex-shrink: 0;
}

/* Definition */
.definition-section {
  padding: var(--space-2xl) var(--space-lg);
}

.definition-section .section-inner {
  max-width: 720px;
}

.definition-section h2 {
  margin-top: 0;
}

/* Contrast checker - Modern redesign */
.contrast-section {
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(180deg, var(--bg-alt) 0%, rgba(248, 250, 252, 0.6) 100%);
}

.contrast-section h2 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

.contrast-section > .section-inner > p {
  margin-bottom: var(--space-xl);
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.contrast-tool {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  margin-top: var(--space-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 24px;
  padding: var(--space-2xl);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.04), 0 10px 20px -5px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.contrast-tool::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 100%);
  border-radius: 24px 24px 0 0;
}

@media (max-width: 768px) {
  .contrast-tool {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
    border-radius: 20px;
  }
}

.contrast-inputs {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contrast-inputs .form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  margin-bottom: var(--space-sm);
}

.contrast-input-row {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contrast-input-row input[type="text"] {
  flex: 1;
  min-width: 0;
}

.contrast-input-row input[type="color"] {
  flex-shrink: 0;
  width: 48px;
  height: 44px;
  padding: 4px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  background: var(--bg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contrast-input-row input[type="color"]:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(24, 95, 165, 0.2);
}

.contrast-inputs input[type="text"] {
  border-radius: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contrast-inputs input[type="text"]:focus {
  box-shadow: 0 0 0 3px rgba(24, 95, 165, 0.15);
}

.contrast-results {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contrast-preview {
  padding: var(--space-2xl);
  border-radius: 16px;
  font-size: 1.25rem;
  font-weight: 500;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: box-shadow 0.2s ease;
}

.contrast-preview:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contrast-results > p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.contrast-results > p strong.contrast-ratio-value {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-left: var(--space-xs);
}

.contrast-wcag {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm) var(--space-lg);
}

@media (max-width: 480px) {
  .contrast-wcag {
    grid-template-columns: 1fr;
  }
}

.contrast-wcag li {
  margin: 0;
  padding: var(--space-sm) var(--space-md);
  background: rgba(248, 250, 252, 0.8);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  border: 1px solid rgba(229, 231, 235, 0.6);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contrast-wcag li.pass {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: rgba(21, 87, 36, 0.25);
  color: #155724;
}

.contrast-wcag li.pass span {
  font-weight: 700;
  color: #155724;
}

.contrast-wcag li.fail {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border-color: rgba(114, 28, 36, 0.25);
  color: #721c24;
}

.contrast-wcag li.fail span {
  font-weight: 700;
  color: #721c24;
}

.contrast-wcag li span {
  font-weight: 600;
  color: var(--text);
  margin-left: var(--space-xs);
}

.contrast-recommendation {
  padding: var(--space-md) var(--space-lg);
  background: linear-gradient(135deg, rgba(212, 237, 218, 0.6) 0%, rgba(195, 230, 203, 0.4) 100%);
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #155724;
  border: 1px solid rgba(21, 87, 36, 0.15);
  margin: 0 !important;
}

.contrast-recommendation.warning {
  background: linear-gradient(135deg, rgba(255, 243, 205, 0.8) 0%, rgba(255, 235, 205, 0.5) 100%);
  color: #856404;
  border-color: rgba(133, 100, 4, 0.2);
}

.contrast-recommendation.fail {
  background: linear-gradient(135deg, rgba(248, 215, 218, 0.6) 0%, rgba(245, 198, 203, 0.4) 100%);
  color: #721c24;
  border-color: rgba(114, 28, 36, 0.15);
}

/* FAQ */
.faq-section {
  padding: var(--space-2xl) var(--space-lg);
}

.faq-section h2 {
  margin-top: 0;
}

/* Explore */
.explore-section {
  padding: var(--space-2xl) var(--space-lg);
  background: var(--bg-alt);
}

.explore-section h2 {
  margin-top: 0;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.explore-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  color: inherit;
}

.explore-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 12px rgba(24, 95, 165, 0.08);
}

.explore-icon {
  font-size: 2rem;
}

.explore-card img {
  width: 270px;
  height: auto;
  object-fit: cover;
  flex-shrink: 0;
}

.explore-card h3 {
  margin: 0;
  font-size: 1.125rem;
}

.explore-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}
