/* Webinars Block Styles */
.resources-webinars-block {
    background: #f8f9fc;
}

.resources-webinars-block .resources-section-title {
    font-family: 'Libre Baskerville', serif;
    font-weight: 700;
    color: #1E2344;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.resources-webinars-block .resources-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #ccac60;
    border-radius: 2px;
}

.resources-webinars-block .webinar-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.resources-webinars-block .webinar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.resources-webinars-block .webinar-card .title {
    font-family: 'Jost', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1E2344;
    padding: 20px 25px;
    margin-bottom: 0;
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #f1f1f4;
}

.resources-webinars-block .webinar-card .resources__video {
    position: relative;
    flex-grow: 1;
    background: #000;
}

.resources-webinars-block .webinar-card .hd-modal-wrapper {
    transition: opacity 0.3s ease;
}
.resources-webinars-block .webinar-card .hd-modal-wrapper:hover {
    opacity: 0.9;
}
