/* Estructura base */
.contenedor--seccion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
}

.contenedor--article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(20px);
  padding: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contenedor--article:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Contenedor del video */
.contenedor--video {
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.contenedor--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

/* Enlace estilo botón */
.contenedor--enlace a {
  display: inline-block;
  text-align: center;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #5271ff, var(--color-btn, #304d9c));
  border-radius: 0.75rem;
  transition: background 0.3s ease;
}

/* comunitarios */
.contenedor--article[data-color="#FFF82A"] .contenedor--enlace a {
  --color-btn: #fff82a;
}

/* culturales */
.contenedor--article[data-color="#ff772a"] .contenedor--enlace a {
  --color-btn: #ff772a;
}

/* deportes */
.contenedor--article[data-color="#18a937"] .contenedor--enlace a {
  --color-btn: #18a937;
}

/* sociales */
.contenedor--article[data-color="#e35da1"] .contenedor--enlace a {
  --color-btn: #e35da1;
}
