.search-card {
    padding: 25px 24px 38px;
    border-color: #e0e2ee;
    border-radius: 16px;
    box-shadow: 0 10px 36px rgba(23, 34, 27, 0.1);
}

.search-card h2 {
    margin: 0 0 26px;
    color: #2f7a49;
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.directory-search {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    min-height: 60px;
    gap: 0;
    padding: 1px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 999px;
    background:
        linear-gradient(#f8f8ff, #f8f8ff) padding-box,
        linear-gradient(105deg, #07365c 0%, #16873a 52%, #63ad36 100%) border-box;
}

.directory-search:focus-within {
    box-shadow: 0 0 0 3px rgba(39, 139, 59, 0.16);
}

.directory-search input {
    align-self: stretch;
    width: 100%;
    min-width: 0;
    padding: 0 22px 0 0;
    border: 0 !important;
    border-radius: 0 999px 999px 0;
    outline: 0;
    background: transparent !important;
    color: var(--ink);
}

.directory-search input::placeholder {
    color: #34364a;
    opacity: 1;
}

.search-submit {
    align-self: stretch;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0 !important;
    border-radius: 999px 0 0 999px;
    background: transparent !important;
    color: #16873a !important;
    cursor: pointer;
}

.search-submit svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
}

.search-submit:hover {
    color: #07365c !important;
}

@media (max-width: 680px) {
    .search-card {
        padding: 20px 18px 24px;
    }

    .search-card h2 {
        margin-bottom: 18px;
        font-size: 1.25rem;
    }

    .directory-search {
        grid-template-columns: 44px 1fr;
        min-height: 56px;
    }
}