/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos generales */
body {
    font-family: 'Inter', sans-serif; /* Fuente moderna */
    text-align: justify;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.7;
}





/* Contenedor del artículo */
.article-container {
    max-width: 900px;
    margin: 30px auto;
    margin-top: 110px;
    margin-bottom: 100px;
    padding: 0 20px;
    background-color: #f7f7f7;
}

/* Estilos del artículo */
.article {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.article-header {
    background-color: #c2e1ff;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f1f1;
}

.article-title {
    font-size: 2rem;
    color: rgb(51, 51, 51);
    margin-bottom: 10px;
}

.article-meta {
    font-size: 0.9rem;
    color: #7F8C8D;
    margin-bottom: 20px;
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.article-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.article-content h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #007AFF;
}

.article-content h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #34495E;
}

.article-content .blockquote {
    font-size: 1.1rem;
    background-color: #ECF0F1;
    padding: 15px;
    border-left: 5px solid #3498DB;
    margin: 20px 0;
    font-style: italic;
    color: #7F8C8D;
    border-radius: 8px;
}

.article-content .img-mobile {
    display: none;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .article-title {
        font-size: 1.8rem;
    }

    .article-content p {
        font-size: 1rem;
    }

    .article-content h3 {
        font-size: 1.4rem;
    }

    .article-content .img-desk {
        display: none;
    }

    .article-content .img-mobile {
        display: inline-block; 
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.6rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content p {
        font-size: 0.95rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }
}
