/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Feb 26 2026 | 07:55:03 */
/* --- ОБЁРТКА СЕКЦИИ --- */
.audience-section {
    padding: 40px 0;
}

/* --- ЗАГОЛОВОК --- */
.audience-main-title {
    font-size: 35px !important;
    font-weight: 900 !important;
    margin-bottom: 10px;
    line-height: 1;
    text-transform: uppercase;
/*     color: #000; */
    text-align: center;
}

.audience-main-subtitle {
    font-size: 16px !important;
    margin: 0 auto 5px auto;
    font-weight: 600 !important;
    line-height: 1.2;
    color: var(--e-global-color-text);
    text-align: center;
    max-width: 60%;
}

/* --- СЕТКА --- */
.audience-block-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    font-family: inherit;
    padding: 20px 0;
}

/* --- КАРТОЧКА --- */
.audience-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* --- ИКОНКА --- */
.audience-icon {
    width: 38px;
    height: 38px;
    background-color: var(--e-global-color-ca1ca98);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.audience-icon i {
    color: #ffffff;
    font-size: 18px;
}

/* --- ТЕКСТ --- */
.audience-title {
    font-weight: 900;
    font-size: 18px;
    line-height: 1.2;
    margin: 0;
}

/* --- АДАПТИВ (один брейкпоинт) --- */
@media (max-width: 1024px) {

    .audience-main-subtitle {
        max-width: 100%;
    }

    .audience-block-grid {
        grid-template-columns: 1fr!important;
        gap: 15px;
    }

    .audience-card {
        padding: 12px;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 15px;
    }

    .audience-icon {
        margin-bottom: 0;
    }
}