.cupon-chatbot-list {
    display: flex;
    flex-wrap: wrap;
}

.cupon-chatbot-item {
    display: flex;
    justify-content: space-between;
    border: 3px dashed #e31313;
    padding: 5px;
    border-radius: 8px;
    background-color: #fff;
    margin: 5px;
    font-family: Arial, sans-serif;

    /* Задаём, чтобы каждая карточка занимала 1/3 на больших экранах */
    flex: 1 1 calc(33.333% - 10px);

    flex-direction: column;
    align-items: stretch;
}

/* Блок для возможной скидки (если нужно, можно добавить) */
/* .discount-chatbot {
    // стили, если требуется
} */

/* Пример стилизации */
.cupon-chatbot-content {
    /* Содержимое */
}

.cupon-chatbot-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cupon-chatbot-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-top: 10px;
    color: #30c93b;
}

.cupon-chatbot-description {
    font-size: 14px;
    color: #0868a7;
    margin-bottom: 10px;
    line-height: 1.1;
}

.cupon-chatbot-code {
    /* Стили под код */
}

.expiration-chatbot {
    font-size: 13px;
}

.container-code-chatbot {
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
    padding: 2px;
}

.code-field-chatbot {
    width: 100%;
    padding: 8px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
}

.copy-button-chatbot {
    padding: 8px 16px;
    width: 100%;
    background-color: #327bc8;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 5px;
}

.cupon-chatbot-footer {
    width: 100%;
    margin-top: 10px;
}

.offer-link-chatbot {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #62c832;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .cupon-chatbot-item {
        max-width: 100%;
        flex: 1 1 100%;
        margin: 5px 0;
    }
}
