/* =====================================================
   CYVORA BLOG POST
=====================================================*/

.blog-post-container{
    max-width:850px;
    margin:70px auto;
    padding:0 24px;
}

/* ==========================================
HEADER
==========================================*/

.article-header{
    margin-bottom:70px;
    border-bottom:1px solid #e8e8e8;
    padding-bottom:40px;
}

.category{
    display:inline-block;
    padding:8px 18px;
    background:#eef9f4;
    color:#10845b;
    font-size:.82rem;
    font-weight:700;
    border-radius:40px;
    letter-spacing:.04em;
    text-transform:uppercase;
    margin-bottom:22px;
}

.article-header h1{

    font-size:3rem;
    line-height:1.15;
    font-weight:800;
    color:white;
    margin-bottom:24px;
}

.article-intro{

    font-size:1.25rem;
    line-height:1.9;
    color:whitesmoke;
    max-width:760px;
}

.article-meta{

    display:flex;
    gap:22px;
    margin-top:30px;
    color:whitesmoke;
    font-size:.95rem;
}

/* ==========================================
SECTIONS
==========================================*/

section{

    margin:75px 0;
}

section h2{

    font-size:2rem;
    margin-bottom:25px;
    color:white;
    line-height:1.3;
    font-weight:700;
}

section p{

    margin-bottom:24px;
    line-height:1.95;
    color:whitesmoke;
    font-size:1.08rem;
}

section strong{

    color:whitesmoke;
    font-weight:700;
}

/* ==========================================
LISTS
==========================================*/

section ul{

    margin:28px 0;
    padding:0;
    list-style:none;
}

section li{

    position:relative;
    padding-left:34px;
    margin-bottom:18px;
    line-height:1.8;
    color:whitesmoke;
}

section li::before{

    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#10b981;
    font-weight:bold;
}

/* ==========================================
INFO BOX
==========================================*/

.info-box{

    background:#f0fdf4;
    border-left:5px solid #10b981;
    padding:26px;
    border-radius:12px;
    margin:35px 0;
}

.info-box strong{

    display:block;
    margin-bottom:12px;
    font-size:1.1rem;
}

.info-box p{

    margin:0;
}

/* ==========================================
TABLE
==========================================*/

.comparison-table{

    width:100%;
    border-collapse:collapse;
    margin-top:30px;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 6px 24px rgba(0,0,0,.06);
}

.comparison-table thead{

    background:#111827;
    color:white;
}

.comparison-table th{

    padding:18px;
    text-align:left;
    font-weight:700;
}

.comparison-table td{

    padding:18px;
    border-bottom:1px solid #ececec;
    line-height:1.7;
}

.comparison-table tbody tr:nth-child(even){

    background:#fafafa;
}

.comparison-table tbody tr:hover{

    background:#f3f4f6;
}

/* ==========================================
CTA BUTTON
==========================================*/

.primary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:30px;

    padding:16px 32px;

    border-radius:12px;

    background:#10b981;

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.25s;
}

.primary-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 14px 30px rgba(16,185,129,.25);

    background:#059669;
}

/* ==========================
   Featured Image
========================== */

.featured-image{
    width:100%;
    margin:45px 0 15px;
    border-radius:18px;
    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:#111827;

    box-shadow:
        0 10px 40px rgba(0,0,0,.35);
}

.featured-image img{

    width:100%;

    height:auto;

    display:block;

    object-fit:cover;

    transition:.4s;
}

.featured-image:hover img{

    transform:scale(1.02);

}

/* ==========================================
QUOTE
==========================================*/

blockquote{

    margin:40px 0;
    padding:30px;
    background:#f9fafb;
    border-left:5px solid #10b981;
    font-style:italic;
    font-size:1.2rem;
    line-height:1.8;
    color:#374151;
}

/* ==========================================
IMAGE
==========================================*/

img{

    width:100%;
    border-radius:18px;
}

/* ==========================================
CODE
==========================================*/

code{

    background:#f3f4f6;
    padding:3px 8px;
    border-radius:6px;
}

pre{

    background:#111827;
    color:white;
    padding:24px;
    overflow:auto;
    border-radius:14px;
}

/* ==========================================
HR
==========================================*/

hr{

    margin:60px 0;
    border:none;
    border-top:1px solid #ececec;
}

/* ==========================================
LINKS
==========================================*/

a{

    color:#0f766e;
}

a:hover{

    color:#0d9488;
}

/* ==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px){

.blog-post-container{

padding:20px;

margin:30px auto;

}

.article-header h1{

font-size:2.2rem;

}

.article-intro{

font-size:1.08rem;

}

section h2{

font-size:1.6rem;

}

section{

margin:55px 0;

}

.article-meta{

flex-direction:column;
gap:8px;

}

.comparison-table{

display:block;
overflow:auto;

}

.primary-btn{

width:100%;

}

.featured-image{

margin:30px 0;

border-radius:14px;

}

}