.course-structure {
    background: radial-gradient(198.13% 90.64% at 12.47% 29.59%, rgb(195, 218, 249) 0%, rgb(232, 234, 255) 100%);
}

.course-structure__heading {
    text-align: center;
}

.course-structure__top-block {
    box-shadow: 0 10px 20px 0 rgba(161, 194, 242, 0.8);
    background: linear-gradient(232deg, rgba(230, 238, 254, 0.5) 0%, rgba(243, 250, 255, 0.5) 100%), radial-gradient(198.13% 90.64% at 12.47% 29.59%, rgb(240, 247, 255) 0%, rgb(198, 197, 255) 100%);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.course-structure__label {
    border: 1px solid #b49fe8;
    padding: 11px 20px;
    border-radius: 50px;
    width: fit-content;
    color: #b49fe8;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    margin-bottom: 20px;
}

.course-structure__top-block-heading {
    margin-bottom: 35px;
}

.course-structure__top-block-content * {
    margin-bottom: 0;

}

.course-structure__top-block-content p {
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    color: #565656;
}

.course-structure__items {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;

}

.course-structure__item {
    flex-basis: calc((100% - 24px) / 2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 20px 0 rgba(161, 194, 242, 0.8);
    background: linear-gradient(232deg, rgba(230, 238, 254, 0.5) 0%, rgba(243, 250, 255, 0.5) 100%), radial-gradient(198.13% 90.64% at 12.47% 29.59%, rgb(240, 247, 255) 0%, rgb(198, 197, 255) 100%);
}

.course-structure__item ul {
    list-style: none;
}

.course-structure__item ul li {
    position: relative;
    padding-left: 34px;
}

.course-structure__item ul li:not(:last-child) {
    margin-bottom: 15px;
}

.course-structure__item ul li:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: center / contain no-repeat url(/wp-content/plugins/custom-widgets/program-list/circle-check-fill.svg);
    display: block;
}

.course-structure__item__heading {
    margin-bottom: 20px;
}
.body3>p img{
    max-width: 350px;
    object-fit: cover;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 991.98px) {
    .course-structure__item:has(.body3>p img){
      display: none;
    }
    .course-structure__items {
        flex-direction: column;
        gap: 20px;
    }

    .course-structure__top-block {
        padding: 30px;
    }

    .course-structure__item {
        padding: 30px;
    }
}

@media screen and (max-width: 599.98px) {
    .course-structure__label {
        font-size: 14px;
        padding: 8px 15px;
        border-radius: 40px;
        margin-bottom: 20px;
    }

    .course-structure__top-block-heading {
        margin-bottom: 32px;
    }

    .course-structure__top-block-content p {
        font-size: 16px;
    }

    .course-structure__top-block-content p strong {
        font-size: 18px;
    }

    .course-structure__top-block {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .course-structure__item {
        padding: 30px 20px;
    }
}