/* ============================================
   RINX PAC - Base Styles
   ============================================ */

.section-header {
  font-size: 2.4rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mobile-tap {
  touch-action: manipulation;
  min-height: 68px;
}

.endorse-card {
  transition: all 0.2s ease;
}

.endorse-card:hover {
  transform: translateY(-2px);
  border-color: #c8102e;
}

.modal {
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle grid background pattern */
body {
  background-image: 
    linear-gradient(rgba(200, 16, 46, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 16, 46, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

@media (max-width: 767px) {
  body {
    transform: none;
  }
}
