/*=========================================
  Today's E-Paper
=========================================*/

.jsn-todays-paper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
    background:#fff;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.jsn-paper-content{
    flex:1;
    width:100%;
}

.jsn-paper-label{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:26px;
    font-weight:500;
    color:#111827;
    margin-bottom:18px;
}

.jsn-paper-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 12px;
    background:#ef4444;
    color:#fff;
    border-radius:6px;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.jsn-paper-date{
margin:0;
}

.jsn-paper-edition{
    margin-top:12px;
    font-size:18px;
    font-weight:600;
    color:#ef4444;
}

.jsn-paper-time{
    margin:20px 0 30px;
    color:#6b7280;
    font-size:17px;
    line-height:1.7;
}

.jsn-paper-time strong{
    color:#111827;
}

.jsn-paper-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#ef4444;
    color:#fff !important;
    text-decoration:none;
    padding:16px 30px;
    border-radius:8px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
}



.jsn-paper-image{
    flex:0 0 420px;
    text-align:center;
}

.jsn-paper-image img{
    width:100%;
    max-width:420px;
    height:auto;
    display:block;
    border-radius:12px;
    box-shadow:0 12px 35px rgba(0,0,0,.12);
    transition:.35s;
}

.jsn-paper-image:hover img{
    transform:scale(1.03);
}

/*=========================================
  Tablet
=========================================*/

@media(max-width:1024px){

    .jsn-todays-paper{
        gap:30px;
        padding:30px;
    }

    .jsn-paper-date{
        font-size:38px;
    }

    .jsn-paper-image{
        flex:0 0 320px;
    }

}

/*=========================================
  Mobile
=========================================*/

@media(max-width:767px){

    .jsn-todays-paper{
        flex-direction:column-reverse;
        text-align:left;
        padding:0px;
    }

    .jsn-paper-content{
        max-width:100%;
    }

    .jsn-paper-label{
        justify-content:left;
        font-size:22px;
    }

    .jsn-paper-date{
        font-size:22px;
    }

    .jsn-paper-time{
        font-size:15px;
    }

    .jsn-paper-image{
        width:100%;
        flex:auto;
    }

    .jsn-paper-image img{
        max-width:320px;
        margin:auto;
    }

    .jsn-paper-btn{
        width:100%;
    }

}