/* oferta-hero */
.oferta-hero__wrap {
    background: #0A0A0A;
    overflow: hidden;
}

/* Flexbox layout — działa niezależnie od Bootstrap */
.oferta-hero__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 340px;
    padding: 3rem 3rem;
    gap: 3rem;
}

.oferta-hero__left {
    flex: 0 0 50%;
    max-width: 50%;
}

.oferta-hero__right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Eyebrow */
.oferta-hero__eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #a8c4e5;
    display: flex;
    align-items: center;
    gap: 10px;
}
.oferta-hero__eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: #a8c4e5;
}

/* Tytuł */
.oferta-hero__tytul {
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: white;
}

/* Opis */
.oferta-hero__sub {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
    max-width: 32rem;
    margin: 0;
}

/* Search */
.oferta-hero__search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    padding: 8px 8px 8px 18px;
    max-width: 420px;
    transition: border-color 0.2s;
}
.oferta-hero__search:focus-within {
    border-color: rgba(255,255,255,0.30);
}
.oferta-hero__search-ico {
    color: rgba(255,255,255,0.40);
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 1;
}
.oferta-hero__search-input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    flex: 1;
    min-width: 0;
}
.oferta-hero__search-input::placeholder { color: rgba(255,255,255,0.35); }
.oferta-hero__search-input::-webkit-search-cancel-button { display: none; }
.oferta-hero__search-btn {
    background: #28538E;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 9px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s;
}
.oferta-hero__search-btn:hover { background: #1b3d6e; }

/* Zdjęcie */
.oferta-hero__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
}
.oferta-hero__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.oferta-hero__img-wrap:hover .oferta-hero__img { transform: scale(1.03); }

/* Tablet */
@media (max-width: 900px) {
    .oferta-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 2rem;
        gap: 2rem;
    }
    .oferta-hero__left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    .oferta-hero__right {
        width: 100%;
        justify-content: flex-start;
    }
    .oferta-hero__img-wrap {
        max-width: 100%;
    }
    .oferta-hero__img { aspect-ratio: 16/9; }
}

/* Mobile */
@media (max-width: 575px) {
    .oferta-hero__wrap { border-radius: 16px; }
    .oferta-hero__inner { padding: 1.5rem 1.5rem; }
    .oferta-hero__search {
        flex-wrap: wrap;
        border-radius: 14px;
        padding: 10px 14px;
        gap: 10px;
        max-width: 100%;
    }
    .oferta-hero__search-btn { width: 100%; text-align: center; }
}
