.dh-webinar-learning {
    padding: 40px 0;
    background-color: #fff;
}

@media (min-width: 992px) {
    .dh-webinar-learning {
        padding: 60px 0;
    }
}

.dh-webinar-learning__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dh-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #DF002F;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.dh-webinar-learning__title {
    color: var(--primary-black-100, #111B29);
    font-family: Lato;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 116%;
    /* 32.48px */
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .dh-webinar-learning__title {
        font-size: 36px;
        line-height: 116%;
        /* 41.76px */
    }
}

.dh-webinar-learning__intro {
    color: var(--primary-black-100, #111B29);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    /* 21.12px */
    margin-bottom: 24px;
}

.dh-webinar-learning__points {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dh-learning-point {
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Gap between header and text */
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #FCE7E8;
}

.dh-learning-point:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.dh-learning-point__header {
    display: flex;
    align-items: center;
    gap: 6px;
    /* Gap between icon and title */
}

.dh-learning-point__icon {
    flex-shrink: 0;
    width: 27px;
    height: 27px;
    margin-top: 0;
}

.dh-learning-point__title {
    color: var(--primary-red-100, #DF002F);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 132%;
    /* 21.12px */
    margin: 0;
}

.dh-learning-point__text {
    color: var(--primary-black-100, #111B29);
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 132%;
    margin: 0;
}

.dh-webinar-learning__media picture,
.dh-webinar-learning__media img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .dh-webinar-learning__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dh-webinar-learning__media {
        /* order: -1; Removed to fix responsive layout */
    }
}