/* v56 - Üst başlıktaki geniş arama çubuğunu kaldır; yalnız arama ikonu kalsın. */
.site-header .header-search {
    display: none !important;
}

.site-header .header-search-toggle {
    display: inline-grid !important;
    place-items: center !important;
    text-decoration: none !important;
}

@media (max-width: 1180px) {
    .site-header .header-inner {
        grid-template-columns: minmax(0, 1fr) auto !important;
        grid-template-areas: "brand actions" !important;
        grid-template-rows: auto !important;
        row-gap: 0 !important;
    }

    .site-header .brand {
        grid-area: brand !important;
    }

    .site-header .header-actions {
        grid-area: actions !important;
    }
}

@media (max-width: 760px) {
    :root {
        --fx-header-bottom: 72px !important;
    }

    .site-header .header-inner {
        min-height: 64px !important;
        padding-block: 10px !important;
    }
}
