/* ============ NOTICIAS DEL VATICANO ============ */

.vatican-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.8rem;
    max-width: 1100px;
    margin: 0 auto;
}

.vatican-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--crema);
    border: 1px solid var(--linea);
    border-radius: 20px;
    box-shadow: 0 6px 22px -12px rgba(34, 31, 24, 0.18);
    text-decoration: none;
    transition:
        transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}
.vatican-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 48px -24px rgba(34, 31, 24, 0.32);
    border-color: var(--oro);
}

.vatican-foto {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(150deg, var(--verde-claro), var(--verde-oscuro) 80%);
}
.vatican-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.vatican-card:hover .vatican-foto img {
    transform: scale(1.06);
}
.vatican-foto-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vatican-foto-fallback svg {
    width: 58px;
    height: 58px;
    stroke: var(--oro-suave);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

.vatican-cuerpo {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem 1.5rem 1.6rem;
}
.vatican-cuerpo time {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--bronce);
    margin-bottom: 0.45rem;
}
.vatican-cuerpo h3 {
    font-family: var(--display);
    font-weight: 600;
    font-size: 1.22rem;
    line-height: 1.25;
    color: var(--verde-oscuro);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.vatican-cuerpo p {
    color: var(--tinta-sub);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* ----- Botón ver todas ----- */
.vatican-ver-mas {
    display: flex;
    justify-content: center;
    margin-top: 2.4rem;
}
.vatican-ver-mas-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--verde-oscuro);
    background: var(--crema);
    border: 1px solid var(--oro);
    box-shadow: 0 12px 24px -14px rgba(34, 31, 24, 0.3);
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}
.vatican-ver-mas-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -16px rgba(34, 31, 24, 0.4);
    background: var(--verde-oscuro);
    color: var(--crema);
}

/* ----- Móvil ----- */
@media (max-width: 640px) {
    .vatican-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
