/* Стили для страницы результатов поиска */
.st-hero-section {
    padding-top: 60px;
    background: #fff;
}

.st-hero-content {
    text-align: center;
    margin: 0 auto;
}

.st-slogan-text {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
    font-style: italic;
    font-family: 'Montserrat Alternates', sans-serif;
}

.st-slogan-text .normal {
    color: #333;
}

.st-slogan-text .accent {
    color: #00A3A3;
}

.st-search-container {
    margin: 0 auto 40px;
}

.st-search-form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    padding: 8px 16px;
    height: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.st-search-input {
    flex: 1;
    border: none;
    padding: 0;
    font-size: 16px;
    outline: none;
    background: transparent;
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
    color: #000000;
}

.st-search-divider {
    width: 1px;
    height: 50px;
    background: #e0e0e0;
    margin: 0 16px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.st-search-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
    box-sizing: border-box;
    flex-shrink: 0;
}

.st-search-button:hover {
    transform: scale(1.1);
}

.st-search-icon {
    width: 34px;
    height: 34px;
    box-sizing: border-box;
}

/* Стили для результатов поиска */
.st-search-results {
    padding: 40px 0;
    background: #f8f9fa;
}

.st-search-results-title {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.st-search-topics {
    margin-bottom: 25px;
}

.st-search-categories {
    margin-top: 25px;
}

.st-search-topics h3,
.st-search-categories h3 {
    font-size: 20px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.st-topics-list,
.st-categories-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.st-topic-item,
.st-category-item {
    background: #fff;
    border-radius: 0px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.st-topic-item:hover,
.st-category-item:hover {
    transform: scale(1.001);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.st-topic-title a,
.st-category-title a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.2s ease;
}

.st-topic-title a:hover,
.st-category-title a:hover {
    color: #1D98A1;
}

.st-topic-meta {
    display: flex;
    gap: 20px;
    margin-top: 12px;
    color: #666;
    font-size: 14px;
}

.st-category-description {
    color: #666;
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.st-no-results {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 0px;
    color: #666;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

