/* Banner Manager – frontend slots */
.bm-slot {
    margin: 1rem 0;
    text-align: center;
    overflow: hidden;
}
.am-banner-header-zone,
.am-banner-footer-zone {
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
}
.am-banner-header-zone .bm-slot,
.am-banner-footer-zone .bm-slot {
    margin: 0.5rem 0;
}
.bm-banner__link {
    display: inline-block;
    max-width: 100%;
    line-height: 0;
}
.bm-banner__img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.bm-banner__video {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.bm-slot--hide-below-768 {
    display: block;
}
@media (max-width: 767px) {
    .bm-slot--hide-below-768 {
        display: none;
    }
}
.bm-slot--mobile_center {
    display: none;
}
@media (max-width: 767px) {
    .bm-slot--mobile_center {
        display: block;
    }
}

/* Demo placeholder – „Werbung kaufen“ */
.bm-demo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 120px;
    padding: 1rem 0.85rem;
    border-radius: 14px;
    background: linear-gradient(165deg, #0f172a 0%, #1e3a5f 42%, #1e40af 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.45);
    transition: transform 0.15s, box-shadow 0.15s;
}
.bm-demo:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.55);
}
.bm-demo__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 1.15rem;
}
.bm-demo__text {
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1.35;
    text-align: center;
}
.bm-demo__sub {
    font-size: 0.78rem;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
}
.bm-demo__cta {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
}
.bm-demo--skyscraper {
    width: 160px;
    min-height: 600px;
    max-width: 160px;
    padding: 1.25rem 0.75rem;
}
.bm-demo--skyscraper .bm-demo__text {
    font-size: 0.88rem;
}
.bm-demo--leaderboard {
    min-height: 90px;
    max-width: 728px;
    margin-inline: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.85rem 1.25rem;
}
.bm-demo--leaderboard .bm-demo__icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
}
.bm-demo--leaderboard .bm-demo__text,
.bm-demo--leaderboard .bm-demo__sub {
    text-align: left;
}
.bm-demo--rectangle {
    min-height: 250px;
    max-width: 336px;
    margin-inline: auto;
}
.bm-slot--demo {
    margin: 0;
}
