/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f7f9fc;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Estilo del encabezado del artículo */
.article-header-margin {
    margin-top: 80px; /* Ajuste de margen superior para dar espacio al header */
    text-align: center;
}

.article-header-margin h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.article-header-margin h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.article-header-margin p {
    font-size: 0.9rem;
    color: #888;
}

/* Imagen del artículo */
.article-header-margin img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 20px auto;
}

/* Cuerpo del artículo */
main section {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

main section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

main section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

/* Estilos de los enlaces */
a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Botón de regreso */
.btn-link {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 20px;
}

.btn-link:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Estilos de íconos para compartir */
footer div.mt-4 {
    margin-top: 20px;
    text-align: center;
}

footer div.mt-4 span {
    margin-right: 10px;
    font-size: 1rem;
    font-weight: 500;
}

footer div.mt-4 a {
    color: #333;
    margin: 0 5px;
    font-size: 1.2rem;
    transition: color 0.2s ease-in-out;
}

footer div.mt-4 a:hover {
    color: #007bff;
}

/* Estilo del pie de página */
footer {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

/* Ajustes de Responsive */
@media (max-width: 768px) {
    .article-header-margin h1 {
        font-size: 2rem;
    }

    .article-header-margin h4 {
        font-size: 1.1rem;
    }

    main section {
        font-size: 0.9rem;
    }

    footer div.mt-4 a {
        font-size: 1rem;
    }
}
