/* Related Posts Modern */

.rpm-related-posts {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 2px solid #eee;
}

.rpm-related-posts h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: #222;
}

.rpm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.rpm-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.07);
  transition: transform .25s ease, box-shadow .25s ease;
}

.rpm-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

.rpm-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.rpm-info {
  padding: 1rem;
}

.rpm-info h4 {
  font-size: 1.05rem;
  margin: .4rem 0;
  color: #111;
}

.rpm-cat {
  font-size: .8rem;
  font-weight: bold;
  color: #fff;
  background: #ef476f;
  padding: .35rem .7rem;
  border-radius: 20px;
}

/* CONTENEDOR DE LA IMAGEN */
.rpm-thumb {
  width: 100%;
  height: 150px;              /* 👈 AJUSTA AQUÍ LA ALTURA */
  overflow: hidden;
  background: #eee;
}

/* IMAGEN */
.rpm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;          /* 🔥 CLAVE */
  display: block;
}

/* Quitar subrayado y heredar color */
.rpm-related-posts a {
  text-decoration: none;
  color: inherit;
}

.rpm-related-posts a:hover {
  text-decoration: none;
}

/* Estilo base */
.rpm-cat {
  font-size: .75rem;
  font-weight: 700;
  padding: .35rem .7rem;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  margin-bottom: .5rem;
}

/* Colores por categoría */
.rpm-cat-andalucia {
  background: #e63946;
}

.rpm-cat-cuentos-y-leyendas {
  background: #1d3557;
}

.rpm-cat-esculturas {
  background: #2a9d8f;
}

.rpm-cat-flora-y-fauna {
  background: #6a4cff;
}

.rpm-cat-montanas-y-volcanes-de-canarias {
  background: #f4a261;
}


/* Forzar quitar subrayado en TODA la card */
.rpm-related-posts,
.rpm-related-posts * {
  text-decoration: none !important;
}

.rpm-related-posts a,
.rpm-related-posts a:hover,
.rpm-related-posts a:visited {
  text-decoration: none !important;
  color: inherit;
}

/* TÍTULO EN NEGRITA */
.rpm-info h4 {
  font-weight: 700;        /* Negrita */
  font-size: 1.0rem;      /* Puedes ajustar si quieres más grande */
  margin: 0.3rem 0;
  color: #111;
}

/* EXCERPT PEQUEÑO */
.rpm-excerpt {
  font-size: 0.75rem;      /* Mucho más pequeño */
  line-height: 1.3;        /* Mejor lectura */
  color: #555;             /* Gris suave */
  margin-top: 0.15rem;
  margin-bottom: 0.20rem;
}



.rpm-card {
  position: relative;
  overflow: hidden;
}

.rpm-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: #ccc; /* color por defecto */
}


.rpm-card-cat-andalucia::before {
  background: #e63946;
}

.rpm-card-cat-cuentos-y-leyendas::before {
  background: #1d3557;
}

.rpm-card-cat-esculturas::before {
  background: #2a9d8f;
}

.rpm-card-cat-flora-y-fauna::before {
  background: #6a4cff;
}

.rpm-card-cat-montanas-y-volcanes-de-canarias::before {
  background: #f4a261;
}