/* ===============================
   SECCIÓN GENERAL
================================ */

.k9-division {
  padding: 4rem 2rem;
  text-align: center;
}

.k9-division-subtitle {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 2rem;
}


/* ===============================
   TÍTULO + LÍNEA
================================ */

.k9-section-title {
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 0.75rem;
  margin-top: 60px;
}

.k9-section-line {
  width: 100%;
  max-width: 480px;
  height: 1px;
  margin: 0 auto 3rem auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(212,167,44,0.45),
    transparent
  );
}


/* ===============================
   GRID DE TARJETAS
================================ */

.k9-cards {
  display: grid;
  grid-template-columns: repeat(4, 220px);
  gap: 3rem;
  justify-content: center;
}


/* ===============================
   TARJETA
================================ */

.k9-card {
  position: relative;
  width: 220px;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(212,167,44,0.35);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.k9-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 32px rgba(0,0,0,0.65),
    0 0 18px rgba(212,167,44,0.12);
  border-color: #d4a72c;
}

.k9-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.35s ease;
}

.k9-card:hover img {
  filter: blur(4px);
}


/* ===============================
   OVERLAY (HOVER)
================================ */

.k9-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  transition: opacity 0.35s ease;
}

.k9-card:hover .k9-overlay {
  opacity: 1;
}


/* ===============================
   ROL SUPERIOR
================================ */

.k9-role {
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f0c95a;
  opacity: 0.9;
}


/* ===============================
   INFO INFERIOR
================================ */

.k9-info {
  display: flex;
  justify-content: center;
}

.k9-text {
  text-align: center;
}

.k9-rank {
  display: block;
  font-size: 0.75rem;
  color: #d4a72c;
  opacity: 0.9;
  line-height: 1.1;
}

.k9-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.1;
}

.page-content {
  padding-top: 70px;
}
