/**
 * ==========================================================================
 * MultiPress Enterprise Read Also
 * ==========================================================================
 */

.mp-read-also{
    margin:40px 0;
    padding:28px;
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 8px 24px rgba(0,0,0,.05);
}

.mp-read-also__title{
    margin:0 0 22px;
    padding-bottom:12px;
    border-bottom:3px solid #2563eb;
    font-size:1.2rem;
    font-weight:700;
    color:#111827;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.mp-read-also__list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mp-read-also__item{
    display:flex;
    gap:18px;
    align-items:center;
    padding:14px;
    border-radius:12px;
    transition:.3s;
}

.mp-read-also__item:hover{
    background:#ffffff;
    box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.mp-read-also__thumb{
    flex:0 0 110px;
    display:block;
    overflow:hidden;
    border-radius:10px;
}

.mp-read-also__thumb img{
    width:110px;
    height:78px;
    object-fit:cover;
    display:block;
    transition:.35s;
}

.mp-read-also__item:hover .mp-read-also__thumb img{
    transform:scale(1.08);
}

.mp-read-also__content{
    flex:1;
}

.mp-read-also__content h4{
    margin:0 0 8px;
    font-size:1rem;
    line-height:1.5;
}

.mp-read-also__content h4 a{
    color:#111827;
    text-decoration:none;
    transition:.25s;
}

.mp-read-also__content h4 a:hover{
    color:#2563eb;
}

.mp-read-also__meta{
    display:flex;
    gap:18px;
    color:#6b7280;
    font-size:.82rem;
}

@media (max-width:768px){

    .mp-read-also{
        padding:20px;
    }

    .mp-read-also__item{
        gap:12px;
    }

    .mp-read-also__thumb{
        flex:0 0 90px;
    }

    .mp-read-also__thumb img{
        width:90px;
        height:65px;
    }

    .mp-read-also__content h4{
        font-size:.92rem;
    }

    .mp-read-also__meta{
        flex-direction:column;
        gap:4px;
    }

}
