/* ARUEDA Core · Tarjetas de contenidos relacionados
   Ámbito exclusivo: .arueda-related-grid / .arueda-related-card y sus elementos.
   No afecta a ninguna otra tarjeta ni listado de la web.
   Tipografía heredada (Montserrat del tema). */

.arueda-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.arueda-related-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #ddd6c8;
    border-radius: 20px;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.arueda-related-card:hover {
    transform: translateY(-5px);
    border-color: #b8663a;
    box-shadow: 0 22px 48px -26px rgba(23, 53, 39, .5);
}

/* Imagen superior: proporción uniforme en todas las tarjetas */
.arueda-related-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f2efe6;
    text-decoration: none;
}

.arueda-related-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.arueda-related-card:hover .arueda-related-card__image img {
    transform: scale(1.05);
}

.arueda-related-card__image--empty {
    background: linear-gradient(135deg, #ece7db, #ddd7c7);
}

.arueda-related-card__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    flex: 1;
}

/* Etiqueta superior: terracota, mayúsculas */
.arueda-related-card__eyebrow {
    color: #b8663a;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* Título: verde oscuro */
.arueda-related-card__title {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #173527;
}

.arueda-related-card__title a {
    color: inherit;
    text-decoration: none;
}

.arueda-related-card__title a:hover {
    color: #b8663a;
}

/* Extracto: gris verdoso */
.arueda-related-card__excerpt {
    margin: 0;
    color: #68736b;
    font-size: 14px;
    line-height: 1.55;
}

/* Enlace final: terracota, anclado abajo */
.arueda-related-card__link {
    margin-top: auto;
    padding-top: 4px;
    color: #b8663a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.arueda-related-card__link:hover {
    text-decoration: underline;
}

/* Tablet: 2 columnas */
@media (max-width: 1024px) {
    .arueda-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Móvil: 1 columna y sin elevación (táctil) */
@media (max-width: 600px) {
    .arueda-related-grid {
        grid-template-columns: 1fr;
    }
    .arueda-related-card:hover {
        transform: none;
    }
}
