/* General */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Encabezado */
header {
    background-color: #093d6e;
    padding: 20px 0;
}

header a.nav-link {
    color: #ffffff !important;
}

header a.nav-link:hover {
    background-color: #f38302 !important;
    color: #ffffff !important;
    border-radius: 5px;
}

/* Sección de Título */
.blog-title h1 {
    font-size: 2.5rem;
    color: #093d6e;
    margin-bottom: 10px;
}

.blog-title p {
    font-size: 1.25rem;
    color: #6c757d;
}

/* Contenido del Blog */
.blog-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 2rem;
    color: #093d6e;
    margin-bottom: 15px;
}

.blog-content h4 {
    font-size: 1.5rem;
    color: #f38302;
    margin-bottom: 15px;
}

.blog-content img {
    margin-bottom: 20px;
    border-radius: 5px;
}

/* Entradas Recientes */
#blog-entries {
    list-style-type: none;
    padding: 0;
}

#blog-entries li {
    margin-bottom: 15px;
}

#blog-entries a {
    text-decoration: none;
    font-size: 1.1rem;
    color: #093d6e;
    transition: color 0.3s ease;
}

#blog-entries a:hover {
    color: #f38302;
}

/* Footer */
footer {
    background-color: #093d6e;
    color: #ffffff;
    padding: 20px 0;
}

footer p {
    margin: 0;
}
