/* ============================================================
   KNR ADS STYLES – Top Banner, Floating, Inline
============================================================ */

/* ─── Ad Label ─────────────────────────────────────────── */
.knr-ad { position: relative; text-align: center; }
.knr-ad__label {
    display: block; font-size: 9px; letter-spacing: 1px; text-transform: uppercase;
    color: #9ca3af; margin-bottom: 4px; font-family: sans-serif;
}
.knr-ad--full { width: 100%; margin: 16px 0; }
.knr-ad--single-mid { width: 100%; margin: 20px 0; clear: both; }

/* ─── Top Banner Ad ────────────────────────────────────── */
#knr-top-banner {
    width: 100%; background: #f9fafb; border-bottom: 1px solid #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    padding: 6px 16px; position: relative; z-index: 200;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease, transform 0.3s ease;
    max-height: 120px; overflow: hidden;
}
#knr-top-banner.knr-top-banner--hidden {
    max-height: 0; opacity: 0; padding: 0;
    pointer-events: none; border: none;
}
.knr-top-banner__inner {
    display: flex; align-items: center; justify-content: center;
    flex: 1; max-width: 728px;
}
.knr-top-banner__inner img { max-height: 90px; max-width: 728px; width: auto; }
.knr-top-banner__close {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.08); border: none; border-radius: 50%;
    width: 24px; height: 24px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 14px; color: #6b7280;
    transition: background 0.2s;
}
.knr-top-banner__close:hover { background: rgba(0,0,0,0.15); }

/* Mobile: top banner tetap tapi lebih kecil */
@media (max-width: 768px) {
    #knr-top-banner { padding: 4px 40px 4px 8px; }
    .knr-top-banner__inner img { max-height: 60px; max-width: 320px; }
}

/* ─── Floating Left & Right Ads (PC only) ────────────── */
.knr-ad-float {
    position: fixed; top: 50%; transform: translateY(-50%);
    z-index: 100; display: none;
    flex-direction: column; align-items: center; gap: 4px;
    transition: opacity 0.3s;
}
.knr-ad-float--left  { left: 10px; }
.knr-ad-float--right { right: 10px; }
.knr-ad-float .knr-ad__label { margin-bottom: 2px; }
.knr-ad-float img,
.knr-ad-float iframe { max-width: 160px; }

/* Tampilkan floating ads hanya jika layar cukup lebar (1440px+) */
@media (min-width: 1440px) {
    .knr-ad-float { display: flex; }
}

/* ─── Inline Single Post Ads ─────────────────────────── */
.knr-ad--single-mid img,
.knr-ad--single-mid iframe,
.knr-ad--full img,
.knr-ad--full iframe {
    max-width: 100%; height: auto; display: block; margin: 0 auto;
}
