.webinars-wrapper {
    justify-content: flex-start;
}

.webinars {
    background-color: var(--color-white);
    border: 1px solid var(--color-border-2);
    border-radius: 10px;
}

.webinars:hover {
    box-shadow: 0 6px 24px 0 rgba(18, 43, 70, .12);
}

.webinar-link:hover,
.webinar-link:active,
.webinar-link:focus {
    color: inherit;
}

.webinar-meta {
    height: 100%;
    text-align: left;
}

.webinar-meta .webinar-link {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 20px 20px;
}

.webinar-title {
    font-size: var(--font-xxl);
    font-weight: var(--font-bold);
}

.webinars .button {
    min-width: auto;
    width: 100%;
    margin-top: auto;
}

@media (max-width: 850px) {
    .webinars-wrapper:not(.element-scroll-mobile) > .d-col-33 {
        max-width: calc(50% - 15px);
        width: calc(50% - 15px);
    }
}

@media (min-width: 768px) {
    .webinar-meta {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .webinars-wrapper > .d-col-33 {
        padding-bottom: 2px;
    }
}

@media (max-width: 580px) {
    .webinars-wrapper:not(.element-scroll-mobile) > .d-col-33 {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 544px) {
    .webinars {
        max-width: 100%;
        width: 100%;
    }
}