/* ── Zainspiruj się — Hero block ─────────────────────────────────────────── */

.ih-block {
    padding-bottom: 48px;
    overflow: hidden;
    background-color: #0d0020;
    background-image: url('../../assets/images/headline-bg.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

/* ── Breadcrumb (shares markup/behaviour with the Headline block) ───────── */

.ih-breadcrumb {
    padding-top: 16px;
    padding-bottom: 8px;
}

/* ── Inner wrapper ────────────────────────────────────────────────────────── */

.ih-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 640px;
    padding-top: 32px;
    padding-bottom: 16px;
}

/* ── Label row (icon + eyebrow) ──────────────────────────────────────────── */

.ih-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ih-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--wp--preset--color--white);
    opacity: 0.9;
}

.ih-icon svg {
    width: 20px;
    height: 20px;
}

.ih-label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--wp--preset--color--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Title / description ──────────────────────────────────────────────────── */

.ih-title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--wp--preset--color--white);
}

.ih-desc {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* ── Search ───────────────────────────────────────────────────────────────── */

.ih-search {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--wp--preset--color--neutral-50);
    border-radius: 4px;
    padding: 8px 8px 8px 24px;
    margin-top: 8px;
    box-shadow: 0 0 12.5px 5px rgba(26, 26, 37, 0.1);
}

.ih-search-input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    color: var(--wp--preset--color--dark);
    font-family: inherit;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    padding: 8px 0;
}

.ih-search-input::placeholder {
    color: var(--wp--preset--color--neutral-300);
}

.ih-search-input::-webkit-search-cancel-button {
    display: none;
}

.ih-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-shrink: 0;
    height: 42px;
    padding: 0 20px;
    background: var(--wp--preset--color--yellow);
    border: 1px solid var(--wp--preset--color--dark);
    border-radius: 4px;
    color: var(--wp--preset--color--dark);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.ih-search-btn:hover {
    background: #f0d800;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
    .ih-title {
        font-size: 32px;
    }
}

@media (max-width: 600px) {
    .ih-title {
        font-size: 28px;
    }

    .ih-search {
        flex-wrap: wrap;
        padding: 16px;
    }

    .ih-search-input {
        flex-basis: 100%;
    }

    .ih-search-btn {
        flex: 1;
        justify-content: center;
    }

    .ih-search-btn span {
        display: none;
    }
}
