/* ======================================
   TUFIZIO BLOG - ESTILO MODERNO PRO
====================================== */

/* 📖 CONTENIDO PRINCIPAL */
.tufizio-content{
    font-size: 1.18rem;
    line-height: 2;
    color: #2b2b2b;

    max-width: 920px;
    margin: 0 auto;
    padding: 10px 20px;

    letter-spacing: 0.2px;
}

/* 🧱 HEADINGS */
.tufizio-content h1{
    font-size: 2.6rem;
    font-weight: 800;
    margin: 50px 0 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tufizio-content h2{
    font-size: 1.75rem;
    font-weight: 700;
    margin: 40px 0 16px;
    padding-left: 14px;
    border-left: 4px solid #B2D8C6;
}

.tufizio-content h3{
    font-size: 1.25rem;
    font-weight: 600;
    margin: 28px 0 12px;
    color: #444;
}

/* 💬 BLOCKQUOTE */
.tufizio-content blockquote{
    margin: 28px 0;
    padding: 20px 24px;

    background: rgba(178, 216, 198, 0.12);
    border-left: 5px solid #B2D8C6;

    border-radius: 12px;
    font-style: italic;
    color: #444;

    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

/* ➖ HR */
.tufizio-content hr{
    border: none;
    height: 1px;
    background: #eaeaea;
    margin: 50px 0;
}

/* ✍️ NEGRITA */
.tufizio-content strong{
    font-weight: 700;
    color: #111;
}

/* 🧠 CURSIVA */
.tufizio-content em{
    color: #555;
}

/* 📊 TABLAS */
.tufizio-content table{
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 0.95rem;
}

.tufizio-content th,
.tufizio-content td{
    border: 1px solid #e5e5e5;
    padding: 12px 14px;
}

.tufizio-content th{
    background: #f5f7fa;
    font-weight: 700;
}

/* 🔢 LISTAS */
.tufizio-content ol,
.tufizio-content ul{
    padding-left: 24px;
    margin: 18px 0;
}

.tufizio-content li{
    margin-bottom: 8px;
}

/* 🔗 LINKS */
.tufizio-content a{
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.tufizio-content a:hover{
    color: #B2D8C6;
    text-decoration: underline;
}

/* 💻 CÓDIGO */
.tufizio-content code{
    background: #f1f3f5;
    padding: 4px 7px;
    border-radius: 6px;
    font-size: 0.92rem;
    color: #d6336c;
}

/* 🧘 PÁRRAFOS */
.tufizio-content p{
    margin-bottom: 20px;
}

/* 📸 IMÁGENES (EDITORIAL PRO) */
.tufizio-content img{
    max-width: 100%;
    border-radius: 18px;
    margin: 30px 0;

    box-shadow: 0 12px 30px rgba(0,0,0,0.08);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tufizio-content img:hover{
    transform: scale(1.01);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* FIGURE (imágenes con estilo editorial) */
.tufizio-content figure{
    margin: 30px 0;
    padding: 8px;
    border-radius: 18px;
    background: rgba(178, 216, 198, 0.15);
}

.tufizio-content figcaption{
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin-top: 8px;
}

/* 📱 RESPONSIVE */
@media (max-width: 1200px) {
    .container{
        max-width: 95% !important;
    }
}

@media (max-width: 768px) {

    .container{
        max-width: 100% !important;
        padding: 0 18px;
    }

    .tufizio-content{
        font-size: 1.05rem;
        padding: 0 16px;
    }

    .tufizio-content h1{
        font-size: 2rem;
    }

    .tufizio-content h2{
        font-size: 1.4rem;
    }
}