.content-container {
    background: #fff;
    padding: 25px;
    font-size: 15px;
}

    .content-container .accordion {
        padding: 5px 0 5px 0;
    }

    .content-container .accordion-button {
        background-color: #f0f0f0;
        font-weight: bold;
    }

        .content-container .accordion-button svg {
            display: none;
        }

.embeditem {
    margin: 0 auto;
}

    .embeditem iframe {
        width: 680px;
        max-width: 100%;
        aspect-ratio: 16 / 9;
        height: auto;
        display: block;
    }

@media (max-width: 768px) {
    .embeditem iframe {
        width: 100%;
    }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #444;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s ease;
    font-family: sans-serif;
}

    .cookie-banner.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-banner__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner__button {
    background: #fff;
    color: #111;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.2s ease;
}

    .cookie-banner__button:hover {
        background: #e5e5e5;
    }

.cookie-banner__button--decline {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

    .cookie-banner__button--decline:hover {
        background: rgba(255,255,255,0.1);
    }

@media (max-width: 600px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-banner__buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-banner__button {
        width: auto;
    }
}