/* ============================================
   Everything Art — Companion App Styles
   Micador (Australian since 1952)
   Typography: Poppins + Cormorant (Google Fonts)
   ============================================ */

:root {
  --micador-blue: #2AABE1;
  --micador-green: #3ECDA0;
  --micador-red: #D4493A;
  --warm-bg: #F8F5F0;
  --charcoal: #333333;
  --light-grey: #E8E4DF;
  --white: #FFFFFF;
  --text-primary: #2D2D2D;
  --text-secondary: #666666;
  --text-light: #999999;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.25s ease;
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant', Georgia, 'Times New Roman', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--font-primary);
  background: var(--warm-bg);
  color: var(--text-primary);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

/* ---- App Shell ---- */

#app {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.view {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
  -webkit-overflow-scrolling: touch;
}

.view.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.view.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---- Scanner View ---- */

#scanner-view {
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#camera-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#camera-feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#scan-canvas {
  display: none;
}

.scan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 60px 24px 40px;
  pointer-events: none;
}

.scan-header {
  text-align: center;
}

/* Logo row: M ball + text */
.scan-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
}

.scan-logo-ball {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.3));
}

.scan-logo {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.scan-logo span {
  color: var(--micador-blue);
}

.scan-prompt {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Scan frame with corner brackets */
.scan-frame {
  width: 260px;
  height: 260px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
  position: relative;
  flex-shrink: 0;
}

.scan-frame-corner {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--micador-blue);
  border-style: solid;
}

.scan-frame-corner.tl {
  top: -2px;
  left: -2px;
  border-width: 3px 0 0 3px;
  border-radius: var(--radius-sm) 0 0 0;
}

.scan-frame-corner.tr {
  top: -2px;
  right: -2px;
  border-width: 3px 3px 0 0;
  border-radius: 0 var(--radius-sm) 0 0;
}

.scan-frame-corner.bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 var(--radius-sm);
}

.scan-frame-corner.br {
  bottom: -2px;
  right: -2px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 var(--radius-sm) 0;
}

.scan-detection-label {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--micador-blue);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.scan-detection-label.visible {
  opacity: 1;
}

.scan-progress-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
}

.scan-progress-ring circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
}

.scan-progress-ring .bg {
  stroke: rgba(255,255,255,0.15);
}

.scan-progress-ring .progress {
  stroke: var(--micador-blue);
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transition: stroke-dashoffset 0.15s ease;
  transform: rotate(-90deg);
  transform-origin: center;
}

.scan-footer {
  text-align: center;
  pointer-events: auto;
}

.scan-skip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition);
}

.scan-skip-btn:active {
  background: rgba(255,255,255,0.25);
}

/* Camera permission denied */
.camera-denied {
  padding: 40px 24px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 16px;
}

.camera-denied h2 {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.camera-denied p {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 300px;
  line-height: 1.5;
}

.camera-icon-large {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---- Primary Button ---- */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--micador-blue);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), background var(--transition);
}

.btn-primary:active {
  transform: scale(0.97);
  background: #1E9AD0;
}

/* ============================================
   PICKER VIEW — Paper cards with textures
   ============================================ */

#picker-view {
  background: var(--warm-bg);
  padding-bottom: 100px;
}

.picker-hero {
  text-align: center;
  padding: 48px 20px 24px;
}

.cover-img {
  width: 160px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}

.picker-hero h2 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.picker-hero h2 .accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--micador-blue);
}

.picker-subtitle {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* Paper cards grid */
.paper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 16px;
  max-width: 420px;
  margin: 0 auto;
}

.paper-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.paper-card:active {
  transform: scale(0.97);
}

.card-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 12px 14px 14px;
}

.card-body h3 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.card-body p {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* About Micador card */
.about-card .about-img {
  width: 100%;
  height: 110px;
  background: var(--micador-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-card .about-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ---- About Overlay ---- */

.about-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.about-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.3s ease;
  max-height: 85vh;
  overflow-y: auto;
}

@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.about-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--warm-bg);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: background var(--transition);
}

.about-close:active {
  background: var(--light-grey);
}

.about-logo-large {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 16px;
}

.about-panel h2 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.about-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.about-text {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 12px;
}

.about-link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--micador-blue);
  text-decoration: none;
  padding: 10px 24px;
  border: 2px solid var(--micador-blue);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.about-link:active {
  background: var(--micador-blue);
  color: #fff;
}

/* ============================================
   GUIDE VIEW — Paper type detail
   ============================================ */

#guide-view {
  background: var(--warm-bg);
}

/* Hero with paper texture background */
.guide-hero {
  position: relative;
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.guide-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.35) 100%);
  pointer-events: none;
}

.guide-back-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  cursor: pointer;
  transition: background var(--transition);
}

.guide-back-btn:active {
  background: rgba(255,255,255,0.35);
}

.guide-hero-content {
  position: relative;
  z-index: 2;
  padding: 24px 20px;
}

.guide-hero-content h1 {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 400;
}

/* Light papers (white, grid, dot) get dark text with lighter overlay */
.hero-text-dark h1 { color: var(--text-primary); }
.hero-text-dark .hero-tagline { color: var(--text-secondary); }

.guide-hero:has(.hero-text-dark)::after {
  background: linear-gradient(to bottom, rgba(255,255,255,0.2) 0%, rgba(248,245,240,0.75) 100%);
}

/* Dark papers (kraft, black) get light text */
.hero-text-light h1 { color: #fff; }
.hero-text-light .hero-tagline { color: rgba(255,255,255,0.85); }

/* Fallback for browsers without :has() */
@supports not (selector(:has(*))) {
  .hero-text-dark h1 { color: var(--text-primary); text-shadow: 0 1px 4px rgba(255,255,255,0.6); }
  .hero-text-dark .hero-tagline { color: var(--text-secondary); text-shadow: 0 1px 4px rgba(255,255,255,0.6); }
}

/* Guide body content */
.guide-description {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.65;
  padding: 20px 0 8px;
}

.guide-content {
  padding: 0 16px 100px;
}

.guide-section {
  margin-bottom: 28px;
}

.guide-section-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-primary);
}

/* Works / Avoid cards */
.works-avoid-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.works-card, .avoid-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.works-card h3, .avoid-card h3 {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.works-card h3 { color: var(--micador-green); }
.avoid-card h3 { color: #E5605E; }

.works-card ul, .avoid-card ul {
  list-style: none;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-secondary);
}

.works-card li, .avoid-card li {
  padding: 3px 0;
  padding-left: 16px;
  position: relative;
}

.works-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--micador-green);
  font-weight: 700;
  font-size: 12px;
}

.avoid-card li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #E5605E;
  font-weight: 700;
  font-size: 12px;
}

/* Technique cards with numbered layout */
.technique-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  display: flex;
  align-items: stretch;
}

.technique-number {
  flex-shrink: 0;
  width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42,171,225,0.08);
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--micador-blue);
}

.technique-body {
  padding: 16px;
  flex: 1;
}

.technique-body h3 {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.technique-body p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

.technique-products {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(42,171,225,0.08);
  color: var(--micador-blue);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
}

.product-tag:active {
  background: rgba(42,171,225,0.15);
}

/* Video cards */
.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}

.video-thumbnail {
  width: 100%;
  height: 180px;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.video-play-btn::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent var(--micador-blue);
  margin-left: 3px;
}

.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 4px;
}

.video-info {
  padding: 14px 16px;
}

.video-info h3 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}

/* ============================================
   LEARN / GALLERY VIEW
   ============================================ */

#gallery-view {
  background: var(--warm-bg);
}

.gallery-header {
  text-align: center;
  padding: 40px 16px 8px;
}

.gallery-header h2 {
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.gallery-header p {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-secondary);
}

/* Filter chips */
.gallery-filter {
  display: flex;
  gap: 8px;
  padding: 16px 16px 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gallery-filter::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--light-grey);
  background: var(--white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-chip.active {
  background: var(--micador-blue);
  border-color: var(--micador-blue);
  color: #fff;
}

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 16px 100px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition);
}

.gallery-item:active {
  transform: scale(0.97);
}

.gallery-item-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.gallery-item-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
  pointer-events: none;
}

.gi-label {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 10px 12px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ---- Product Modal ---- */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 100;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 24px 20px 36px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-handle {
  width: 40px;
  height: 4px;
  background: var(--light-grey);
  border-radius: 2px;
  margin: 0 auto 20px;
}

.modal-product-image {
  width: 100%;
  height: 200px;
  background: var(--warm-bg);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.modal-content h2 {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-content p {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ---- Bottom Nav ---- */

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0,0,0,0.06);
  z-index: 50;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  color: var(--text-light);
  transition: color var(--transition);
}

.nav-item.active {
  color: var(--micador-blue);
}

.nav-item .nav-icon {
  width: 22px;
  height: 22px;
}

.nav-item .nav-label {
  font-family: var(--font-primary);
  font-size: 10px;
  font-weight: 600;
}

/* ---- Utility ---- */

/* Generic hidden (for camera-denied, containers etc — NOT .view elements) */
:not(.view).hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ---- Responsive ---- */

@media (min-width: 600px) {
  .paper-grid {
    max-width: 500px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .works-avoid-grid {
    gap: 16px;
  }

  .guide-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .guide-hero {
    height: 280px;
  }
}
