.course-dates {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 0 30px;
}

.course_dates_webinar_subtitle {
    background-color: #ECF5FF;
    color: #0075FF;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
}

.course_dates_webinar_title {
    font-weight: 700;
    color: #001B2F;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 40px !important;
}

.course_dates_webinar_subtitle,
.course_dates_webinar_title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


.course-date-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F3F8FF;
    border-radius: 20px;
    padding: 25px;
}

.date-info-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.date-badge__day {
    background-color: #E5D4FF;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    padding: 10px 20px;
    text-align: center;
    color: #001B2F;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
}

.date-bade__bottom {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    background-color: #792FED;
    color: #F3F8FF;
    padding: 10px 20px;
    text-align: center;
}

.date-badge__number {
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
}

.date-badge__month {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.1;
}

.course-title {
    color: #001B2F;
    font-weight: 700;
    font-size: 22px !important;
    text-align: left;
}

.course-date {
    color: #0075FF;
    font-weight: 500;
    font-size: 16px;
}

.course-date-card_action {
    color: #0075FF;
}

.course-date-card_action .btn-enroll {
    text-decoration: none;
    border: 1px solid #0075FF !important;
    padding: 15px 20px;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 10px;
}

.btn-show-more {
    background-color: #F3F8FF;
    color: #0075FF;
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 40px !important;
    margin: auto;
    border: 1px solid #0075FF !important;
    font-weight: 700;
    line-height: 1.3;
    width: 350px;
}

.no-dates-card-webinar {
    background-color: #F3F8FF;
    border-radius: 10px;
    display: flex;
    padding: 40px 50px;
    text-align: center;
    align-items: center;
}

.no-dates-card-webinar img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    aspect-ratio: 1;
    margin: auto;
    object-fit: cover;
    object-position: center;
}


@media (max-width: 1024px) {
    .course-title {
        font-size: 20px !important;

    }

    .course-date {
        font-size: 15px;
    }

    .date-badge__day,
    .date-badge__month {
        font-size: 13px;
    }

    .date-badge__number {
        font-size: 20px;
    }

    .btn-enroll {
        font-size: 14px;
        padding: 12px 18px;
    }

    .btn-show-more {
        font-size: 14px;
        padding: 12px 18px;
        width: 300px;
    }
}

@media (max-width: 768px) {
    .course-title {
        font-size: 18px !important;
        text-align: center;
    }

    .course-date {
        font-size: 14px;
    }

    .date-info-wrapper {
        flex-direction: column;
    }

    .course-date-card {
        flex-direction: column;
        gap: 30px;
    }

    .date-badge__day,
    .date-badge__month {
        font-size: 12px;
    }

    .date-badge__number {
        font-size: 18px;
    }

    .btn-enroll {
        font-size: 13px;
        padding: 10px 16px;
    }

    .btn-show-more {
        font-size: 13px;
        padding: 10px 16px;
        width: 260px;
    }

    .no-dates-card-webinar img {
        display: none;
    }

    .course_dates_webinar_title {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .course-title {
        font-size: 16px !important;
    }

    .course-date {
        font-size: 13px;
    }

    .date-badge__day,
    .date-badge__month {
        font-size: 11px;
    }

    .date-badge__number {
        font-size: 16px;
    }

    .btn-enroll {
        font-size: 12px;
        padding: 10px 14px;
    }

    .btn-show-more {
        font-size: 12px;
        padding: 10px 14px;
        width: 100%;
        max-width: 240px;
    }
}