/* Estilos para el título de la página del blog */
.blog-title-section {
    background-color: #001a4d;
    padding: 60px 0;
    margin-bottom: 30px;
    width: 100%;
}

.blog-title-section .page-title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 1px;
}

.blog-title-section .breadcrumb-wrapper {
    margin-top: 10px;
}

.blog-title-section .breadcrumb-wrapper a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.blog-title-section .breadcrumb-wrapper a:hover {
    color: #ffffff;
}

/* Animación para el título */
.animate-zoom-in {
    animation: zoomIn 0.5s ease-in-out;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Estilos para la meta información */
.entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.entry-category a {
    display: inline-block;
    padding: 4px 10px;
    margin-right: 5px;
    background-color: #001a4d;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

.entry-published a {
    color: #666;
    text-decoration: none;
}

.entry-published a:hover {
    color: #001a4d;
}

/* Estilos para el contenido del post */
.blog-single-post {
    margin-bottom: 50px;
}

.blog-single-post .entry-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #001a4d;
}

.blog-single-post .entry-content {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.blog-single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blog-single-post .entry-content h2, 
.blog-single-post .entry-content h3, 
.blog-single-post .entry-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #001a4d;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .blog-title-section {
        padding: 40px 0;
    }
    
    .blog-title-section .page-title {
        font-size: 32px;
    }
    
    .blog-single-post .entry-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .blog-title-section {
        padding: 30px 0;
    }
    
    .blog-title-section .page-title {
        font-size: 26px;
    }
    
    .blog-single-post .entry-title {
        font-size: 24px;
    }
}
