/*
 Theme Name:   Hello Elementor Child
 Theme URI:    https://cornflowerblue-hyena-389615.hostingersite.com
 Description:  Child theme de Hello Elementor para FTVKMCERO Express
 Author:       FTVKMCERO
 Author URI:   https://cornflowerblue-hyena-389615.hostingersite.com
 Template:     hello-elementor
 Version:      1.0.0
 Text Domain:  hello-elementor-child
*/


/* ===== BLOG - Listado de entradas ===== */
.blog .page-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog .page-content article.post {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog .page-content article.post:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.blog .page-content article.post::before {
    content: '';
    display: block;
    height: 4px;
    background: #e42e2e;
}
.blog .page-content article.post .entry-title {
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 12px;
    line-height: 1.3;
    padding: 0 24px;
}
.blog .page-content article.post .entry-title a {
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog .page-content article.post .entry-title a:hover {
    color: #e42e2e;
}
.blog .page-content article.post p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    padding: 0 24px;
    flex-grow: 1;
}
/* Fix: mostrar título de entradas en blog (override del tema) */
.blog .page-content article.post h2.entry-title {
    display: block !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin: 24px 0 12px !important;
    line-height: 1.3 !important;
    padding: 0 24px !important;
    visibility: visible !important;
}
.blog .page-content article.post h2.entry-title a {
    color: #111111 !important;
    text-decoration: none !important;
}
.blog .page-content article.post h2.entry-title a:hover {
    color: #e42e2e !important;
}


/* ===== LOGO IMAGEN ===== */
/* Logo en header / navegación */
.ftvk-logo-img {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    border-radius: 6px;
}

/* Logo en footer */
.ftvk-footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 12px;
    border-radius: 6px;
}
