.kids_music_home{
    width:88%;
    max-width:1110px;
    margin:28px auto 35px;
    padding:26px 30px;
    box-sizing:border-box;
    direction:rtl;
    display:flex;
    align-items:center;
    gap:30px;
    position:relative;
    overflow:hidden;

    background:linear-gradient(135deg,#fff9e9 0%,#f7fbf8 55%,#eefaf9 100%);
    border:1px solid #eee4c9;
    border-radius:28px;

    box-shadow:0 6px 20px rgba(0,0,0,.06);
}

/* دایره‌های تزئینی کودکانه */
.kids_music_home:before,
.kids_music_home:after{
    content:"";
    position:absolute;
    border-radius:50%;
    pointer-events:none;
}

.kids_music_home:before{
    width:110px;
    height:110px;
    background:rgba(255,198,0,.12);
    top:-45px;
    left:-30px;
}

.kids_music_home:after{
    width:80px;
    height:80px;
    background:rgba(25,184,175,.10);
    bottom:-35px;
    right:20%;
}

.kids_music_visual{
    width:180px;
    min-width:180px;
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;

    background:#fff;
    border:5px solid #fff3c8;
    border-radius:50%;

    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.kids_music_visual a{
    display:flex;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
}

.kids_music_visual img{
    display:block;
    max-width:105px;
    max-height:105px;
    width:auto;
    height:auto;
}

.kids_music_content{
    flex:1;
    min-width:0;
    position:relative;
    z-index:2;
    text-align:right;
}

.kids_music_badge{
    display:inline-block;
    margin-bottom:9px;
    padding:5px 13px;

    background:#fff0b9;
    color:#806300;

    border-radius:18px;
    font-size:12px;
    font-weight:500;
}

.kids_music_content h2{
    margin:0 0 9px;
    padding:0;

    color:#333;
    font-size:21px;
    font-weight:700;
    line-height:34px;
}

.kids_music_content p{
    margin:0 0 18px;
    padding:0;

    max-width:680px;
    color:#666;
    font-size:13.5px;
    font-weight:400;
    line-height:27px;
}

.kids_music_button{
    display:inline-block;

    padding:9px 22px;

    background:#19b8af;
    color:#fff !important;

    border-radius:24px;

    font-size:13.5px;
    font-weight:500;

    transition:.2s;
}

.kids_music_button:hover{
    background:#159e96;
    border-radius:14px;
    transition:.2s;
}


/* موبایل */
@media screen and (max-width:700px){

    .kids_music_home{
        width:92%;
        padding:22px 17px 24px;
        margin:22px auto 28px;

        flex-direction:column;
        gap:15px;

        text-align:center;
        border-radius:24px;
    }

    .kids_music_visual{
        width:125px;
        min-width:125px;
        height:125px;
    }

    .kids_music_visual img{
        max-width:75px;
        max-height:75px;
    }

    .kids_music_content{
        text-align:center;
    }

    .kids_music_content h2{
        font-size:18px;
        line-height:30px;
    }

    .kids_music_content p{
        font-size:13px;
        line-height:25px;
        margin-bottom:16px;
    }

    .kids_music_button{
        padding:9px 20px;
    }
}