/* ==========================================================
   SECCION AUTORIDAD – Homepage
   Patron identico al resto de secciones del tema
   ========================================================== */

/* Contenedor principal */
.rlm-auth-section {
  padding: 30px 0;
}

/* Card con borde morado */
.rlm-auth-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border-left: 6px solid #90439e;
  box-shadow: 0 4px 24px rgba(144,67,158,.12), 0 1px 4px rgba(0,0,0,.06);
}

/* Columna de texto */
.rlm-auth-text {
  padding: 36px 32px;
}

.rlm-auth-text h2 {
  color: #90439e;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 18px;
  padding: 0;
}

.rlm-auth-text p {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
  margin: 0 0 12px;
}

.rlm-auth-text strong {
  color: #333;
}

/* Pills de categorias */
.rlm-auth-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 18px 0 6px;
}

.rlm-auth-pills li {
  list-style: none;
  display: inline-block;
}

.rlm-auth-pills li a {
  display: inline-block;
  padding: 5px 14px;
  background: #f3e8f6;
  color: #90439e;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 20px;
  letter-spacing: .3px;
  line-height: 1.5;
  transition: all .25s ease;
}

.rlm-auth-pills li a:hover {
  background: #90439e;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(144,67,158,.25);
}

/* CTA catalogo */
.rlm-auth-cta {
  font-weight: 600;
  color: #555;
  margin: 4px 0 16px;
}

.rlm-auth-cta a {
  color: #90439e;
  text-decoration: none;
  font-weight: 700;
  transition: color .2s;
}

.rlm-auth-cta a:hover {
  color: #5e2b67;
  text-decoration: underline;
}

/* Columna video */
.rlm-auth-video {
  background: linear-gradient(135deg, #90439e 0%, #6a1b8a 100%);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border-radius: 0 16px 16px 0;
}

.rlm-auth-videobox {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.rlm-auth-videobox video,
.rlm-auth-videobox img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

/* === Responsive tablet === */
@media (max-width: 991px) {
  .rlm-auth-card {
    border-left: none;
    border-top: 5px solid #90439e;
    border-radius: 12px;
  }
  .rlm-auth-video {
    min-height: auto;
    padding: 20px;
    border-radius: 12px 12px 0 0;
  }
  .rlm-auth-text {
    padding: 28px 24px;
    text-align: center;
  }
  .rlm-auth-pills {
    justify-content: center;
  }
  .rlm-auth-cta {
    text-align: center;
  }
}

/* === Responsive movil === */
@media (max-width: 575px) {
  .rlm-auth-section {
    padding: 16px 0;
  }
  .rlm-auth-text {
    padding: 20px 16px;
  }
  .rlm-auth-text h2 {
    font-size: 1.35rem;
  }
  .rlm-auth-video {
    padding: 14px;
  }
  .rlm-auth-pills li a {
    font-size: 12px;
    padding: 4px 10px;
  }
}