﻿.tsh-search {
    width: 100%;
}

.tsh-search__inner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 14px;
    padding: 8px;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
}
.tsh-search-result-text {
    color: black;
}
.tsh-search__input {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 15px;
    padding: 12px 14px;
    background: transparent;
    color: #0f172a;
}

    .tsh-search__input::placeholder {
        color: #94a3b8;
    }

.tsh-search__button {
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    background: #0f172a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

    .tsh-search__button:hover {
        opacity: .92;
    }

.tsh-search--hero .tsh-search__inner {
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.10);
}

.tsh-search--hero .tsh-search__input {
    font-size: 16px;
    padding: 14px 16px;
}

.tsh-search--hero .tsh-search__button {
    padding: 14px 20px;
}

.tsh-search--compact .tsh-search__inner {
    padding: 6px;
    border-radius: 12px;
}

.tsh-search--compact .tsh-search__input {
    padding: 10px 12px;
    font-size: 14px;
}

.tsh-search--compact .tsh-search__button {
    padding: 10px 14px;
}

@media (max-width: 640px) {
    .tsh-search__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .tsh-search__button {
        width: 100%;
    }
}
