.card {
    --main-color: #090909;
    --bg-color: #fff;
    --sub-main-color: #B9B9B9;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    width: 210px;
    height: 292px;
    background: var(--bg-color);
    border-radius: 25px;
    padding: 30px;
}

.card__menu {
    cursor: pointer;
}

.card__img {
    height: 152px;
    width: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    background: #e8e8e8;
    border-radius: 100%;
}

.card__img svg {
    width: 100px;
    height: 104px;
    border-radius: 100%;
}

.card__title {
    font-weight: 500;
    font-size: 20px;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 5px;
    margin-top: 34px;
}

.card__subtitle {
    font-weight: 400;
    font-size: 16px;
    color: var(--sub-main-color);
    text-align: center;
    cursor: pointer;
}

.card__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.card__time {
    font-weight: 400;
    font-size: 12px;
    color: var(--main-color);
}

.card__timeline {
    width: 100%;
    height: 4px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.card__timeline progress {
    width: 100%;
    height: 100%;
    border-radius: 100px;
}

.card__timeline progress::-webkit-progress-bar {
    background-color: #424242;
    border-radius: 100px;
}

.card__timeline progress::-webkit-progress-value {
    background-color: #fff;
    border-radius: 100px;
}

.card__btn {
    border: none;
    background: transparent;
    cursor: pointer;
}

.card__btn path {
    fill: var(--main-color);
}

.card__btn-play {
    width: 60px;
    height: 60px;
    background: #e8e8e8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.card-container {
    display: flex;
    justify-content: space-around;
    /* Adjust as needed */
    align-items: center;
    /* Adjust as needed */
}

.card {
    width: 200px;
    /* Adjust as needed */
    height: 300px;
    /* Adjust as needed */
    margin: 0 10px;
    /* Adjust as needed */
    border: 1px solid #ccc;
    /* Adjust as needed */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Adjust as needed */
}

.card__img {
    width: 100%;
    height: 70%;
    /* Adjust as needed */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.card__title {
    text-align: center;
    padding: 3px;
}