/*
==================================================
KOLAZ BLOG THEME v1.0
==================================================
This is a starter Blog Design System.
Extend as needed.
*/

/* RESET */
*,
*::before,
*::after{box-sizing:border-box}

img{max-width:100%;height:auto;display:block}

body{
    margin:0;
    color:#45414d;
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.7;
    background:#fff;
}

/* ARTICLE */
.article{
    max-width:1100px;
    margin:0 auto;
    padding:24px;
}

.article-header{
    margin-bottom:40px;
}

.article h1{
    font-family:Georgia,serif;
    font-size:42px;
    line-height:1.15;
    color:#413d49;
    margin:0 0 20px;
}

.article h2{
    font-family:Georgia,serif;
    font-size:32px;
    margin:40px 0 16px;
    color:#413d49;
}

.article h3{
    font-family:Georgia,serif;
    font-size:24px;
    margin:28px 0 12px;
}

.article p{
    margin:0 0 16px;
}

.article ul,
.article ol{
    margin:0 0 20px 22px;
}

.article li{
    margin:8px 0;
}

.article a{
    color:#E5265F;
    font-weight:600;
}

.article a:hover{
    color:#c81d4f;
}

/* QUICK ANSWER */
.quick-answer{
    background:#fff5f8;
    border-left:5px solid #E5265F;
    padding:20px;
    border-radius:8px;
    margin:25px 0;
}

/* TIP BOXES */
.tip-box,
.success-box,
.warning-box{
    padding:20px;
    border-radius:10px;
    margin:25px 0;
}

.tip-box{
    background:#fff8fa;
    border-left:5px solid #E5265F;
}

.success-box{
    background:#eefaf2;
    border-left:5px solid #1b8f47;
}

.warning-box{
    background:#fff8e8;
    border-left:5px solid #d28d00;
}

/* TABLES */
.table-responsive{
    overflow-x:auto;
}

.comparison-table{
    width:100%;
    border-collapse:collapse;
}

.comparison-table th,
.comparison-table td{
    border:1px solid #e5e5e5;
    padding:14px;
    text-align:left;
}

.comparison-table th{
    background:#f8f8f8;
}

/* CARDS */
.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.card{
    border:1px solid #ececec;
    border-radius:12px;
    padding:20px;
    background:#fff;
}

/* FAQ */
.faq{
    margin-top:40px;
}

.faq-item{
    border:1px solid #e8e8e8;
    border-radius:10px;
    padding:18px;
    margin-bottom:16px;
}

/* CTA */
.cta-box{
    margin-top:50px;
    background:#fff4f7;
    border:1px solid #ffd1dd;
    border-radius:14px;
    padding:30px;
    text-align:center;
}

.button{
    display:inline-block;
    padding:14px 26px;
    background:#E5265F;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
}

.button:hover{
    background:#c81d4f;
}

/* IMAGES */
.article-image{
    border-radius:12px;
    margin:30px auto;
}

.image-caption{
    text-align:center;
    color:#777;
    font-size:14px;
    margin-top:8px;
}

/* QUOTE */
blockquote{
    margin:25px 0;
    padding:20px;
    background:#fafafa;
    border-left:5px solid #E5265F;
    font-style:italic;
}

/* CHECKLIST */
.checklist{
    list-style:none;
    padding:0;
}

.checklist li::before{
    content:"β ";
    color:#1b8f47;
    font-weight:bold;
}

/* TOC */
.table-of-contents{
    border:1px solid #ececec;
    border-radius:10px;
    padding:20px;
    background:#fafafa;
    margin:30px 0;
}

/* MOBILE */
@media(max-width:768px){

.article{
padding:18px;
}

.article h1{
font-size:34px;
}

.article h2{
font-size:28px;
}

.cards{
grid-template-columns:1fr;
}

.comparison-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

.button{
display:block;
width:100%;
text-align:center;
}

}