/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 27 2026 | 08:10:36 */
.results-format {
    padding: 20px 0px;
    font-family: inherit;
    text-align: center;
}

.results-container {
    max-width: 1280px;
    margin: 0 auto;
}

/* Стили заголовков - строго по твоим настройкам */
.results-main-title {
    font-size: 35px !important;
    font-weight: 900 !important;
    margin-bottom: 0px;
    line-height: 1;
    text-transform: uppercase;}

.results-main-subtitle {
    font-size: 20px !important;
    margin-bottom: 20px !important;
    font-weight: 700;
    line-height: 1.3;
    color: var(--e-global-color-text);
}

/* Сетка */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Карточки - размеры и тени 1 в 1 */
.results-card {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.results-card:hover {
    transform: translateY(-5px);
}

/* Иконки */
.results-icon {
    font-size: 35px;
    color: var(--e-global-color-ca1ca98);
    /*margin-bottom: 0px; */
}

/* Текст внутри карточек - строго по твоим настройкам */
.results-card-title {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: var(--e-global-color-ca1ca98);
    margin-bottom: 10px;
    line-height: 1.2;
}

.results-card-text {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
    }

    .results-format {
        padding: 20px 10px;
    }
}