/* CSS dla bloku wiedza-hero */
.wiedza-hero__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: #28538E; display: inline-flex; align-items: center; gap: 10px;
}
.wiedza-hero__eyebrow::before {
    content: ""; display: inline-block; width: 24px; height: 1px; background: #28538E;
}
.wiedza-hero__tytul {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500; letter-spacing: -0.025em; line-height: 1.08;
}
.wiedza-hero__tytul em { font-style: normal; color: #28538E; }
.wiedza-hero__sub {
    font-size: 1.1rem; color: #6B6B6B; line-height: 1.6; max-width: 40rem; margin: 0 auto;
}
.wiedza-hero__searchbar {
    background: white; border: 1px solid #E4E4E4; border-radius: 50px;
    padding: 10px 10px 10px 24px;
    max-width: 680px;
    box-shadow: 0 16px 40px -12px rgba(0,0,0,0.08);
    color: #6B6B6B;
}
.wiedza-hero__input {
    background: transparent; border: none; outline: none;
    font-size: 1rem; font-family: inherit; flex: 1;
}
.wiedza-hero__btn {
    background: #28538E; color: white; border: none;
    padding: 10px 22px; border-radius: 50px;
    font-size: 0.9rem; font-weight: 500; cursor: pointer;
    white-space: nowrap; transition: background 0.2s;
}
.wiedza-hero__btn:hover { background: #1b3d6e; }
.wiedza-hero__popularny-label {
    font-size: 0.82rem; color: #6B6B6B;
}
.wiedza-hero__tag {
    background: white; border: 1px solid #E4E4E4;
    padding: 4px 14px; border-radius: 50px;
    font-size: 0.82rem; color: #0A0A0A; text-decoration: none;
    transition: all 0.2s;
}
.wiedza-hero__tag:hover { background: #28538E; color: white; border-color: #28538E; }
@media (max-width: 575.98px) {
    .wiedza-hero__searchbar { flex-wrap: wrap; border-radius: 16px; padding: 14px; }
    .wiedza-hero__btn { width: 100%; text-align: center; }
}
