section.atlaeu-anchor
{
    padding-top: 80px;
    margin-top: -80px;
    margin-bottom: 20px;
    z-index: 0;
}

div.atlaeu-sticky-sidebar
{
    z-index: 10
}

section.atlaeu-section-header
{
    z-index: 2
}

/* GDPR cookie-consent banner — fixed bottom bar, above all theme layers */
.atlaeu-cookie-banner
{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    background-color: #1F262D;
    color: #fff;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, .25);
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
}

.atlaeu-cookie-banner.is-visible
{
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.atlaeu-cookie-banner__inner
{
    max-width: 1170px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.atlaeu-cookie-banner__body
{
    flex: 1 1 auto;
}

.atlaeu-cookie-banner__text
{
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
}

.atlaeu-cookie-banner__options
{
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

.atlaeu-cookie-option
{
    display: block;
    margin: 0;
    font-weight: 400;
    font-size: 12px;
    max-width: 260px;
}

.atlaeu-cookie-option input
{
    margin-right: 6px;
    vertical-align: middle;
}

.atlaeu-cookie-option__name
{
    font-weight: 600;
}

.atlaeu-cookie-option__desc
{
    display: block;
    margin-top: 2px;
    margin-left: 22px;
    opacity: .75;
    line-height: 1.4;
}

.atlaeu-cookie-banner__actions
{
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.atlaeu-cookie-banner__btn
{
    white-space: nowrap;
}

/* Consent-gated external media (Google Maps, YouTube) */
.atlaeu-embed
{
    position: relative;
}

.atlaeu-embed-placeholder
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    text-align: center;
    background-color: #1F262D;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
}

.atlaeu-embed-placeholder p
{
    margin: 0;
    max-width: 360px;
}

/* When consent is granted the embed loads and the placeholder steps aside */
.atlaeu-embed.is-consented .atlaeu-embed-placeholder
{
    display: none;
}

/* Until consent, keep the (src-less) embed itself out of the flow */
.atlaeu-embed:not(.is-consented) > iframe,
.atlaeu-embed:not(.is-consented) > #map_canvas
{
    visibility: hidden;
}

/* Persistent re-opener so visitors can change their choice later */
.atlaeu-cookie-reopen
{
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 1999;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #1F262D;
    color: #fff;
    font-size: 18px;
    line-height: 44px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
    cursor: pointer;
    opacity: .7;
    -webkit-transition: opacity .2s ease;
    transition: opacity .2s ease;
}

.atlaeu-cookie-reopen:hover
{
    opacity: 1;
}

@media only screen and (max-width: 767px)
{
    .atlaeu-cookie-banner__inner
    {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .atlaeu-cookie-banner__actions
    {
        justify-content: stretch;
    }

    .atlaeu-cookie-banner__btn
    {
        flex: 1 1 auto;
    }

    .atlaeu-cookie-option
    {
        max-width: none;
    }
}