/* ПРИМЕРЫ ВОПРОСОВ */
.chat-examples {
    padding: 2.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.04), rgba(0, 204, 255, 0.02));
    border-radius: 16px;
    margin-bottom: 2rem;
}

.examples-container {
    text-align: center;
}

.chat-examples h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.example-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.15);
    border-radius: 10px;
    padding: 1.25rem 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.example-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.1);
}

.example-icon {
    font-size: 1.5rem;
    display: block;
}

.example-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .examples-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .example-item {
        padding: 1rem 0.5rem;
    }

    .example-item p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .chat-examples {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .chat-examples h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .example-item {
        padding: 0.9rem 0.5rem;
    }

    .example-icon {
        font-size: 1.25rem;
    }

    .example-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .chat-examples {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .chat-examples h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .examples-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .example-item {
        padding: 0.75rem 0.5rem;
    }

    .example-icon {
        font-size: 1.2rem;
    }

    .example-item p {
        font-size: 0.75rem;
    }
}