/* ============================================
   LBPF Brand Components System
   Single source of truth for all visual tokens
   ============================================ */

:root {
  /* Curves / Radii */
  --lbpf-curve-none: 0px;
  --lbpf-curve-subtle: 4px;
  --lbpf-curve-medium: 8px;
  --lbpf-curve-soft: 12px;
  --lbpf-curve-round: 16px;
  --lbpf-curve-full: 999px;
  /* Radius aliases (referenced by page CSS) */
  --lbpf-radius-small: var(--lbpf-curve-subtle);
  --lbpf-radius-medium: var(--lbpf-curve-medium);
  --lbpf-radius-large: var(--lbpf-curve-round);
  --lbpf-radius-pill: var(--lbpf-curve-full);

  /* Typography Families */
  --font-heading: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Typography Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;

  /* Typography Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;

  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.8;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.08em;

  /* Spacing Scale (4/8 system) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-16: 64px;

  /* Core Colors (WARM palette — locked 2026-02-10) */
  --lbpf-color-primary: #8b1436;           /* Deep wine red */
  --lbpf-color-primary-dark: #5e0d25;      /* Darker wine for hover */
  --lbpf-color-secondary: #0b8a44;         /* Dark emerald green */
  --lbpf-color-secondary-dark: #066b33;    /* Darker emerald for hover */
  --lbpf-color-accent: #d4af37;            /* Warm gold */
  --lbpf-color-accent-dark: #b89520;       /* Darker gold for hover */
  --lbpf-color-accent-soft: rgba(212, 175, 55, 0.12); /* Soft gold for tags/badges */
  --lbpf-color-surface: #f9f5f0;           /* Warm off-white */
  --lbpf-color-text: #262220;              /* Deep charcoal */
  --lbpf-color-text-muted: #5b524b;        /* Softer text */
  --lbpf-color-background: #f4efe8;        /* Page background */

  /* Portugal Colors (topic/accent use only) */
  --pt-green: #046A38;
  --pt-red: #DA291C;
  --pt-yellow: #FFE900;
  --pt-blue: #002D72;
  --pt-white: #FFFFFF;

  /* Lisbon Colors (topic/accent use only) */
  --lisbon-gold: #D3AF26;
  --lisbon-green: #417948;
  --lisbon-black: #000000;
  --lisbon-grey: #CAC9C9;

  /* Metallic Colors (badges, levels, rewards) */
  --metallic-silver: linear-gradient(135deg, #C0C0C0, #E8E8E8, #A8A8A8, #D4D4D4);
  --metallic-silver-flat: #C0C0C0;
  --metallic-gold: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --metallic-gold-flat: #BF953F;

  /* Neutral Greys */
  --neutral-50: #F9FAFB;
  --neutral-100: #F3F4F6;
  --neutral-200: #E5E7EB;
  --neutral-300: #D1D5DB;
  --neutral-400: #9CA3AF;
  --neutral-500: #6B7280;
  --neutral-600: #4B5563;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  /* Semantic Colors */
  --lbpf-color-success: #10B981;
  --lbpf-color-success-dark: #059669;
  --lbpf-color-warning: #F59E0B;
  --lbpf-color-warning-dark: #D97706;
  --lbpf-color-error: #EF4444;
  --lbpf-color-error-dark: #DC2626;
  --lbpf-color-info: #3B82F6;
  --lbpf-color-info-dark: #2563EB;

  /* Shadows */
  --lbpf-shadow-none: none;
  --lbpf-shadow-soft: 0 1px 3px rgba(0, 0, 0, 0.1);
  --lbpf-shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
  --lbpf-shadow-strong: 0 10px 24px rgba(0, 0, 0, 0.2);
  --lbpf-shadow-glossy: 0 20px 48px rgba(0, 0, 0, 0.3);
  --lbpf-shadow-xlarge: 0 24px 48px rgba(0, 0, 0, 0.25);

  /* Borders */
  --lbpf-border-thin: 1px;
  --lbpf-border-medium: 2px;
  --lbpf-border-thick: 4px;
  --lbpf-border-color: #e3d8cc;
  --lbpf-border-color-light: rgba(0, 0, 0, 0.04);

  /* Topic Colors */
  --topic-food-base: #417948;
  --topic-food-strong: #046A38;
  --topic-history: #DA291C;
  --topic-tours: #002D72;
  --topic-nightlife: #000000;
  --topic-nightlife-accent: #D3AF26;
  --topic-markets: #FFE900;
  --topic-markets-accent: #D3AF26;
  --topic-events: #FFE900;

  /* Font-size aliases (used by events.css) */
  --font-size-xs: var(--text-xs);
  --font-size-sm: var(--text-sm);
  --font-size-base: var(--text-base);
  --font-size-lg: var(--text-lg);
  --font-size-xl: var(--text-xl);
  --font-size-2xl: var(--text-2xl);
  --font-size-3xl: var(--text-3xl);
  --font-size-4xl: var(--text-4xl);

  /* Gradients - Premium Glossy Magazine Style */
  --lbpf-gradient-warm: linear-gradient(135deg, #f9f5f0 0%, #fdf8f3 30%, #fffcf9 60%, #ffffff 100%);  /* 1. Warm surface: cream → peachy glow → soft white → pure white */
  --lbpf-gradient-hero: linear-gradient(180deg, rgba(20, 10, 15, 0.65) 0%, rgba(10, 5, 8, 0.5) 30%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.15) 100%);  /* 2. Hero overlay: deep wine tint → black → transparent */
  --lbpf-gradient-glossy: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.92) 20%, rgba(255, 255, 255, 0.75) 40%, rgba(255, 255, 255, 0.45) 65%, rgba(255, 255, 255, 0.12) 100%);  /* 3. Glossy sheen: iridescent white shimmer fade */
  --lbpf-gradient-cta: linear-gradient(135deg, #0d9e4f 0%, #0b8a44 25%, #088a42 50%, #066b33 75%, #045426 100%);  /* 4. CTA button: glossy emerald with depth */

  /* L-shape topic marker */
  --lbpf-topic-mark-width: 4px;
}

/* ============================================
   Pills / Chips
   ============================================ */

.lbpf-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--lbpf-curve-full);
  padding: var(--space-2) var(--space-4);
  min-height: 32px;
  border: var(--lbpf-border-thin) solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.70);
  color: var(--lbpf-color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-normal);
  text-decoration: none;
  cursor: default;
  box-shadow: var(--lbpf-shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  line-height: var(--leading-tight);
  gap: var(--space-2);
  white-space: nowrap;
}

.lbpf-pill--primary {
  border-color: rgba(0, 0, 0, 0.04);
  background: var(--lbpf-color-primary);
  color: var(--pt-white);
  box-shadow: var(--lbpf-shadow-medium);
  min-height: 32px;
}

.lbpf-pill--primary:hover {
  background: var(--lbpf-color-primary-dark);
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-pill--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(249, 250, 251, 0.78));
  box-shadow: var(--lbpf-shadow-medium);
}

.lbpf-pill--ghost:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(249, 250, 251, 0.88));
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-pill--tag {
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border-radius: var(--lbpf-curve-full);
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(251, 191, 36, 0.35));
  box-shadow: var(--lbpf-shadow-soft);
  min-height: 28px;
}

.lbpf-pill--reviews {
  border-color: var(--lbpf-color-accent);
  background: var(--lbpf-color-accent);
  color: var(--neutral-900);
  font-weight: var(--weight-bold);
  min-height: 28px;
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-4);
  box-sizing: border-box;
  line-height: 1;
}

.lbpf-pill--reviews:hover {
  background: var(--lbpf-color-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--lbpf-shadow-strong);
}

/* State helpers */
.lbpf-pill--active {
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-pill--muted {
  opacity: 0.7;
}

/* ============================================
   Cards
   ============================================ */

.lbpf-card {
  border-radius: var(--lbpf-curve-medium);
  background: var(--lbpf-color-surface);
  border: var(--lbpf-border-thin) solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--lbpf-shadow-soft);
  padding: var(--space-4);
}

.lbpf-card--hero {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lbpf-shadow-strong);
  border-color: rgba(255, 255, 255, 0.9);
  padding: var(--space-6);
}

.lbpf-card--admin {
  background: var(--neutral-50);
  border-color: var(--neutral-200);
  box-shadow: var(--lbpf-shadow-soft);
}

/* ============================================
   Tiles (Bento / Dashboard)
   ============================================ */

.lbpf-tile {
  border-radius: var(--lbpf-curve-medium);
  padding: var(--space-4) var(--space-6);
  border: var(--lbpf-border-thin) solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--lbpf-shadow-medium);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lbpf-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-tile--bento {
  background: radial-gradient(
    circle at 22% 0%,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.60) 38%,
    rgba(255, 255, 255, 0.10) 100%
  );
  border-color: rgba(255, 255, 255, 0.90);
  box-shadow: var(--lbpf-shadow-glossy);
}

.lbpf-tile--dashboard {
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--neutral-300);
  box-shadow: var(--lbpf-shadow-medium);
}

/* ============================================
   Buttons
   ============================================ */

.lbpf-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border-radius: var(--lbpf-curve-medium);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: var(--lbpf-border-thin) solid transparent;
}

.lbpf-button--primary {
  background: var(--lbpf-color-primary);
  color: var(--pt-white);
  box-shadow: var(--lbpf-shadow-medium);
}

.lbpf-button--primary:hover {
  background: var(--lbpf-color-primary-dark);
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-button--secondary {
  background: var(--lbpf-color-secondary);
  color: var(--pt-white);
  box-shadow: var(--lbpf-shadow-medium);
}

.lbpf-button--secondary:hover {
  background: var(--lbpf-color-secondary-dark);
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-button--outline {
  background: transparent;
  border-color: var(--lbpf-color-primary);
  color: var(--lbpf-color-primary);
}

.lbpf-button--outline:hover {
  background: var(--lbpf-color-primary);
  color: var(--pt-white);
}

.lbpf-button--ghost {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--lbpf-color-text);
}

.lbpf-button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lbpf-button--small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.lbpf-button--large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

/* ============================================
   Nav pills (bottom nav, sidebar, tabs)
   ============================================ */

.lbpf-nav-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--lbpf-curve-full);
  border: var(--lbpf-border-thin) solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.70);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-xs);
  font-family: var(--font-body);
  color: var(--neutral-600);
  box-shadow: var(--lbpf-shadow-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lbpf-nav-pill--active {
  border-color: var(--lbpf-color-primary);
  color: var(--lbpf-color-primary);
  box-shadow: var(--lbpf-shadow-medium);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 242, 242, 1));
}

.lbpf-nav-pill--muted {
  opacity: 0.7;
}

/* ============================================
   Breadcrumb Navigation
   Luxury-style breadcrumbs for all public pages
   ============================================ */

.lbpf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;
}

.lbpf-breadcrumb a {
  color: var(--lbpf-color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lbpf-breadcrumb a:hover {
  color: var(--lbpf-color-primary);
  text-decoration: underline;
}

.lbpf-breadcrumb .separator {
  color: var(--lbpf-color-text-muted);
  opacity: 0.5;
  user-select: none;
}

.lbpf-breadcrumb .current {
  color: var(--lbpf-color-text);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .lbpf-breadcrumb {
    font-size: 0.8rem;
    gap: 6px;
    margin-bottom: 10px;
  }
}

/* ============================================
   Enhanced Auth Modal
   Login/Register modal with social login and click-outside-close
   ============================================ */

.auth-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.auth-modal.active {
  opacity: 1;
  visibility: visible;
}

.auth-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.auth-modal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transition: transform 0.3s ease;
}

.auth-modal.active .auth-modal-container {
  transform: translate(-50%, -50%) scale(1);
}

.auth-modal-content {
  background: white;
  border-radius: 16px;
  box-shadow: var(--lbpf-shadow-large);
  padding: 32px;
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--lbpf-color-text-muted);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.auth-modal-close:hover {
  background: var(--lbpf-color-background);
  color: var(--lbpf-color-text);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--lbpf-color-text);
  margin-bottom: 8px;
}

.auth-modal-header p {
  color: var(--lbpf-color-text-muted);
  font-size: 1rem;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--lbpf-color-background);
  padding: 4px;
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  padding: 12px 16px;
  background: none;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--lbpf-color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-tab.active {
  background: white;
  color: var(--lbpf-color-primary);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--lbpf-color-text);
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--lbpf-color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--lbpf-color-text);
  background: white;
  transition: all 0.2s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--lbpf-color-primary);
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--lbpf-color-text);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid var(--lbpf-color-border);
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--lbpf-color-primary);
  border-color: var(--lbpf-color-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.forgot-password {
  color: var(--lbpf-color-primary);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: opacity 0.2s ease;
}

.forgot-password:hover {
  opacity: 0.8;
}

.auth-btn {
  width: 100%;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-btn.primary {
  background: var(--lbpf-color-primary);
  color: white;
}

.auth-btn.primary:hover {
  background: var(--lbpf-color-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.auth-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--lbpf-color-border);
}

.auth-divider span {
  color: var(--lbpf-color-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--lbpf-color-border);
  border-radius: 8px;
  background: white;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--lbpf-color-text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.social-btn:hover {
  background: var(--lbpf-color-background);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-btn.google:hover {
  border-color: #4285F4;
}

.social-btn.facebook:hover {
  border-color: #1877F2;
}

.auth-footer {
  text-align: center;
  margin-top: 24px;
}

.auth-footer p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--lbpf-color-text-muted);
  line-height: 1.4;
}

.auth-footer a {
  color: var(--lbpf-color-primary);
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .auth-modal-container {
    width: 95%;
    top: 20px;
    transform: translate(-50%, 0) scale(0.9);
  }
  
  .auth-modal.active .auth-modal-container {
    transform: translate(-50%, 0) scale(1);
  }
  
  .auth-modal-content {
    padding: 24px;
  }
  
  .auth-modal-header h2 {
    font-size: 1.5rem;
  }
  
  .form-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================
   L-shape Topic Marker
   Visual brand signature: left + bottom border
   colored by topic. Also used as watermark anchor.
   ============================================ */

.lbpf-topic-mark {
  position: relative;
  border-left: var(--lbpf-topic-mark-width) solid var(--lbpf-color-primary);
  border-bottom: var(--lbpf-topic-mark-width) solid var(--lbpf-color-primary);
}

.lbpf-topic-mark--food {
  border-color: var(--topic-food-base);
}

.lbpf-topic-mark--food-strong {
  border-color: var(--topic-food-strong);
}

.lbpf-topic-mark--history {
  border-color: var(--topic-history);
}

.lbpf-topic-mark--tours {
  border-color: var(--topic-tours);
}

.lbpf-topic-mark--nightlife {
  border-color: var(--topic-nightlife);
}

.lbpf-topic-mark--markets {
  border-color: var(--topic-markets);
}

.lbpf-topic-mark--events {
  border-color: var(--topic-events);
}

/* ============================================
   Forms
   ============================================ */

.lbpf-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.lbpf-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--lbpf-color-text);
  letter-spacing: var(--tracking-normal);
}

.lbpf-label--required::after {
  content: ' *';
  color: var(--lbpf-color-error);
}

.lbpf-input,
.lbpf-textarea,
.lbpf-select {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--weight-normal);
  color: var(--lbpf-color-text);
  background: var(--pt-white);
  border: var(--lbpf-border-thin) solid var(--neutral-300);
  border-radius: var(--lbpf-curve-medium);
  padding: var(--space-2) var(--space-3);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.lbpf-input:focus,
.lbpf-textarea:focus,
.lbpf-select:focus {
  outline: none;
  border-color: var(--lbpf-color-primary);
  box-shadow: 0 0 0 3px rgba(139, 20, 54, 0.12);
}

.lbpf-input::placeholder,
.lbpf-textarea::placeholder {
  color: var(--neutral-400);
}

.lbpf-input--error,
.lbpf-textarea--error,
.lbpf-select--error {
  border-color: var(--lbpf-color-error);
}

.lbpf-input--error:focus,
.lbpf-textarea--error:focus,
.lbpf-select--error:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.lbpf-textarea {
  min-height: 100px;
  resize: vertical;
}

.lbpf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234B5563' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-3) center;
  padding-right: var(--space-8);
  cursor: pointer;
}

.lbpf-form-hint {
  font-size: var(--text-xs);
  color: var(--neutral-500);
}

.lbpf-form-error {
  font-size: var(--text-xs);
  color: var(--lbpf-color-error);
  font-weight: var(--weight-medium);
}

/* ============================================
   Badges (status indicators)
   ============================================ */

.lbpf-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 2px var(--space-2);
  border-radius: var(--lbpf-curve-subtle);
  line-height: var(--leading-normal);
}

.lbpf-badge--active {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
}

.lbpf-badge--pending {
  background: rgba(245, 158, 11, 0.12);
  color: #92400E;
}

.lbpf-badge--draft {
  background: rgba(107, 114, 128, 0.12);
  color: var(--neutral-600);
}

.lbpf-badge--error {
  background: rgba(239, 68, 68, 0.12);
  color: #991B1B;
}

.lbpf-badge--info {
  background: rgba(59, 130, 246, 0.12);
  color: #1E40AF;
}

.lbpf-badge--premium {
  background: var(--lbpf-color-accent-soft);
  color: #78600A;
}

.lbpf-badge--dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: var(--lbpf-curve-full);
  background: currentColor;
  flex-shrink: 0;
}

/* ============================================
   Modals
   ============================================ */

.lbpf-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: var(--space-4);
}

.lbpf-modal {
  background: var(--pt-white);
  border-radius: var(--lbpf-curve-soft);
  box-shadow: var(--lbpf-shadow-glossy);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.lbpf-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4) var(--space-6);
  border-bottom: var(--lbpf-border-thin) solid var(--neutral-200);
}

.lbpf-modal__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--lbpf-color-text);
  margin: 0;
}

.lbpf-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--neutral-500);
  font-size: var(--text-xl);
  padding: var(--space-1);
  border-radius: var(--lbpf-curve-subtle);
  transition: background 0.15s ease;
}

.lbpf-modal__close:hover {
  background: var(--neutral-100);
  color: var(--lbpf-color-text);
}

.lbpf-modal__body {
  padding: var(--space-6);
}

.lbpf-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  border-top: var(--lbpf-border-thin) solid var(--neutral-200);
}

.lbpf-modal--wide {
  max-width: 720px;
}

.lbpf-modal--narrow {
  max-width: 400px;
}

/* ============================================
   Tables
   ============================================ */

.lbpf-table-wrap {
  overflow-x: auto;
  border-radius: var(--lbpf-curve-medium);
  border: var(--lbpf-border-thin) solid var(--neutral-200);
}

.lbpf-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.lbpf-table th {
  background: var(--neutral-50);
  font-weight: var(--weight-semibold);
  color: var(--neutral-600);
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border-bottom: var(--lbpf-border-medium) solid var(--neutral-200);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  white-space: nowrap;
}

.lbpf-table td {
  padding: var(--space-3) var(--space-4);
  border-bottom: var(--lbpf-border-thin) solid var(--neutral-100);
  color: var(--lbpf-color-text);
  vertical-align: middle;
}

.lbpf-table tr:last-child td {
  border-bottom: none;
}

.lbpf-table tr:hover td {
  background: rgba(249, 245, 240, 0.5);
}

.lbpf-table--striped tr:nth-child(even) td {
  background: var(--neutral-50);
}

.lbpf-table--compact th,
.lbpf-table--compact td {
  padding: var(--space-2) var(--space-3);
}

/* ============================================
   Magazine — Article Header
   ============================================ */

.lbpf-article-header {
  text-align: center;
  padding: var(--space-16) var(--space-4) var(--space-8);
  max-width: 720px;
  margin: 0 auto;
}

.lbpf-article-header__kicker {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--lbpf-color-primary);
  margin-bottom: var(--space-3);
}

.lbpf-article-header__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  color: var(--lbpf-color-text);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-4);
}

.lbpf-article-header__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-normal);
  color: var(--lbpf-color-text-muted);
  line-height: var(--leading-relaxed);
  margin: 0 0 var(--space-6);
}

.lbpf-article-header__meta {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--neutral-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
}

.lbpf-article-header__meta-divider {
  width: 4px;
  height: 4px;
  border-radius: var(--lbpf-curve-full);
  background: var(--neutral-400);
}

/* ============================================
   Magazine — Section Divider
   ============================================ */

.lbpf-divider {
  border: none;
  height: var(--lbpf-border-thin);
  background: var(--neutral-200);
  margin: var(--space-10) 0;
}

.lbpf-divider--ornament {
  background: none;
  height: auto;
  text-align: center;
  margin: var(--space-16) 0;
}

.lbpf-divider--ornament::after {
  content: '◆ ◆ ◆';
  font-size: var(--text-xs);
  color: var(--lbpf-color-accent);
  letter-spacing: 0.5em;
}

.lbpf-divider--brand {
  height: var(--lbpf-border-medium);
  background: linear-gradient(90deg, var(--lbpf-color-primary) 0%, var(--lbpf-color-accent) 50%, var(--lbpf-color-secondary) 100%);
  border-radius: var(--lbpf-curve-full);
  max-width: 120px;
  margin: var(--space-10) auto;
}

/* ============================================
   Magazine — Pull Quote
   ============================================ */

.lbpf-pullquote {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: var(--weight-normal);
  font-style: italic;
  color: var(--lbpf-color-primary);
  line-height: var(--leading-relaxed);
  text-align: center;
  max-width: 600px;
  margin: var(--space-10) auto;
  padding: var(--space-6) var(--space-4);
  position: relative;
}

.lbpf-pullquote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  font-style: normal;
  color: var(--lbpf-color-accent);
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.4;
}

.lbpf-pullquote__attribution {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-style: normal;
  font-weight: var(--weight-medium);
  color: var(--lbpf-color-text-muted);
  margin-top: var(--space-3);
}

/* ============================================
   Magazine — Drop Cap
   ============================================ */

.lbpf-dropcap::first-letter {
  font-family: var(--font-heading);
  font-size: 3.5em;
  font-weight: var(--weight-bold);
  float: left;
  line-height: 0.8;
  margin-right: var(--space-2);
  margin-top: 0.05em;
  color: var(--lbpf-color-primary);
}

/* ============================================
   Magazine — Feature Block (hero story card)
   ============================================ */

.lbpf-feature {
  position: relative;
  border-radius: var(--lbpf-curve-soft);
  overflow: hidden;
  background: var(--lbpf-color-surface);
  box-shadow: var(--lbpf-shadow-strong);
}

.lbpf-feature__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.lbpf-feature__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  color: var(--pt-white);
}

.lbpf-feature__kicker {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--lbpf-color-accent);
  margin-bottom: var(--space-2);
}

.lbpf-feature__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  margin: 0 0 var(--space-2);
}

.lbpf-feature__excerpt {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  opacity: 0.9;
  margin: 0;
}

/* ============================================
   Magazine — Column Layout
   ============================================ */

.lbpf-columns {
  display: grid;
  gap: var(--space-8);
}

.lbpf-columns--2 {
  grid-template-columns: 1fr 1fr;
}

.lbpf-columns--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.lbpf-columns--sidebar {
  grid-template-columns: 2fr 1fr;
}

@media (max-width: 768px) {
  .lbpf-columns--2,
  .lbpf-columns--3,
  .lbpf-columns--sidebar {
    grid-template-columns: 1fr;
  }

  .lbpf-article-header__title {
    font-size: var(--text-3xl);
  }

  .lbpf-feature__image {
    height: 280px;
  }

  .lbpf-feature__title {
    font-size: var(--text-2xl);
  }

  .lbpf-pullquote {
    font-size: var(--text-xl);
  }
}

/* ============================================
   Magazine — Byline / Author Strip
   ============================================ */

.lbpf-byline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
}

.lbpf-byline__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--lbpf-curve-full);
  object-fit: cover;
  border: var(--lbpf-border-medium) solid var(--lbpf-color-accent-soft);
}

.lbpf-byline__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--lbpf-color-text);
}

.lbpf-byline__role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--neutral-500);
}

/* ============================================
   Magazine — Image Caption
   ============================================ */

.lbpf-figure {
  margin: var(--space-8) 0;
}

.lbpf-figure__image {
  width: 100%;
  border-radius: var(--lbpf-curve-medium);
  display: block;
  box-shadow: var(--lbpf-shadow-soft);
}

.lbpf-figure__caption {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--neutral-500);
  font-style: italic;
  margin-top: var(--space-2);
  text-align: center;
}

/* ============================================
   Weather Widget (Main Page Experiment)
   ============================================ */

.weather-widget-demo-wrap {
  margin-top: var(--space-8);
}

.weather-widget-demo-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--lbpf-color-text);
  margin: 0 0 var(--space-4);
}

.weather-location-select {
  min-width: 130px;
  height: 36px;
  border: 1px solid var(--neutral-300);
  border-radius: var(--lbpf-curve-medium);
  background: rgba(255, 255, 255, 0.72);
  color: var(--lbpf-color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  padding: 0 var(--space-2);
}

.weather-location-select--toolbar {
  flex: 0 0 auto;
}

.weather-widget {
  width: 880px;
  box-sizing: border-box;
  background: linear-gradient(135deg, rgba(135, 206, 250, 0.3) 0%, rgba(255, 255, 255, 0.5) 100%);
  backdrop-filter: blur(26px) saturate(185%);
  -webkit-backdrop-filter: blur(26px) saturate(185%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--lbpf-curve-round);
  box-shadow: var(--lbpf-shadow-soft);
  overflow: hidden;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.weather-widget--sunny {
  background: linear-gradient(135deg, rgba(255, 226, 132, 0.36) 0%, rgba(255, 250, 225, 0.62) 100%);
  border-color: rgba(255, 223, 128, 0.55);
}

.weather-widget--rain {
  background: linear-gradient(135deg, rgba(129, 154, 181, 0.35) 0%, rgba(208, 220, 233, 0.55) 100%);
  border-color: rgba(160, 184, 207, 0.55);
}

.weather-widget--fog {
  background: linear-gradient(135deg, rgba(210, 214, 220, 0.35) 0%, rgba(241, 243, 246, 0.6) 100%);
  border-color: rgba(217, 223, 231, 0.65);
}

.weather-widget--mixed {
  background: linear-gradient(135deg, rgba(158, 204, 255, 0.32) 0%, rgba(255, 245, 216, 0.48) 100%);
  border-color: rgba(189, 210, 237, 0.6);
}

.weather-widget--sea {
  background: linear-gradient(135deg, rgba(124, 213, 225, 0.32) 0%, rgba(223, 251, 245, 0.58) 100%);
  border-color: rgba(156, 222, 218, 0.62);
}

.weather-widget--strip {
  height: 128px;
  cursor: pointer;
}

.weather-strip-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--space-1);
  padding: 4px var(--space-2);
  height: 100%;
  box-sizing: border-box;
  align-items: stretch;
}

.weather-day-card {
  background: rgba(255, 255, 255, 0.66);
  border-radius: var(--lbpf-curve-subtle);
  text-align: center;
  display: grid;
  grid-template-rows: 14px 24px 14px 14px;
  align-content: center;
  justify-items: center;
  height: auto;
  align-self: stretch;
  gap: 2px;
  padding: 0 var(--space-1);
  box-sizing: border-box;
  min-height: 0;
  overflow: hidden;
}

.weather-day-card__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.weather-day-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 24px;
  font-size: 1.25rem;
  line-height: 1;
  overflow: hidden;
}

.weather-day-card__temp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 13px;
  font-weight: var(--weight-bold);
  line-height: 1;
  white-space: nowrap;
}

.weather-day-card__rain {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 12px;
  font-weight: var(--weight-medium);
  line-height: 1;
  white-space: nowrap;
}

.weather-day-card__rain--low {
  color: #046A38;
}

.weather-day-card__rain--mid {
  color: #F59E0B;
}

.weather-day-card__rain--high {
  color: #DA291C;
}

.weather-widget--expanded {
  margin-top: var(--space-4);
}

.weather-expanded-toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.2);
}

.weather-view-toggle {
  flex: 1;
  display: flex;
}

.weather-view-button {
  flex: 1;
  padding: 0.5rem 0.75rem;
  min-height: 36px;
  border: none;
  background: rgba(255, 255, 255, 0.3);
  color: var(--lbpf-color-text);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  cursor: pointer;
}

.weather-view-button:first-child {
  border-radius: var(--lbpf-curve-medium) 0 0 var(--lbpf-curve-medium);
}

.weather-view-button:last-child {
  border-radius: 0 var(--lbpf-curve-medium) var(--lbpf-curve-medium) 0;
}

.weather-view-button.is-active {
  background: #4A9EFF;
  color: var(--pt-white);
}

.weather-close-button {
  padding: 0.5rem 1rem;
  min-height: 36px;
  border: none;
  border-radius: var(--lbpf-curve-medium);
  background: rgba(255, 255, 255, 0.72);
  color: var(--lbpf-color-text);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  cursor: pointer;
}

.weather-view-panel {
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.1);
}

.weather-view-panel--snug {
  padding-top: var(--space-2);
}

.weather-view-heading {
  font-size: var(--text-xs);
  color: var(--lbpf-color-text-muted);
  margin-bottom: var(--space-3);
  text-align: center;
}

.weather-hourly-desktop-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2);
}

.weather-hourly-nav {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: var(--lbpf-curve-medium);
  background: rgba(255, 255, 255, 0.72);
  color: var(--lbpf-color-text);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.weather-hourly-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.weather-view-desktop-spacer {
  height: 32px;
  margin-bottom: var(--space-2);
}

.weather-hourly-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (6 * var(--space-2))) / 7);
  gap: var(--space-2);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: var(--space-2);
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.weather-hourly-scroll::-webkit-scrollbar {
  display: none;
}

.weather-daily-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: var(--space-2);
}

.weather-detail-card {
  background: rgba(255, 255, 255, 0.66);
  border-radius: var(--lbpf-curve-medium);
  padding: 0.625rem 0.5rem;
  text-align: center;
  display: grid;
  grid-template-rows: 2.2rem 2rem 1.4rem 1rem 1rem 1rem;
  align-items: center;
  justify-items: center;
  gap: 0.2rem;
}

.weather-detail-card--hourly {
  grid-template-columns: none;
  grid-template-rows: 2.2rem 2rem 1.4rem 1rem 1rem 1rem;
  scroll-snap-align: start;
}

.weather-detail-card--hourly .weather-detail-card__day,
.weather-detail-card--hourly .weather-detail-card__icon,
.weather-detail-card--hourly .weather-detail-card__temp,
.weather-detail-card--hourly .weather-detail-card__rain,
.weather-detail-card--hourly .weather-detail-card__wind,
.weather-detail-card--hourly .weather-detail-card__uv {
  white-space: nowrap;
}

.weather-detail-card__day {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  line-height: 1.1;
}

.weather-detail-card__icon {
  font-size: 1.6rem;
  line-height: 1;
}

.weather-detail-card__temp {
  font-size: var(--text-sm);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.weather-detail-card__rain {
  font-size: var(--text-xs);
  color: #046A38;
  line-height: 1;
}

.weather-detail-card__wind {
  font-size: 11px;
  color: var(--lbpf-color-text-muted);
  line-height: 1;
  white-space: nowrap;
}

.weather-detail-card__uv {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: #10B981;
  line-height: 1;
  min-height: 1em;
}

.weather-earthquake-module {
  margin: 0 var(--space-4) var(--space-4);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--lbpf-curve-medium);
  padding: var(--space-3) var(--space-4);
}

.weather-earthquake-module__title {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--lbpf-color-text);
  margin-bottom: 2px;
}

.weather-earthquake-module__meta {
  font-size: var(--text-xs);
  color: var(--lbpf-color-text-muted);
}

.weather-earthquake-module__history {
  margin: var(--space-2) 0 0;
  padding-left: 1rem;
  font-size: var(--text-xs);
  color: var(--lbpf-color-text-muted);
  line-height: 1.4;
}

.weather-earthquake-module__history li {
  margin-bottom: 2px;
}

.weather-widget-credit {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: var(--text-xs);
  color: var(--lbpf-color-text-muted);
}

.weather-widget-note {
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--lbpf-color-text-muted);
}

.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .weather-hourly-desktop-controls {
    display: none;
  }

  .weather-view-desktop-spacer {
    display: none;
  }
}
