/* ==================================================
                BLOG PAGE
================================================== */

.blog-hero {
    min-height: 65vh;

    display: flex;
    align-items: center;

    padding-top: 140px;
    padding-bottom: 80px;

    background:
        radial-gradient(
            circle at center,
            rgba(0,255,136,.08),
            transparent 55%
        );
}


/* =========================
        BLOG HERO
========================= */

.blog-hero-content {
    text-align: center;
    max-width: 850px;
    margin: auto;
}

.blog-terminal {
    display: inline-block;

    color: #00ffff;

    font-size: 18px;

    margin-bottom: 20px;

    letter-spacing: 2px;
}

.blog-terminal span {
    color: #00ff88;
}

.blog-hero h1 {
    font-family: 'Orbitron', sans-serif;

    font-size: 70px;

    color: #ffffff;

    margin-bottom: 25px;

    text-shadow:
        0 0 15px rgba(0,255,136,.35);
}

.blog-hero h1 span {
    color: #00ff88;
}

.blog-hero p {
    max-width: 700px;

    margin: auto;

    color: #cffff0;

    font-size: 19px;

    line-height: 1.8;
}

.blog-status {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-top: 30px;

    padding: 10px 18px;

    border: 1px solid #00ff8844;

    border-radius: 30px;

    color: #00ff88;

    font-size: 14px;

    letter-spacing: 1px;

    background: #03100c;
}

.status-dot {
    width: 8px;
    height: 8px;

    background: #00ff88;

    border-radius: 50%;

    box-shadow: 0 0 10px #00ff88;

    animation: pulse-status 1.5s infinite;
}

@keyframes pulse-status {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }

}


/* =========================
        FILTERS
========================= */

.blog-filters {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    margin-bottom: 50px;
}

.filter-btn {

    padding: 10px 18px;

    background: transparent;

    color: #cffff0;

    border: 1px solid #00ff8844;

    border-radius: 6px;

    font-family: 'Share Tech Mono', monospace;

    cursor: pointer;

    transition: .3s;
}

.filter-btn:hover,
.filter-btn.active {

    color: #001a12;

    background: #00ff88;

    border-color: #00ff88;

    box-shadow:
        0 0 15px #00ff8844;
}


/* =========================
        BLOG GRID
========================= */

.blog-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* =========================
        BLOG CARD
========================= */

.blog-card {

    background: #080b0a;

    border: 1px solid #00ff8833;

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

    box-shadow:
        inset 0 0 25px #00ff8810;
}

.blog-card:hover {

    transform: translateY(-8px);

    border-color: #00ff88;

    box-shadow:
        0 0 25px #00ff8825,
        inset 0 0 25px #00ff8815;
}


/* =========================
        FEATURED CARD
========================= */

.blog-card.featured {

    grid-column: span 2;

    display: grid;

    grid-template-columns: 1fr 1fr;
}


/* =========================
        BLOG IMAGE
========================= */

.blog-image {

    position: relative;

    height: 250px;

    overflow: hidden;

    background: #030605;
}

.blog-card.featured .blog-image {

    height: 100%;

    min-height: 320px;
}

.blog-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.blog-card:hover .blog-image img {

    transform: scale(1.05);
}

.blog-placeholder {

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 70px;

    color: #00ff88;

    background:
        radial-gradient(
            circle,
            #00ff8815,
            transparent 65%
        );
}


/* =========================
        CATEGORY
========================= */

.blog-category {

    position: absolute;

    top: 18px;
    left: 18px;

    padding: 7px 12px;

    background: #050707;

    border: 1px solid #00ff88;

    border-radius: 4px;

    color: #00ff88;

    font-size: 12px;

    letter-spacing: 1px;
}


/* =========================
        CONTENT
========================= */

.blog-content {

    padding: 28px;
}

.blog-meta {

    display: flex;

    gap: 20px;

    margin-bottom: 15px;

    color: #7cae9b;

    font-size: 13px;
}

.blog-meta span {

    display: flex;

    align-items: center;

    gap: 7px;
}

.blog-meta i {

    color: #00ff88;
}

.blog-content h3 {

    font-family: 'Orbitron', sans-serif;

    color: #00ff88;

    font-size: 23px;

    line-height: 1.4;

    margin-bottom: 15px;
}

.blog-content p {

    color: #cffff0;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 20px;
}


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

.blog-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 25px;
}

.blog-tags span {

    padding: 5px 9px;

    color: #00ffff;

    border: 1px solid #00ffff33;

    border-radius: 4px;

    font-size: 12px;
}


/* =========================
        READ MORE
========================= */

.read-more {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #00ff88 !important;

    font-weight: 700;

    font-size: 14px;

    transition: .3s;
}

.read-more:hover {

    color: #00ffff !important;

    gap: 15px;

}


/* =========================
        RESPONSIVE
========================= */

@media (max-width: 947px) {

    .blog-hero h1 {
        font-size: 55px;
    }

    .blog-card.featured {

        grid-column: span 1;

        display: block;
    }

    .blog-card.featured .blog-image {

        height: 250px;

        min-height: 0;
    }

}


@media (max-width: 690px) {

    .blog-hero {

        min-height: 55vh;

        padding-top: 120px;
    }

    .blog-hero h1 {

        font-size: 42px;
    }

    .blog-hero p {

        font-size: 16px;
    }

    .blog-grid {

        grid-template-columns: 1fr;
    }

    .blog-card.featured {

        grid-column: span 1;
    }

    .blog-content {

        padding: 22px;
    }

    .blog-content h3 {

        font-size: 20px;
    }

    .blog-filters {

        gap: 8px;
    }

    .filter-btn {

        font-size: 12px;

        padding: 8px 12px;
    }

}

/* ==================================================
   MODERN BLOG SYSTEM
================================================== */

.blog-hero{
    min-height:68vh;
    padding-top:150px;
    padding-bottom:90px;
    background:
        radial-gradient(circle at 50% 35%, rgba(0,255,136,.075), transparent 32%),
        linear-gradient(180deg,#050706,#070a09);
    border-bottom:1px solid rgba(0,255,136,.08);
}

.blog-hero::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        linear-gradient(rgba(0,255,136,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,255,136,.025) 1px, transparent 1px);
    background-size:50px 50px;
}

.blog-hero h1{
    font-size:clamp(50px,7vw,82px);
    letter-spacing:3px;
}

.blog-terminal{
    font-size:12px;
    letter-spacing:3px;
}

.blog-hero p{
    color:#91a49c;
    font-size:16px;
    max-width:650px;
}

.blog-status{
    border-radius:6px;
    background:rgba(0,255,136,.025);
}

.blog-section{
    background:#050706;
}

.blog-filters{
    margin-bottom:38px;
}

.filter-btn{
    border-radius:5px;
    font-size:11px;
    letter-spacing:1px;
    padding:9px 14px;
}

.blog-grid{
    gap:20px;
}

.blog-card{
    background:linear-gradient(145deg,#0b110f,#080b0a);
    border-color:rgba(0,255,136,.12);
    border-radius:14px;
    box-shadow:0 18px 55px rgba(0,0,0,.25);
}

.blog-card:hover{
    transform:translateY(-6px);
    border-color:rgba(0,255,136,.35);
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    font-size:20px;
}

.blog-content p{
    color:#91a49c;
    font-size:15px;
}

.blog-category{
    top:15px;
    left:15px;
    border-color:rgba(0,255,136,.6);
    background:rgba(5,7,6,.9);
}

.blog-tags span{
    border-color:rgba(0,255,255,.16);
    font-size:10px;
}

.read-more{
    font-size:12px;
    letter-spacing:1px;
}
