/* =====================================================
   LEAKED DOCUMENTS
===================================================== */

/* HERO */

.leak-hero{

    padding:80px 60px;

    border-bottom:1px solid rgba(124,255,124,0.1);

    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.92)),
    url('https://images.unsplash.com/photo-1520034475321-cbe63696469a?q=80&w=1600&auto=format&fit=crop')
    center/cover no-repeat;

}

.leak-hero-content{

    max-width:900px;

}

.leak-hero-id{

    color:#7CFF7C;

    letter-spacing:3px;

    margin-bottom:20px;

    font-size:14px;

}

.leak-hero h1{

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

    font-size:86px;

    letter-spacing:8px;

    margin-bottom:25px;

    text-transform:uppercase;

}

.leak-description{

    max-width:850px;

    line-height:2;

    color:#cfcfcf;

    font-size:18px;

}

/* GRID */

.leak-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fill,minmax(340px,1fr));

    gap:35px;

    padding:60px;

}

/* CARD */

.leak-card{

    background:#0b1117;

    border:1px solid rgba(255,255,255,0.06);

    padding:35px;

    transition:0.3s;

    position:relative;

    overflow:hidden;

}

.leak-card:hover{

    transform:translateY(-4px);

    border-color:rgba(124,255,124,0.25);

    box-shadow:
    0 0 25px rgba(124,255,124,0.08);

}

/* CLASSIFIED STRIP */

.leak-card::after{

    content:"CLASSIFIED";

    position:absolute;

    top:18px;

    right:-30px;

    transform:rotate(35deg);

    background:rgba(255,0,0,0.12);

    color:#ff7070;

    padding:6px 40px;

    font-size:11px;

    letter-spacing:2px;

}

/* DOC */

.leak-doc-type{

    color:#7CFF7C;

    font-size:13px;

    letter-spacing:2px;

    margin-bottom:16px;

}

.leak-doc-title{

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

    font-size:38px;

    margin-bottom:20px;

    letter-spacing:2px;

    line-height:1.1;

}

.leak-doc-desc{

    line-height:1.9;

    color:#c2c2c2;

    margin-bottom:30px;

}

/* META */

.leak-meta{

    border-top:1px solid rgba(255,255,255,0.06);

    padding-top:20px;

    line-height:2;

    color:#8d8d8d;

    font-size:14px;

}

/* ACTIONS */

.leak-actions{

    margin-top:30px;

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

/* TERMINAL */

.leak-terminal{

    margin:0 60px 70px;

    background:black;

    border:1px solid rgba(124,255,124,0.15);

    padding:30px;

    color:#7CFF7C;

    line-height:2;

    overflow:auto;

}

/* FOOTER */

.leak-footer{

    margin:70px 0;

    text-align:center;

    color:rgba(255,255,255,0.2);

    letter-spacing:3px;

    font-size:12px;

}

/* MOBILE */

@media(max-width:900px){

.leak-hero{

    padding:50px 30px;

}

.leak-hero h1{

    font-size:52px;

}

.leak-grid{

    padding:30px;

}

.leak-doc-title{

    font-size:28px;

}

.leak-terminal{

    margin:0 30px 50px;

}

}