/* ==========================================================================
   Webinar Plugin Styles
   Recruiters Websites
   ========================================================================== */

/* --- Stacked Slide Card (past + related sliders) --- */
.webinar-slide {
    background: white;
    border-radius: 18px;
    padding: 20px 20px 40px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

a.webinar-slide {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

a.webinar-slide:hover {
    box-shadow: 0 0 18px rgba(0,0,0,0.25);
    transition: box-shadow 0.2s ease;
    text-decoration: none;
}

.webinar-slide-title {
    margin-bottom: 16px;
}

.webinar-slide-excerpt {
    margin: 15px 0;
}

/* --- Upcoming Slide Card (horizontal layout) --- */
.webinar-upcoming-slide-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: white;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

a.webinar-upcoming-slide-inner {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: flex;
}

a.webinar-upcoming-slide-inner:hover {
    box-shadow: 0 0 18px rgba(0,0,0,0.25);
    transition: box-shadow 0.2s ease;
    text-decoration: none;
}

.webinar-upcoming-image {
    flex: 0 0 40%;
}

.webinar-upcoming-image img {
    width: 100%;
    height: auto;
    display: block;
}

.webinar-upcoming-content {
    flex: 1;
}

/* --- Shared Meta / Typography --- */
.webinar-slide-meta,
.webinar-upcoming-meta {
    color: #727272;
    font-size: 15px;
    margin: 15px 0 2px;
}

/* --- Current Webinar Title --- */
.current-webinar-title {
    text-align: center;
}

.current-webinar-title h2 {
    color: rgba(0,0,0,0.5);
    text-transform: uppercase;
}

/* --- Accent Box --- */
.left-border-box-design-webinar {
    padding-left: 4px;
    padding-bottom: 4px;
    box-shadow: -5px 5px 0px 0px #f58050;
    border-radius: 18px;
}

/* --- Slick Overrides --- */
.slick-track {
    display: flex !important;
}

.slick-slide {
    height: inherit !important;
    margin: 10px;
}

/* --- Responsive --- */
@media ( max-width: 768px ) {
    .webinar-upcoming-slide-inner {
        flex-direction: column;
    }
}
