/* Shared layout styles for Nieuws pages */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.75;
    color: #091431;
    background: #ffffff;
}

a { color: #091431; text-decoration: none; transition: color 0.2s; }
a:hover { color: #ff5e1a; }
img { max-width: 100%; height: auto; display: block; }

.header-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.header-wrapper:hover {
    background: #ffffff;
    border-bottom-color: #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.top-bar {
    color: #d0d0ce;
    font-family: 'Open Sans', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.3s;
}
.header-wrapper:hover .top-bar { color: #6b7280; }
.header-wrapper:hover .top-bar a { color: #6b7280; }
.header-wrapper:hover .top-bar a:hover { color: #091431; }
.header-wrapper:hover .top-bar .region-active { color: #091431; }
.top-bar-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a { color: #d0d0ce; font-size: 10px; }
.top-bar a:hover { color: #ffffff; }
.top-bar .region-active { color: #ffffff; font-weight: 600; }
.top-bar-right { display: flex; gap: 16px; }
.top-bar-right a { color: #ffffff; font-weight: 600; font-size: 11px; letter-spacing: 1px; }

.main-header {
    position: relative;
}
.header-wrapper:hover .header-nav a {
    color: #091431;
}
.header-wrapper:hover .header-nav a:hover {
    color: #ff5e1a;
}
.header-wrapper:hover .header-nav .search-icon {
    color: #091431;
}
.header-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}
.header-logo img { height: 36px; width: auto; }

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.header-nav a {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
}
.header-nav a:hover { color: #ffffff; }
.header-nav .search-icon {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: color 0.2s;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
}

.hero {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center top;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,1.0), rgba(0,0,0,0.2));
}
.hero-content {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 0;
    width: 100%;
}
.hero h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 54px;
    font-weight: 600;
    color: #ffffff;
}

.site-footer {
    background: #091431;
    color: #d0d0ce;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.footer-top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-top-logo img { height: 64px; }
.footer-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-top-right .linkedin-icon {
    color: #0077b5;
    font-size: 24px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.footer-top-right .linkedin-icon svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}
.footer-top-right .linkedin-icon:hover svg { fill: #d0d0ce; }
.footer-contact-btn {
    display: inline-block;
    padding: 10px 24px;
    border: 1px solid #d0d0ce;
    border-radius: 0;
    color: #d0d0ce;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-contact-btn:hover {
    background: #ffffff;
    color: #091431;
    border-color: #ffffff;
}

.footer-links-row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 32px 24px 48px;
    display: flex;
    gap: 80px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-link-group-title {
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7280;
    margin-bottom: 8px;
}
.footer-link-group a {
    color: #d0d0ce;
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
}
.footer-link-group a:hover { color: #ffffff; }

.footer-newsletter-group {
    margin-left: auto;
}
.footer-newsletter-desc {
    font-size: 13px;
    color: #8b8f96;
    line-height: 1.5;
    margin-bottom: 12px;
}
.footer-newsletter-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #ff5e1a;
    color: #ffffff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s;
}
.footer-newsletter-btn:hover {
    background: #e5520f;
    color: #ffffff !important;
}

.footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 12px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .top-bar { display: none; }
    .menu-toggle { display: block; }
    .header-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(9,20,49,0.95);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
        gap: 12px;
    }
    .header-nav.open { display: flex; }
    .hero { height: 320px; }
    .hero h1 { font-size: 32px; }
    .footer-top { flex-direction: column; gap: 24px; align-items: flex-start; }
    .footer-links-row { flex-direction: column; gap: 32px; }
}


/* ---- Migrated page-specific styles ---- */

/* From index.css */
.hero h1 { line-height: 1.1; }

.news-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 12px 80px;
}

.news-item {
    display: flex;
    gap: 0;
    padding: 30px 0;
    border-top: 1px solid #e5e7eb;
    align-items: flex-start;
}
.news-item:first-child {
    border-top: none;
}

.news-item-content {
    flex: 0 0 75%;
    max-width: 75%;
    padding-right: 40px;
}
.news-item-date {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    color: #091431;
    margin-bottom: 12px;
}
.news-item-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    color: #091431;
    margin-bottom: 8px;
}
.news-item-title a { color: #091431; }
.news-item-title a:hover { color: #ff5e1a; }

.news-item-source {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 700;
    color: #091431;
    margin-bottom: 12px;
}
.news-item-summary {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.75;
    color: #091431;
}

.news-item-subtitle { font-family: 'Open Sans', sans-serif; font-size: 24px; font-weight: 600; color: #374151; font-style: italic; margin: -6px 0 10px; }

.news-item-category { font-family: 'Open Sans', sans-serif; font-size: 22px; font-weight: 700; font-style: italic; color: #0225db; margin-bottom: 4px; }

.news-item-image {
    flex: 0 0 25%;
    max-width: 25%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}
.news-item-image img {
    max-width: 280px;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 2px solid #ff5e1a;
    border-radius: 6px;
}

.filter-bar {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 12px 0;
}
.filter-bar select {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    padding: 8px 32px 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #ffffff;
    color: #091431;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23091431' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.filter-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b7280;
    margin-right: 8px;
}

.loading {
    text-align: center;
    color: #6b7280;
    padding: 40px;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .news-item { flex-direction: column; }
    .news-item-content { flex: 1; max-width: 100%; padding-right: 0; }
    .news-item-image { max-width: 100%; }
    .news-item-title { font-size: 24px; }
}


/* From artikel.css */
.hero h1 { line-height: 1.1; }

.article-page {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.breadcrumb {
    grid-column: 1 / -1;
    padding: 24px 0 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #6b7280;
}
.breadcrumb a { color: #0026E2; }
.breadcrumb a:hover { color: #ff5e1a; }
.breadcrumb span { margin: 0 6px; }

.article-content {
    padding: 24px 0 80px;
}
.article-content h1 {
    font-family: 'Open Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1.25;
    color: #091431;
    margin-bottom: 16px;
}
.article-content .article-meta {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 8px;
}
.article-content .article-hero-image {
    width: 100%;
    max-height: 700px;
    object-fit: contain;
    border-radius: 4px;
    margin-bottom: 32px;
}
.article-content .article-body {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.85;
    color: #091431;
}
.article-content .article-body p {
    margin-bottom: 20px;
}
.article-content .article-body h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
}
.article-content .article-body h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 24px 0 12px;
}
.article-content .article-body ul,
.article-content .article-body ol {
    margin: 16px 0;
    padding-left: 24px;
}
.article-content .article-body li {
    margin-bottom: 8px;
}
.article-back {
    display: inline-block;
    margin-top: 32px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #0026E2;
}
.article-back:hover { color: #ff5e1a; }

.article-sidebar {
    padding: 24px 0 80px;
}
.sidebar-cta {
    background: #f8f9fa;
    padding: 32px 24px;
    border-left: 3px solid #ff5e1a;
}
.sidebar-cta h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}
.sidebar-cta p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 16px;
}
.btn-cta {
    display: inline-block;
    padding: 10px 24px;
    background: #ff5e1a;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s;
}
.btn-cta:hover { background: #e5520f; color: #ffffff; }

.error-message {
    text-align: center;
    padding: 60px 0;
}
.error-message h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    margin-bottom: 12px;
}

.loading {
    text-align: center;
    color: #6b7280;
    padding: 40px;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .article-page { grid-template-columns: 1fr; }
    .article-sidebar { padding-top: 0; }
}


/* From contact.css */
.hero h1 { line-height: 1.1; }

.content-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.content-intro {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 48px;
    max-width: 800px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 60px;
}

.contact-card {
    background: #f9fafb;
    padding: 32px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.contact-card h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #091431;
    margin-bottom: 16px;
}

.contact-card p {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #6b7280;
    margin-bottom: 20px;
}

        .contact-button {
            display: inline-block;
            padding: 10px 24px;
            background: #ff5e1a;
            color: #ffffff;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s;
        }
        .contact-button:hover {
            background: #e5520f;
            color: #ffffff !important;
        }

.address-block {
            background: #f9fafb;
            color: #091431;
            padding: 40px;
            border-radius: 4px;
            border: 1px solid #e5e7eb;
            margin-top: 40px;
}

.address-block h2 {
            font-family: 'Open Sans', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: #091431;
            margin-bottom: 24px;
}

        .address-item {
            font-family: 'Merriweather', serif;
            font-size: 15px;
            line-height: 1.4;
            color: #374151;
            margin-bottom: 4px;
        }

        .address-item strong {
            color: #091431;
            font-weight: 700;
        }

        .address-item a {
            color: #374151;
        }
        .address-item a:hover {
            color: #ff5e1a;
        }

@media (max-width: 768px) {
    .contact-cards { grid-template-columns: 1fr; }
}


/* From aanmelden.css */
.content-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.content-intro {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 48px;
    max-width: 800px;
}

.signup-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
    max-width: 600px;
}

.signup-card h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #091431;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #091431;
    margin-bottom: 6px;
}

.form-group label .optional {
    font-weight: 400;
    color: #6b7280;
    font-size: 13px;
}

.form-group input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: #ffffff;
    color: #091431;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: #091431;
    box-shadow: 0 0 0 2px rgba(9,20,49,0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-group input.input-error {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220,38,38,0.12);
}

.form-field-error {
    display: none;
    margin-top: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #b91c1c;
    line-height: 1.4;
}

.form-field-error.visible {
    display: block;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    margin-top: 28px;
}

.form-submit button {
    display: inline-block;
    padding: 12px 32px;
    background: #ff5e1a;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.form-submit button:hover {
    background: #e5520f;
}

.form-success {
    display: none;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 4px;
    padding: 24px;
    max-width: 600px;
}

.form-success h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #166534;
    margin-bottom: 8px;
}

.form-success p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #166534;
    line-height: 1.6;
}

.form-success.error-state {
    background: #fef2f2;
    border-color: #fecaca;
}

.form-success.error-state h2,
.form-success.error-state p {
    color: #b91c1c;
}

@media (max-width: 768px) {
    .signup-card { padding: 24px; }
    .form-row { grid-template-columns: 1fr; }
}


/* From over-ghx.css */
.hero h1 { line-height: 1.1; }

.content-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.content-intro {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 48px;
    max-width: 800px;
}

.section-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #091431;
    margin: 48px 0 24px 0;
}
.section-heading:first-of-type { margin-top: 0; }

.section-text {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 24px;
    max-width: 900px;
}

.image-break {
    width: 100%;
    margin: 48px 0;
    max-width: 100%;
}
.image-break img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.bullet-list {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 24px;
    margin-left: 20px;
}
.bullet-list li {
    margin-bottom: 12px;
    list-style-type: disc;
}
.bullet-list strong {
    font-weight: 700;
}

    .cta-section {
            background: #f9fafb;
            padding: 40px 24px;
            border-radius: 4px;
            margin-top: 60px;
        }

        .cta-section h2 {
            font-family: 'Open Sans', sans-serif;
            font-size: 28px;
            font-weight: 600;
            color: #091431;
            margin-bottom: 16px;
        }

        .cta-section p {
            font-family: 'Merriweather', serif;
            font-size: 16px;
            color: #6b7280;
            margin-bottom: 12px;
        }

        .cta-links {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cta-link {
            display: inline-block;
            padding: 10px 24px;
            background: #ff5e1a;
            color: #ffffff;
            font-family: 'Open Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            transition: background 0.2s;
        }
        .cta-link:hover { background: #e5520f;color: #ffffff !important; }


@media (max-width: 768px) {
    .cta-links { flex-direction: column; }
    .cta-link { width: 100%; text-align: center; }
}


/* From webinars.css */
.hero h1 { line-height: 1.1; }

.content-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 48px 24px 80px;
}

.content-intro {
    font-family: 'Merriweather', serif;
    font-size: 18px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 48px;
    max-width: 800px;
}

.section-heading {
    font-family: 'Open Sans', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #091431;
    margin-bottom: 32px;
    margin-top: 40px;
}
.section-heading:first-of-type { margin-top: 0; }

.webinar-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    margin-bottom: 24px;
    background: #ffffff;
    transition: box-shadow 0.2s;
}
.webinar-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.webinar-date-badge {
    flex: 0 0 auto;
    background: #001473;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: 4px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.webinar-date-badge-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    opacity: 0.9;
}
.webinar-date-badge-text {
    font-size: 18px;
    line-height: 1.2;
}

.webinar-details {
    flex: 1;
}

.webinar-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #091431;
    margin-bottom: 8px;
}

.webinar-datetime {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 12px;
}

.webinar-tag {
    display: inline-block;
    background: #f3f4f6;
    color: #091431;
    padding: 4px 12px;
    border-radius: 16px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.webinar-description {
    font-family: 'Merriweather', serif;
    font-size: 15px;
    line-height: 1.75;
    color: #091431;
    margin-bottom: 16px;
}

.webinar-button {
    display: inline-block;
    padding: 10px 24px;
    background: #ff5e1a;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}
.webinar-button:hover {
    background: #e54a0f;
}


@media (max-width: 768px) {
    .webinar-card { flex-direction: column; }
    .webinar-date-badge { min-width: auto; width: 100%; }
}

