.widget-webinar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media only screen and (max-width: 992px) {
    .widget-webinar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 768px) {
    .widget-webinar-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.widget-webinar-item-grid-top  {
    display:flex;
    gap:16px;
    flex-direction: column;
}

.widget-webinar-item-grid-item {
    display:flex;
    gap:16px;
    flex-direction: column;
    background-color: #fff;
    border-radius: 16px;
    padding:16px;
    justify-content: space-between;
}

.widget-webinar-item-grid-item-info-type-date {
    display:flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.widget-webinar-item-grid-item-info {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.widget-webinar-item-grid-item-image img {
    border-radius: 16px;
    max-height: 200px;
    margin: auto;
    display: flex;
}

.widget-webinar-item-grid-item-info-read svg {
    fill: #292E2E;
    width: 14px;
    padding-top: 10px;
}

.widget-webinar-item-grid-item-read-more a{
    background: #111F47;
    background: linear-gradient(to right, #111F47 0%, #00CFCA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}

.widget-webinar-item-grid-item-title {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #040E25;
}

.widget-webinar-item-grid-item-excerpt {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #040E25;
}

.widget-webinar-item-grid-item-info-date {
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    color: #292E2E;
}

.widget-webinar-item-grid-item-info-read .reading-time {
    font-family: Montserrat;
    font-size: 14px;
    font-weight: 400;
    line-height: 30.8px;
    color: #292E2E;
}

.widget-webinar-item-grid-item-info-type .header-post-type {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    color: #FFFFFF;
    /*background: rgb(17,31,71);
    background: linear-gradient(90deg, rgba(17,31,71,1) 0%, rgba(0,207,202,1) 100%);*/
    background-color:#040E25;
    border-radius: 48px;
    padding-right: 16px;
    padding-left: 16px;
}


