/* ===============================
   HEADER RUMAH JURNAL
==================================*/

.ncg-header{

    display:flex;
    align-items:center;

    background:linear-gradient(90deg,#7b0000 0%,#980000 55%,#c02020 100%);

    border:2px solid #b98950;

    min-height:120px;

    position:relative;

    overflow:hidden;
}

/* dekorasi kanan */

.ncg-header:before{

    content:"";

    position:absolute;

    right:-80px;
    top:-40px;

    width:240px;
    height:240px;

    background:rgba(255,255,255,.08);

    transform:rotate(45deg);

}

.ncg-header:after{

    content:"";

    position:absolute;

    right:30px;
    top:15px;

    width:130px;
    height:90px;

    border:2px solid rgba(255,255,255,.18);

    border-radius:12px;

    transform:rotate(45deg);
}

.ncg-logo{

    width:130px;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;
}

.ncg-logo img{

    width:90px;

    height:90px;

    border-radius:50%;

    background:white;

    padding:6px;
}

.ncg-content{

    flex:1;

    color:white;

    z-index:2;
}

.ncg-small-title{

    font-size:16px;

    font-weight:600;

    margin-bottom:2px;
}

.ncg-title{

    font-size:38px;

    font-weight:800;

    letter-spacing:.5px;

    line-height:1;
}

.ncg-desc{

    margin-top:8px;

    font-size:13px;

    color:#f7f7f7;
}

@media(max-width:768px){

.ncg-header{

    flex-direction:column;

    text-align:center;

    padding:15px;
}

.ncg-title{

    font-size:26px;
}

.ncg-logo{

    margin-bottom:10px;
}

}