.webinar-title{
    font-size: 52px;
    color: #56585a;
}
.webinar-full-card{
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 20px;
    margin-bottom: 24px;
    transition: all 0.5s ease-in-out;
}
.webinar-full-card a{
    text-decoration: none;
}
.webinar-full-card:hover{
    opacity: 0.7;
    transition: all 0.5s ease-in-out;
}
.webinar-full-card a:hover{
    color:#333;
}
/*Specifically the text and video*/
.webinar-content{
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding:12px;
    align-items: flex-end;
}
.webinar-video iframe {
    width: 100%;
    height: 276px;
}
.webinar-text-block p{
    font-size:16px;
}
/*Webinar Filter Sidebar*/
.webinar-monthly-archives h2 {
    text-align: center;
    margin-bottom: 0;
}
.webinar-monthly-archives > p {
    text-align: center;
    font-size: 0.9em;
    color: #666;
    margin: 0 0 1rem 0;
}
.webinar-reset-button {
    text-align: center;
    margin-bottom: 1rem;
}
.webinar-reset-button a {
    display: inline-block;
    padding: 8px 16px;
    background-color: #56585a;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}
.webinar-reset-button a:hover {
    opacity: 0.9;
}
.webinar-filter {
    background-color: #d7d7d7;
    padding: 0 1rem 1rem;
    border: 1px solid #aaaaaa;
    border-radius: 7px;
    margin-top: 5.6rem;
}
.webinar-filter h2, .webinar-filter p {
    text-align: center;
}
/*Toggle/Accordion Styles*/
.fusion-toggle-element {
    border: 1px solid #ddd;
}
.webinar-filter h2 {
    margin-bottom: 0;
    font-size: 2rem;
}
.webinar-filter p {
    margin: 4px;
    line-height: 1.1;
    font-size: 0.8rem;
}
.toggle {
    margin-bottom: 0;
}
.toggle-title {
    cursor: pointer;
    background-color: #f5f5f5;
    padding: 10px 12px;
    border: 1px solid #ddd;
    font-weight: 500;
}
.toggle-title span {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 8px;
}
.toggle-content {
    padding: 10px 0;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-top: none;
}
.toggle-content ul {
    list-style: none;
    padding-left: 12px;
    margin: 0;
}
.toggle-content li {
    margin-bottom: 0.5rem;
}
.toggle-content a {
    text-decoration: none;
    color: inherit;
}
.toggle-content a.active {
    font-weight: bold;
    font-size: 1.2rem;
}
.toggle-content a:hover {
    color: #56585a;
}
.post-count {
    color: #999;
    font-size: 0.9em;
}

/*On mobile devices and iPad, text will go under the video*/
@media (max-width: 1024px) {
    .webinar-content {
        flex-direction: column;
        gap: 16px;
    }
    .webinar-full-card {
        padding: 10px;
    }
    .webinar-content, .webinar-video {
        padding: 0 !important;
    }
    .webinar-video iframe {
    height: 158px;
}
.webinar-filter { 
    margin-top: 0;
}
