/* Global styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cabin', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* ============================================================
   Impact / investigation cards
   ============================================================ */

/* Grid: tighter, portrait-leaning cards that auto-balance per row.
   Change 260px to make cards wider (fewer per row) or narrower (more). */
.press-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .press-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  }
}

/* Card chrome — now a vertical stack with its own padding */
.press-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.2s ease, transform 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.press-card:hover {
  transform: translateY(-3px);
  border-color: #d1d5db;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

/* Card interior */
.impact-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;                /* fills card height so the arrow can pin to the bottom */
}

.impact-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.impact-stat {
  font-size: clamp(1.7rem, 3.5vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #111827;
}

.impact-blurb {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.55;
  color: #4b5563;         /* muted gray — adjust to taste */
}

.impact-blurb strong { font-weight: 700; color: #111827; }

/* Subtle clickability cue — sits at the bottom, wakes up on hover */
.impact-arrow {
  margin-top: auto;
  padding-top: 0.875rem;
  font-size: 1.1rem;
  color: #9ca3af;
  transition: transform 0.15s ease, color 0.15s ease;
}

.press-card:hover .impact-arrow {
  color: #111827;
  transform: translateX(3px);
}