
.db-wrapper{
    position:relative;
    margin:28px 0;
}

.db-top-line{
    position:absolute;
    top:-11px;
    left:22px;
    right:22px;
    display:flex;
    align-items:center;
    gap:12px;
    z-index:20;
}

.db-label{
    background:#fff;
    padding-right:10px;
    font-size:21px;
    font-weight:800;
    line-height:1;
    white-space:nowrap;
    display:flex;
    align-items:center;
    position:relative;
    z-index:3;
}

.db-line{
    flex:1;
    height:3px;
    margin-top:1px;
    background-position:top;
    background-size:14px 3px;
    background-repeat:repeat-x;
    border:none !important;
    box-shadow:none !important;
    outline:none !important;
}

/* MAIN BOX */
.db-also-read-box{
    background:#fff;
    border-radius:34px;
    padding:38px 18px 18px;
    width:100%;
    box-sizing:border-box;
    overflow:hidden;

    /* CRITICAL FIX */
    position:relative;
    z-index:1;

    /* remove hidden black artifacts */
    box-shadow:none !important;
    outline:none !important;
}

/* REMOVE ALL EXTRA LINES */
.db-also-read-box::before,
.db-also-read-box::after,
.db-top-line::before,
.db-top-line::after,
.db-wrapper::before,
.db-wrapper::after{
    display:none !important;
    content:none !important;
    border:none !important;
    background:none !important;
    box-shadow:none !important;
}

/* Prevent theme conflicts */
.db-also-read-box *{
    box-shadow:none;
}

.db-flex{
    display:flex;
    align-items:center;
    gap:20px;
}

.db-image{
    flex-shrink:0;
}

.db-image img{
    width:170px;
    height:118px;
    object-fit:cover;
    border-radius:18px;
    display:block;
}

.db-title{
    font-size:18px;
    font-weight:700;
    line-height:1.55;
    word-break:break-word;
}

.db-link{
    text-decoration:none !important;
    display:block;
}

@media(max-width:768px){

    .db-wrapper{
        margin:22px 0;
    }

    .db-top-line{
        left:14px;
        right:14px;
        top:-9px;
        gap:10px;
    }

    .db-label{
        font-size:18px;
        padding-right:8px;
    }

    .db-line{
        height:2px;
        background-size:12px 2px;
    }

    .db-also-read-box{
        border-radius:28px;
        padding:30px 14px 14px;
    }

    .db-flex{
        gap:14px;
        align-items:flex-start;
    }

    .db-image img{
        width:118px;
        height:82px;
        border-radius:14px;
    }

    .db-title{
        font-size:16px;
        line-height:1.45;
    }
}
