/* Ruta: /assets/css/noticias.css */
body, p, span, .hero-noticias-subtitle, .hover-dark, .hover-read-more, .blog-img-container div {
    font-family: 'Work Sans', sans-serif !important;
}

h1, h2, h3, h4, h5, .blog-card h3 {
    font-family: 'Kallisto', sans-serif !important;
}

.journal-hero {
    height: 80vh;
    min-height: 450px;
}

.hero-post-img,
.blog-img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-post-img-wrapper:hover .hero-post-img,
.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.hero-noticias-subtitle {
    font-size: 1.75rem;
    font-weight: 400; 
    line-height: 1.8; 
    color: #ffffff !important; 
}

@media (max-width: 768px) {
    .hero-noticias-subtitle {
        font-size: 1.25rem; 
    }
}

.hover-dark {
    transition: color 0.3s ease;
}

.hover-dark:hover {
    color: #555555 !important;
}

.hover-read-more {
    transition: border-color 0.3s ease, color 0.3s ease;
}

.blog-card:hover .hover-read-more {
    border-color: #a0a0a0 !important;
    color: #555555 !important;
}

.hero-post-img-container {
    height: 250px;
}

@media (min-width: 992px) {
    .hero-post-img-container {
        height: 450px;
    }
}

.blog-img-container {
    height: 200px;
}

@media (min-width: 992px) {
    .blog-img-container {
        height: 280px;
    }
}