/**
 * Componentes básicos RESCOP
 */

/* Reset básico */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--rescop-font-primary);
  color: var(--rescop-text-primary);
  line-height: 1.6;
}

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

/* Botones básicos */
.rescop-button {
  display: inline-block;
  padding: 12px 24px;
  background: var(--rescop-red-primary);
  color: var(--rescop-text-white);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-base);
}

.rescop-button:hover {
  background: var(--rescop-red-accent);
}

/* Espaciado de utilidad */
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
/* === HERO NEWS CARDS - CLICABLES COMPLETAS === */
.rescop-news-card {
    position: relative;
    cursor: pointer;
}
.rescop-news-card-title a::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
}
.rescop-news-card-title a {
    position: relative;
    z-index: 2;
}
