/**
 * Atchison Golf Club - Shared Styles
 * White-Label Ready Design System
 * 
 * Usage: <link rel="stylesheet" href="./styles.css">
 * Override tenant-specific colors via CSS variables
 */

/* =============================================================================
   CSS VARIABLES - DESIGN TOKENS
   ============================================================================= */

:root {
  /* Brand Colors - Override these for white-label */
  --brand-primary: #0c1320;
  --brand-secondary: #1a472a;
  --brand-accent: #4CAF50;
  --brand-accent-hover: #45a049;
  
  /* Core Colors */
  --ink: #0c1320;
  --ink-2: #101a2b;
  --ink-light: #1a2332;
  --muted: #d7dde8;
  --muted-dark: #8a94a6;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --black: #0a0a0a;
  
  /* Surface Colors */
  --surface-dark: rgba(14, 22, 35, 0.52);
  --surface-card: rgba(0, 0, 0, 0.75);
  --surface-glass: rgba(255, 255, 255, 0.1);
  --surface-overlay: rgba(0, 0, 0, 0.6);
  
  /* Border Colors */
  --line: rgba(255, 255, 255, 0.16);
  --line-2: rgba(255, 255, 255, 0.24);
  --line-3: rgba(255, 255, 255, 0.42);
  --line-light: rgba(0, 0, 0, 0.15);
  
  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.32);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 40px rgba(255, 255, 255, 0.3);
  
  /* Typography */
  --font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 18px;
  --radius-full: 999px;
  
  /* Transitions */
  --transition-fast: 140ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 350ms ease;
  --transition-smooth: 520ms ease;
}

/* =============================================================================
   RESET & BASE STYLES
   ============================================================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--black);
  background: var(--off-white) url('./assets/golfball.png') center center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(250, 251, 252, 0.85) 25%,
    rgba(248, 250, 252, 0.80) 50%,
    rgba(250, 251, 252, 0.85) 75%,
    rgba(255, 255, 255, 0.82) 100%
  );
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

/* =============================================================================
   LAYOUT
   ============================================================================= */

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-xl) 1.25rem 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100vh;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.page.reveal {
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 1.1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 960px) {
  .grid, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
   HEADER & NAVIGATION
   ============================================================================= */

header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) 1.25rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.logo-stack {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-weight: 700;
}

.logo-stack img {
  height: 64px;
  width: auto;
  display: block;
}

.logo-stack img[src*="bunkerscriptlogo"] {
  height: 80px;
}

.plus {
  font-size: 1.4rem;
  color: var(--white);
  padding: 0 0.35rem;
}

.tagline {
  font-size: var(--font-size-xs);
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 0 var(--space-sm);
}

nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-2);
  background: var(--surface-glass);
  font-weight: 600;
  color: var(--white);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--line-3);
}

.nav-link.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 0.35rem 0.55rem;
  color: var(--white);
  font-size: 1.25rem;
}

@media (max-width: 960px) {
  nav {
    display: none;
    width: 100%;
  }
  
  nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: var(--space-md);
  }
  
  nav.open .nav-link {
    text-align: center;
    padding: 0.75rem;
  }
  
  .burger {
    display: inline-flex;
  }
}

/* Lock body scroll when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.header-main {
  display: contents;
}

.header-actions {
  margin-left: auto;
}

.header-signin-row {
  display: none;
}

.mobile-signin {
  display: none;
}

@media (max-width: 640px) {
  header {
    padding: 0.6rem 0.75rem;
    gap: 0.4rem;
    flex-direction: column;
    align-items: stretch;
  }
  
  .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  
  .logo-stack {
    gap: 0.3rem;
    flex-shrink: 0;
  }
  
  .logo-stack img {
    height: 28px;
  }
  
  .logo-stack img[src*="bunkscript"] {
    height: 36px;
  }
  
  .plus {
    font-size: 0.8rem;
    padding: 0 0.1rem;
  }
  
  /* Show tagline in header-main on mobile */
  .header-main .tagline {
    display: block;
    font-size: 0.55rem;
    flex: 1;
    text-align: center;
    padding: 0 0.5rem;
  }
  
  .header-signin-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 0.4rem;
    border-top: 1px solid var(--line);
  }
  
  .header-signin-row .burger {
    padding: 0.5rem 0.75rem;
    font-size: 1.5rem;
    flex-shrink: 0;
  }
  
  .mobile-signin {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  
  /* Hide desktop signin on mobile */
  .header-actions {
    display: none;
  }
}

/* =============================================================================
   BUTTONS
   ============================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-weight: 700;
  font-size: var(--font-size-base);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--line-3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-accent {
  background: var(--brand-accent);
  color: var(--white);
  border-color: var(--brand-accent);
}

.btn-accent:hover {
  background: var(--brand-accent-hover);
}

.signin {
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
}

.signin:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-xl);
}

.pill {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--line-3);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 800;
  color: var(--black);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.pill:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* =============================================================================
   CARDS
   ============================================================================= */

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.45rem;
  background: var(--surface-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.card[data-href] {
  cursor: pointer;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 40%);
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: var(--font-size-xl);
  color: var(--white);
}

.card p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.card.bg {
  color: var(--white);
  border: 1px solid var(--line);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card.bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.72));
  z-index: 0;
  transition: opacity var(--transition-base);
}

.card.bg > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--line-3);
  filter: brightness(1.15) contrast(1.05);
}

.card:hover::after {
  opacity: 0.3;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.15), transparent 60%);
}

.card.bg:hover::before {
  opacity: 0.85;
}

.card .actions {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Card Sparkle Animation */
@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 1; transform: scale(1); }
}

/* =============================================================================
   FORMS
   ============================================================================= */

.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 600;
  color: var(--muted-dark);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-size: var(--font-size-base);
  color: var(--black);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input::placeholder {
  color: rgba(30, 30, 30, 0.65);
  font-weight: 600;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.form-input.dark,
.form-textarea.dark {
  background: var(--surface-glass);
  border-color: var(--line-2);
  color: var(--white);
}

.form-input.dark::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input.dark:focus {
  border-color: var(--brand-accent);
  background: rgba(255, 255, 255, 0.15);
}

/* =============================================================================
   SECTION BLOCKS
   ============================================================================= */

.section-block {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  background: var(--surface-card);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.section-block h3 {
  margin: 0 0 0.35rem;
  color: var(--white);
}

.section-block p {
  margin: 0 0 0.6rem;
  color: var(--muted);
}

/* =============================================================================
   FOOTER
   ============================================================================= */

footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  color: var(--muted);
  background: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

.foot-logos {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.foot-logos img {
  height: 40px;
  width: auto;
}

.foot-logos img[src*="bunkscript"] {
  height: 50px;
}

.foot-note {
  font-size: var(--font-size-sm);
  color: #555;
}

.foot-note a {
  color: #2563eb;
  transition: color var(--transition-fast);
}

.foot-note a:hover {
  color: #1d4ed8;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================================================
   INTRO ANIMATION
   ============================================================================= */

.intro {
  position: fixed;
  inset: 0;
  display: flex;
  z-index: 300;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
}

.intro-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: transform 750ms cubic-bezier(0.4, 0, 0.2, 1), opacity 500ms ease, filter 500ms ease;
}

.intro-side.left {
  background-image: url('./assets/outdoor.jpg');
  background-position: left center;
}

.intro-side.right {
  background-image: url('./assets/indoor2.jpg');
  background-position: right center;
}

.intro-logo {
  height: 82px;
  width: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
  transition: transform 900ms ease, opacity 700ms ease;
  opacity: 0;
  transform: scale(1.6);
}

.intro-plus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  font-weight: 900;
  color: var(--white);
  animation: plusPulse 1.8s ease forwards;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.intro.ready .intro-logo {
  opacity: 1;
  transform: scale(1.15);
}

.intro.play-out .intro-side.left {
  transform: translateX(-65vw);
}

.intro.play-out .intro-side.right {
  transform: translateX(65vw);
}

.intro.return .intro-side {
  transform: translateX(0);
  opacity: 0;
  filter: blur(6px);
}

.intro.return .intro-plus {
  opacity: 0;
}

.intro.play-out .intro-logo {
  transform: scale(1);
}

@keyframes plusPulse {
  0% { transform: scale(2.4); opacity: 0; }
  25% { transform: scale(2.2); opacity: 1; }
  65% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.35); opacity: 0; }
}

/* =============================================================================
   LOADING STATES
   ============================================================================= */

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-xl);
  color: var(--muted);
}

.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid var(--line);
  border-top-color: var(--brand-accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.skeleton {
  background: linear-gradient(90deg, var(--line) 25%, var(--line-2) 50%, var(--line) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* =============================================================================
   BADGES & CHIPS
   ============================================================================= */

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-success {
  background: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.badge-warning {
  background: rgba(255, 193, 7, 0.2);
  color: #FFC107;
}

.badge-danger {
  background: rgba(244, 67, 54, 0.2);
  color: #F44336;
}

.badge-info {
  background: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--surface-glass);
  border: 1px solid var(--line);
  font-size: var(--font-size-sm);
  color: var(--muted);
}

/* =============================================================================
   TABLES
   ============================================================================= */

.table-container {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  background: var(--surface-card);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 700;
  color: var(--white);
}

td {
  color: var(--muted);
}

tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

/* =============================================================================
   ALERTS & NOTIFICATIONS
   ============================================================================= */

.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.alert-success {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4CAF50;
}

.alert-warning {
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.3);
  color: #FFC107;
}

.alert-danger {
  background: rgba(244, 67, 54, 0.15);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #F44336;
}

.alert-info {
  background: rgba(33, 150, 243, 0.15);
  border: 1px solid rgba(33, 150, 243, 0.3);
  color: #2196F3;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: var(--space-md) var(--space-lg);
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  animation: slideUp 0.3s ease;
}

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

/* =============================================================================
   MOBILE APP INSTALL PROMPT
   ============================================================================= */

.install-prompt {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform var(--transition-slow);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.install-prompt.show {
  transform: translateY(0);
}

.install-prompt-text {
  flex: 1;
}

.install-prompt-text h4 {
  margin: 0 0 var(--space-xs);
  font-size: var(--font-size-lg);
}

.install-prompt-text p {
  margin: 0;
  color: var(--muted);
  font-size: var(--font-size-sm);
}

/* =============================================================================
   UTILITY CLASSES
   ============================================================================= */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-accent { color: var(--brand-accent); }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-lg); }
.mb-3 { margin-bottom: var(--space-xl); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: var(--space-md); }
.gap-2 { gap: var(--space-lg); }

.hidden { display: none; }
.visible { display: block; }

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

/* =============================================================================
   RESPONSIVE HELPERS
   ============================================================================= */

@media (max-width: 768px) {
  .hide-mobile { display: none !important; }
}

@media (min-width: 769px) {
  .hide-desktop { display: none !important; }
}

/* =============================================================================
   PRINT STYLES
   ============================================================================= */

@media print {
  body {
    background: white;
    color: black;
  }
  
  header, footer, .no-print {
    display: none;
  }
  
  .card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}
