
.cd-section .row .col-md-3,
.cd-section .row .content-col {
    margin-bottom: 40px;
}
.cd-section .img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}
.cd-section .img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.cd-section .img-wrapper::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}
.cd-section .content-col {
    padding-left: 40px;
}
.cd-section .artist-info {
    font-size: 0.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-family: 'Afacad Flux', sans-serif;
}
.cd-section .artist-info span {
    margin-right: 25px;
}
.cd-section .title-h3 h3 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-family: 'Afacad Flux', sans-serif;
    color: #fff;
}
.cd-section .title-h3 h3 i {
    margin-right: 15px;
    font-size: 1.5rem;
}
/* MP3 Player Section */
.cd-section .mp3-player {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.cd-section .play-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    flex-shrink: 0;
}
.cd-section .time-label {
    font-size: 0.85rem;
    color: #fff;
    min-width: 45px;
    font-family: 'Afacad Flux', sans-serif;
}
.cd-section .progress-container {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
}
.cd-section .progress-bar-custom {
    height: 100%;
    background: #fff;
    width: 60%; /* Example progress */
}
.cd-section .player-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 10px;
}
.cd-section .player-icons i {
    font-size: 1.3rem;
    cursor: pointer;
    color: #fff;
}
.cd-section .description {
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
    /* max-width: 95%; */
}
.read-more-btn {
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.read-more-btn:hover {
    background: #333;
}