

/* Start:/local/templates/beist/components/bitrix/search.page/beist/style.css?17845710917344*/
.beist-search-section {
    min-height: 520px;
    padding: 72px 0 90px;
    background: var(--surface-light);
}

.beist-search-hero .first-intro-title {
    text-transform: none;
}

.beist-search {
    max-width: 1120px;
    margin: 0 auto;
}

.beist-search__form {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border: 3px solid var(--brand-accent);
    border-radius: 42px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(22, 55, 78, 0.09);
}

.beist-search__input {
    width: 100%;
    height: 58px;
    padding: 0 22px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 18px;
}

.beist-search__input::placeholder {
    color: #9a9a9a;
}

.beist-search__input::-webkit-search-cancel-button {
    cursor: pointer;
}

.beist-search__submit {
    flex: 0 0 auto;
    height: 58px;
    padding: 0 25px;
    border: 0;
    border-radius: 30px;
    background: var(--brand-accent);
    color: #17243b;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.beist-search__submit:hover {
    background: #17243b;
    color: #fff;
    transform: translateY(-1px);
}

.beist-search__submit-icon,
.beist-search__empty-icon {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid currentColor;
    border-radius: 50%;
}

.beist-search__submit-icon::after,
.beist-search__empty-icon::after {
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 8px;
    height: 3px;
    content: "";
    border-radius: 2px;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: left center;
}

.beist-search__notice {
    margin-top: 18px;
    padding: 14px 18px;
    border-left: 4px solid var(--brand-accent);
    background: #fff;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.beist-search__notice a {
    color: #9a7300;
    font-weight: 700;
}

.beist-search__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 40px 0 18px;
}

.beist-search__summary p {
    margin: 0;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 17px;
}

.beist-search__summary strong {
    color: var(--text-heading);
}

.beist-search__sort {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border-radius: 24px;
    background: #fff;
    white-space: nowrap;
}

.beist-search__sort a,
.beist-search__sort span {
    padding: 8px 13px;
    border-radius: 18px;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 14px;
    text-decoration: none;
}

.beist-search__sort .active {
    background: var(--brand-accent);
    color: #17243b;
    font-weight: 700;
}

.beist-search__results {
    display: grid;
    gap: 14px;
}

.beist-search-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 27px 30px;
    border: 1px solid #e4e7eb;
    border-left: 5px solid transparent;
    background: #fff;
    box-shadow: 0 8px 24px rgba(22, 55, 78, 0.05);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.beist-search-card:hover {
    border-left-color: var(--brand-accent);
    box-shadow: 0 13px 30px rgba(22, 55, 78, 0.10);
    transform: translateY(-2px);
}

.beist-search-card__content {
    min-width: 0;
}

.beist-search-card__title {
    margin: 0 0 10px;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.beist-search-card__title a {
    color: var(--text-heading);
    text-decoration: none;
}

.beist-search-card__title a:hover {
    color: #9a7300;
}

.beist-search-card__title b,
.beist-search-card__text b {
    padding: 0 2px;
    background: var(--brand-accent);
    color: inherit;
    font-weight: inherit;
}

.beist-search-card__text {
    max-width: 900px;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
}

.beist-search-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 14px;
    color: #8a8f95;
    font-family: var(--font-ui);
    font-size: 13px;
}

.beist-search-card__path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.beist-search-card__path a {
    color: #68717a;
    text-decoration: none;
}

.beist-search-card__path a:hover {
    color: #9a7300;
}

.beist-search-card__arrow {
    flex: 0 0 auto;
    color: #a1a6aa;
    font-size: 30px;
    transition: color .25s ease, transform .25s ease;
}

.beist-search-card:hover .beist-search-card__arrow {
    color: #9a7300;
    transform: translateX(4px);
}

.beist-search__empty {
    margin-top: 40px;
    padding: 64px 30px;
    border: 1px solid #e4e7eb;
    background: #fff;
    text-align: center;
    box-shadow: 0 10px 28px rgba(22, 55, 78, 0.06);
}

.beist-search__empty-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 24px;
    border-width: 5px;
    color: var(--brand-accent);
}

.beist-search__empty-icon::after {
    right: -11px;
    bottom: -7px;
    width: 15px;
    height: 5px;
}

.beist-search__empty h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
}

.beist-search__empty p {
    max-width: 620px;
    margin: 5px auto 0;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 17px;
}

.beist-search__empty--error {
    border-top: 4px solid #cb2027;
}

.beist-search__pagination {
    margin-top: 34px;
}

@media (max-width: 768px) {
    .beist-search-section {
        min-height: 430px;
        padding: 42px 0 55px;
    }

    .beist-search__form {
        align-items: stretch;
        padding: 5px;
        border-width: 2px;
        border-radius: 30px;
    }

    .beist-search__input {
        height: 50px;
        padding: 0 14px;
        font-size: 16px;
    }

    .beist-search__submit {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
    }

    .beist-search__submit span:first-child {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .beist-search__summary {
        align-items: flex-start;
        flex-direction: column;
        margin-top: 30px;
    }

    .beist-search__sort {
        max-width: 100%;
    }

    .beist-search-card {
        align-items: flex-start;
        gap: 15px;
        padding: 22px 18px;
    }

    .beist-search-card__title {
        font-size: 21px;
    }

    .beist-search-card__text {
        font-size: 15px;
    }

    .beist-search-card__arrow {
        font-size: 24px;
    }

    .beist-search__empty {
        margin-top: 30px;
        padding: 45px 20px;
    }

    .beist-search__empty h2 {
        font-size: 25px;
    }

    .beist-search__empty p {
        font-size: 15px;
    }
}

/* End */
/* /local/templates/beist/components/bitrix/search.page/beist/style.css?17845710917344 */
