/* ================================
   SERVICE CARDS – MISMO DISEÑO QUE NOTICIAS
   ================================ */

.service-landing-page__service {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
  padding: 1rem;

  background-color: transparent;
  border: 3px solid #ccc;
  border-radius: 8px;

  box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition:
    border-radius 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.lgd-teaser-list .service-landing-page__service {
  border-block-end: 3px solid #CCC !important;
}


/* Hover / focus */
.service-landing-page__service:hover,
.service-landing-page__service:focus-within {
  border-radius: 24px;
  background-color: #f2f2f2;
  box-shadow: none;
}

/* ================================
   STRETCH LINK (tarjeta clickable)
   ================================ */

.service-landing-page__service a {
  position: static;
  color: inherit;
  text-decoration: none;
}

.service-landing-page__service a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ================================
   CONTENIDO
   ================================ */

.service-landing-page__service-item {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  flex-grow: 1;
}

/* TÍTULO */
.service-landing-page__service h3 {
  margin: 0;
  color: #113555;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.service-landing-page__service:hover h3,
.service-landing-page__service:focus-within h3 {
  text-decoration: none;
  color: #1f5f86;
}

/* SUMMARY / TEXTO */
.service-landing-page__service,
.service-landing-page__service .field--name-summary {
  margin: 0;
  color: #1e1e1e;
  font-size: 0.9rem;
}

/* ================================
   ICONO / FLECHA DERECHA
   ================================ */

.service-landing-page__service-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  color: #113555;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Hover movimiento */
.service-landing-page__service:hover .service-landing-page__service-icon,
.service-landing-page__service:focus-within .service-landing-page__service-icon {
  transform: translateX(4px);
}

/* Limpieza SVG */
.service-landing-page__service-icon svg {
  margin: 0;
  fill: #113555;
}

/* ================================
   ACCESIBILIDAD
   ================================ */

.service-landing-page__service a:focus-visible {
  outline: 3px solid #FFD700;
  outline-offset: 4px;
  border-radius: 24px;
}

