/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 27 de mai. de 2026, 17:59:16
    Author     : glaub
*/

.article-page{
    background:#050505;
    color:#fff;
}

.article-hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
}

.article-hero-bg{
    position:absolute;
    inset:0;
}

.article-hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.article-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to top,#050505 0%,rgba(5,5,5,.85) 40%,rgba(5,5,5,.4) 100%);
}

.article-hero-content{
    position:relative;
    z-index:2;
    max-width:900px;
    padding:180px 0 90px;
}

.article-category{
    display:inline-flex;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(168,85,247,.15);
    border:1px solid rgba(168,85,247,.3);
    color:#c084fc;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.article-hero h1{
    margin-top:24px;
    font-size:clamp(42px,6vw,82px);
    line-height:1.05;
    font-weight:800;
}

.article-subtitle{
    margin-top:26px;
    max-width:760px;
    font-size:20px;
    line-height:1.8;
    color:rgba(255,255,255,.72);
}

.article-meta{
    display:flex;
    flex-wrap:wrap;
    gap:24px;
    margin-top:34px;
    color:rgba(255,255,255,.6);
}

.article-meta span{
    display:inline-flex;
    align-items:center;
    gap:10px;
}

.article-content-section{
    padding:100px 0;
}

.article-content{
    font-size:19px;
    line-height:2;
    color:rgba(255,255,255,.78);
}

.article-content p{
    margin-bottom:28px;
}

.article-content h2{
    margin:70px 0 24px;
    font-size:42px;
    line-height:1.2;
    color:#fff;
    font-weight:800;
}

.article-content img{
    width:100%;
    border-radius:28px;
    margin:40px 0;
}

.article-content ul{
    padding-left:22px;
    margin-bottom:32px;
}

.article-content li{
    margin-bottom:14px;
}

.article-intro{
    font-size:24px;
    line-height:1.9;
    color:#fff;
}

.article-content blockquote{
    margin:50px 0;
    padding:40px;
    border-left:4px solid #a855f7;
    background:rgba(255,255,255,.03);
    border-radius:24px;
    font-size:28px;
    line-height:1.7;
    color:#fff;
    font-weight:600;
}

.article-highlight{
    margin:50px 0;
    padding:35px;
    border-radius:24px;
    background:
    linear-gradient(135deg,
    rgba(124,58,237,.2),
    rgba(168,85,247,.08));
    border:1px solid rgba(168,85,247,.22);
}

.article-highlight h3{
    margin-bottom:14px;
    color:#fff;
    font-weight:700;
}

.article-content hr{
    margin:60px 0;
    border-color:rgba(255,255,255,.08);
}

.article-footer{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.article-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.article-tags a{
    padding:12px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(168,85,247,.18);
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
}

.article-tags a:hover{
    background:#a855f7;
}

.article-share{
    display:flex;
    align-items:center;
    gap:14px;
}

.article-share a{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(168,85,247,.18);
    color:#fff;
    text-decoration:none;
    transition:.3s ease;
}

.article-share a:hover{
    background:#a855f7;
}

.related-posts{
    padding:110px 0;
    background:#070707;
}

@media(max-width:768px){

    .article-hero{
        min-height:auto;
    }

    .article-hero-content{
        padding:150px 0 70px;
    }

    .article-content{
        font-size:17px;
    }

    .article-content h2{
        font-size:34px;
    }

    .article-content blockquote{
        font-size:22px;
        padding:28px;
    }

    .article-footer{
        flex-direction:column;
        align-items:flex-start;
    }

}