.aac-webinars-history {
    display: grid;
    gap: 2rem;
}

.aac-webinar {
    display: grid;
    grid-template-columns: minmax(220px, 38%) 1fr;
    overflow: hidden;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    background: #fff;
}

.aac-webinar--without-image {
    grid-template-columns: 1fr;
}

.aac-webinar__image {
    display: block;
    min-height: 220px;
    background: #f2f2f2;
}

.aac-webinar__image img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.aac-webinar__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
}

.aac-webinar__date,
.aac-webinar__meta {
    color: #6d6d6d;
}

.aac-webinar__title {
    margin: .5rem 0;
}

.aac-webinar__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: auto;
    padding-top: 1.5rem;
}

.aac-latest-webinar {
    overflow: hidden;
    max-width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 18px rgba(0, 0, 0, .08);
    margin-top: 25px !important;
}

.aac-latest-webinar__visual {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f2f2f2;
}

.aac-latest-webinar__visual img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .2s ease;
}

.aac-latest-webinar__visual:hover img,
.aac-latest-webinar__visual:focus img {
    transform: scale(1.015);
}

.aac-latest-webinar__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 48px;
    border-radius: 12px;
    background: #f00;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
    transform: translate(-50%, -50%);
}

.aac-latest-webinar__play::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17px solid #fff;
    content: '';
    transform: translate(-42%, -50%);
}

.aac-latest-webinar__content {
    padding: 1rem .75rem .75rem;
}

.aac-latest-webinar__title {
    margin: 0 0 .75rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.aac-latest-webinar__title a {
    color: inherit;
    text-decoration: none;
}

.aac-latest-webinar__title a:hover,
.aac-latest-webinar__title a:focus {
    text-decoration: underline;
}

.aac-latest-webinar__date {
    color: #6d6d6d;
    font-size: .9rem;
}

.aac-latest-webinar__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

.aac-latest-webinar__video-count {
    margin-left: auto;
    font-size: .9rem;
    text-align: right;
}

.aac-latest-webinar__history-link {
    display: inline-block;
    margin-top: .75rem;
    font-size: .9rem;
}

@media (max-width: 700px) {
    .aac-webinar {
        grid-template-columns: 1fr;
    }

    .aac-webinar__image,
    .aac-webinar__image img {
        min-height: 0;
    }

    .aac-webinar__image img {
        aspect-ratio: 16 / 9;
    }
}
