/*
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:44:04
    Author     : glaub
*/

.blog-section{
    position: relative;
    padding: 120px 0;
    background: #050505;
    overflow: hidden;
}

.blog-card{
    height: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(168,85,247,.15);
    border-radius: 24px;
    overflow: hidden;
    transition: .4s ease;
    backdrop-filter: blur(12px);
}

.blog-card:hover{
    transform: translateY(-8px);
    border-color: rgba(168,85,247,.55);
    box-shadow: 0 20px 60px rgba(168,85,247,.15);
}

.blog-thumb{
    overflow: hidden;
}

.blog-thumb img{
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .5s ease;
}

.blog-card:hover .blog-thumb img{
    transform: scale(1.06);
}

.blog-content{
    padding: 28px;
}

.blog-category{
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(168,85,247,.12);
    color: #b983ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.blog-content h3{
    margin-bottom: 14px;
}

.blog-content h3 a{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: .3s ease;
}

.blog-content h3 a:hover{
    color: #b983ff;
}

.blog-content p{
    margin-bottom: 22px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

.blog-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #b983ff;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.blog-link:hover{
    gap: 14px;
    color: #fff;
}

.btn-blog-all{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .4s ease;
    box-shadow: 0 10px 35px rgba(168,85,247,.3);
}

.btn-blog-all:hover{
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 18px 45px rgba(168,85,247,.4);
}