/**
 * PolskaON Ads — style frontu (v0.3)
 *
 * Reguły naczelne:
 *  1. Reklama NIGDY nie jest powiększana ponad swoją natywną szerokość
 *     — `max-width: 100%; width: auto; height: auto` na obrazie.
 *  2. Reklama może być węższa niż kontener — wtedy jest wycentrowana.
 *  3. Reklama szeroka (np. 1920px) wypełnia kontener (do max-content motywu).
 *  4. Tryb full-bleed (opt-in via `is-fullwidth`) — wymusza rozciągnięcie obrazu
 *     na całą szerokość kontenera, nawet powyżej szerokości natywnej.
 */

/* ===== KONTENER REKLAMY ===== */
.polskaon-ad {
    position: relative;
    margin: 24px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 0; /* eliminuje pasek pod inline-img */
}
.polskaon-ad * {
    box-sizing: border-box;
}

/* Link wokół kreacji */
.polskaon-ad > a {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
}

/* ===== TYP: OBRAZ ===== */
.polskaon-ad-type-image {
    text-align: center;
    line-height: 0;
}
.polskaon-ad-type-image img {
    /* Skalowanie w dół do szerokości rodzica, NIGDY w górę powyżej rzeczywistego rozmiaru */
    max-width: 100%;
    width: auto;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Tryb full-bleed — opt-in przez klasę na wrapperze */
.polskaon-ad.is-fullwidth img,
.polskaon-ad-type-image.is-fullwidth img {
    width: 100%;
    height: auto;
    max-width: none; /* dopuszczamy powiększenie ponad natywną szerokość */
}

/* ===== TYP: TEKST ===== */
.polskaon-ad-type-text {
    background: #faf9f6;
    border: 1px solid #e5e3dd;
    padding: 20px 22px;
    border-radius: 4px;
    line-height: 1.5;
}
.polskaon-ad-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.45;
}
.polskaon-ad-text .polskaon-ad-title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: #0a0a0a;
}
.polskaon-ad-text .polskaon-ad-body {
    font-size: .88rem;
    line-height: 1.5;
    color: #555;
}
.polskaon-ad-text .polskaon-ad-cta {
    display: inline-block;
    color: #d42b2b;
    font-weight: 700;
    font-size: .82rem;
    margin-top: 4px;
}

/* ===== TYP: HTML / CANVAS ===== */
.polskaon-ad-type-html {
    line-height: 1.5;
    width: 100%;
}
.polskaon-ad-type-html img,
.polskaon-ad-type-html iframe,
.polskaon-ad-type-html video,
.polskaon-ad-type-html embed,
.polskaon-ad-type-html canvas {
    max-width: 100%;
    height: auto;
}

/* ===== ETYKIETA „REKLAMA" ===== */
.polskaon-ad-label {
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 10px;
    line-height: 1;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .55);
    background: rgba(255, 255, 255, .85);
    padding: 3px 7px;
    border-radius: 2px;
    z-index: 2;
    pointer-events: none;
}

/* Wersja na ciemnym tle (auto-aplikowana dla placementów z czarnym tłem) */
.polskaon-ad.is-dark .polskaon-ad-label,
.polskaon-ad-placement-hero-bottom .polskaon-ad-label,
.polskaon-ad-placement-footer-top .polskaon-ad-label {
    color: rgba(255, 255, 255, .8);
    background: rgba(0, 0, 0, .55);
}

/* ===== PLACEMENTS ===== */

/* Hero-bottom: CZARNE tło, obraz wycentrowany w natywnej szerokości */
.polskaon-ad-placement-hero-bottom {
    margin: 0;
    padding: 12px 16px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}
.polskaon-ad-placement-hero-bottom .polskaon-ad-type-image {
    margin: 0 auto;
}

/* Between sections: jasne tło, natywna szerokość */
.polskaon-ad-placement-between-sections {
    margin: 24px 0;
    padding: 12px 16px;
    text-align: center;
}

/* In-article: wstawiana w środku tekstu */
.polskaon-ad-placement-in-article {
    margin: 32px auto;
    text-align: center;
}

/* Article-bottom: nad „Zobacz też" */
.polskaon-ad-placement-article-bottom {
    margin: 40px 0 32px;
    text-align: center;
}

/* Sidebar */
.polskaon-ad-placement-sidebar-top,
.polskaon-ad-placement-sidebar-bottom {
    margin: 12px 0;
    text-align: center;
}

/* Footer-top: ciemne tło spójne z hero-bottom */
.polskaon-ad-placement-footer-top {
    margin: 0;
    padding: 16px;
    text-align: center;
    background: #0a0a0a;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .polskaon-ad {
        margin: 16px 0;
    }
    .polskaon-ad-placement-hero-bottom,
    .polskaon-ad-placement-between-sections,
    .polskaon-ad-placement-footer-top {
        padding: 8px 12px;
    }
    .polskaon-ad-type-text {
        padding: 16px 14px;
    }
    .polskaon-ad-text .polskaon-ad-title {
        font-size: 1rem;
    }
}
