/* =========================================================
   Executive Hunter Blog — Search page (EH brand)
   ========================================================= */

.search-main {
    min-height: 70vh;
    background: #fff;
}

.search-container {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
}

.search-hero {
    padding: 76px 0 56px;
    background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.10), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, var(--eh-cream) 100%);
    border-bottom: 1px solid var(--blog-border);
}

.search-kicker {
    display: inline-block;
    margin: 0 0 18px;
    color: var(--eh-gold);
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.search-hero h1 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--eh-ink);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
}

.search-hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: var(--blog-muted);
    font-size: 18px;
    line-height: 1.7;
}

.search-form {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    max-width: 720px;
}

.search-form input {
    flex: 1;
    height: 54px;
    padding: 0 18px;
    color: var(--eh-ink);
    background: #ffffff;
    border: 1px solid var(--blog-border);
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-form input:focus {
    border-color: var(--eh-gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, 0.15);
}

.search-form button {
    height: 54px;
    padding: 0 28px;
    color: var(--eh-navy);
    background: var(--eh-gold);
    border: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}

.search-form button:hover {
    background: var(--eh-gold-hover);
    transform: translateY(-2px);
}

.search-section {
    padding: 56px 0 90px;
}

.search-empty {
    padding: 48px;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-top: 2px solid var(--eh-gold-line);
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.search-empty h2 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    color: var(--eh-ink);
    font-size: 30px;
    font-weight: 600;
}

.search-empty p {
    margin: 0;
    color: var(--blog-muted);
    font-size: 15px;
}

.search-results-header {
    margin-bottom: 26px;
}

.search-results-header h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--eh-ink);
    font-size: 26px;
    font-weight: 600;
}

.search-results {
    display: grid;
    gap: 18px;
}

.search-result-card {
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--blog-border);
    border-top: 2px solid var(--eh-gold-line);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-top-color 0.35s ease;
}

.search-result-card:hover {
    transform: translateY(-4px);
    border-top-color: var(--eh-gold);
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.09);
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--blog-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.search-result-meta span:first-child {
    color: var(--eh-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.search-result-card h2 {
    margin: 0;
    font-family: var(--font-display);
    color: var(--eh-ink);
    font-size: 26px;
    font-weight: 600;
    line-height: 1.22;
}

.search-result-card h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.search-result-card h2 a:hover {
    color: var(--eh-gold);
}

.search-result-card p {
    margin: 14px 0 0;
    color: var(--blog-muted);
    font-size: 15px;
    line-height: 1.7;
}

.search-read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: var(--eh-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}

.search-read-more::after {
    content: "\2192";
    margin-left: 8px;
    transition: transform 0.25s ease;
}

.search-read-more:hover::after {
    transform: translateX(4px);
}

@media (max-width: 680px) {
    .search-container {
        width: min(100% - 28px, 960px);
    }

    .search-hero {
        padding: 52px 0 42px;
    }

    .search-hero h1 {
        font-size: 38px;
    }

    .search-hero p {
        font-size: 16px;
    }

    .search-form {
        flex-direction: column;
    }

    .search-form button {
        width: 100%;
    }

    .search-section {
        padding: 40px 0 64px;
    }

    .search-result-card {
        padding: 24px;
    }
}
