/* ==========================================
   ARTICLE COVER
   ========================================== */
.article-cover,
.article-cover-large {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-secondary);
}





.article-cover img {

    width:100%;

    height:100%;

    object-fit:cover;

    margin:0;

}





/* ==========================================
   ARTICLE TAGS
   ========================================== */


.article-tags {

    display:flex;

    flex-wrap:wrap;

    gap:.5rem;

    margin-bottom:1.5rem;

}



.article-tag {

    padding:.35rem .75rem;

    border-radius:999px;

    background:rgba(59,130,246,.15);

    color:var(--primary-hover);

    font-size:.8rem;

}
/* ==========================================
   ARTICLE DETAIL
   ========================================== */


.article-page {

    max-width:900px;

    margin:auto;

}



.article-header {

    text-align:center;

    margin-bottom:3rem;

}



.article-header h1 {

    font-size:2.8rem;

    font-weight:700;

    margin-bottom:1rem;

}



.article-meta {

    color:var(--text-muted);

    margin-bottom:1rem;

}



.article-cover-large {


    margin-bottom: 2rem;

}
.article-cover img,
.article-cover-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.separator{
    width:100%;
    height:0;
    border:solid 1px white;
    margin: 30px 0 ;
}










.article-body {

    background:rgba(30,41,59,.65);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:2.5rem;
    color:var(--text-secondary);
    line-height:1.9;
    font-size:1.05rem;

    overflow-wrap:anywhere;
    word-break:break-word;

}



.article-body p {

    white-space:pre-line;

}

.article-card {
    margin-top:10px;
    margin-bottom:10px;
}


.article-navigation {

    margin-top:2rem;

}

.article-date {
    margin-top:10px;
}