.asc-coupons {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

.asc-coupon-box {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.asc-discount {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: green;
}

.asc-copy-btn {
    background: orange;
    border: none;
    padding: 10px 15px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    border-radius: 4px;
}

.asc-copy-btn:hover {
    opacity: 0.9;
}