/*
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:54:17
    Author     : glaub
*/

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

.blog-hero {
    position: relative;
    padding: 160px 0 90px;
    background:
        radial-gradient(circle at top center, rgba(168,85,247,.25), transparent 35%),
        linear-gradient(180deg, #090909 0%, #050505 100%);
    overflow: hidden;
}

.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: .35;
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.blog-hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    background: linear-gradient(135deg, #fff, #b983ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero p {
    margin: 24px auto 0;
    max-width: 720px;
    color: rgba(255,255,255,.72);
    font-size: 18px;
    line-height: 1.8;
}

.blog-list-section {
    padding: 90px 0 120px;
    background: #050505;
}

.blog-filter-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 28px;
    border: 1px solid rgba(168,85,247,.18);
    border-radius: 28px;
    background: rgba(255,255,255,.035);
    backdrop-filter: blur(14px);
}

.blog-filter-box h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}

.blog-filter-box p {
    margin: 0;
    color: rgba(255,255,255,.65);
}

.blog-search {
    display: flex;
    align-items: center;
    min-width: 320px;
    padding: 6px;
    border: 1px solid rgba(168,85,247,.25);
    border-radius: 18px;
    background: rgba(0,0,0,.35);
}

.blog-search input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 14px;
    background: transparent;
    color: #fff;
}

.blog-search input::placeholder {
    color: rgba(255,255,255,.45);
}

.blog-search button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    color: #fff;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    color: rgba(255,255,255,.5);
    font-size: 14px;
}

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

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.blog-pagination a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(168,85,247,.22);
    background: rgba(255,255,255,.035);
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(168,85,247,.3);
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 130px 0 70px;
    }

    .blog-filter-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-search {
        width: 100%;
        min-width: 100%;
    }
}