/**
 * SFK Top Bar — style belki informacyjnej.
 * Kolory (tło/tekst) ustawiane są inline z konfiguracji, tutaj tylko układ.
 */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.sfk-topbar {
    position: relative;
    width: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 38px;
    padding: 8px 44px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
    overflow: hidden;
}

.sfk-topbar__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sfk-topbar a.sfk-topbar__link,
.sfk-topbar .sfk-topbar__inner a {
    color: inherit;
    text-decoration: underline;
}

/* Cała belka klikalna, gdy podano link */
a.sfk-topbar--clickable {
    text-decoration: none;
    cursor: pointer;
}

a.sfk-topbar--clickable:hover {
    filter: brightness(1.08);
}

.sfk-topbar__close {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: .75;
    transition: opacity .15s ease;
}

.sfk-topbar__close:hover {
    opacity: 1;
}

@media (max-width: 575px) {
    .sfk-topbar {
        font-size: 12.5px;
        padding: 7px 40px;
        min-height: 34px;
    }
}
