/* ======================================================
   Vergleichs-Snippets System
   bezahlte-umfragen.ch
====================================================== */

/* -----------------------------
   BASE SNIPPET BOX
------------------------------ */
.snippet-box {
    background: #f8f9fa;
    border-left: 4px solid #22a06b;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
}

/* Text Reset */
.snippet-box p {
    margin: 0 0 10px;
}

/* -----------------------------
   UL RESET
------------------------------ */
.snippet-box ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* LI Layout */
.snippet-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 0 8px;
}

/* Check Icon */
.snippet-box .check {
    color: #28a745;
    font-weight: 700;
    flex-shrink: 0;
}

/* -----------------------------
   TYPOGRAPHY
------------------------------ */
.snippet-box .snippet-title {
    margin-bottom: 8px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

.snippet-box .snippet-text {
    margin-bottom: 12px;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

/* -----------------------------
   OPTIONAL CTA BUTTON
------------------------------ */
.snippet-box .snippet-cta {
    margin-top: 12px;
}

.snippet-box .snippet-button {
    display: inline-block;
    margin: 15px 0;
    padding: 11px 16px;
    background: #ed145b;
    color: #fff;
    border: 2px solid rgba(102, 102, 102, 0.4);
    border-radius: 8px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
    box-shadow: 1px 3px #bfbfbf;
    transition:
        background-color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        transform 0.2s ease-in-out;
}

.snippet-box .snippet-button:hover {
    background: #b5045d;
    border-color: #b5045d;
    color: #fff;
    text-decoration: none;
    box-shadow: 1px 2px #999;
    transform: translateY(-1px);
}

.snippet-box .snippet-button:active {
    transform: translateY(0);
    box-shadow: 1px 1px #999;
}

/* -----------------------------
   MOBILE OPTIMIZATION
------------------------------ */
@media (max-width: 767px) {
    .snippet-box {
        padding: 14px 15px;
    }

    .snippet-box .snippet-button {
        display: block;
        width: 100%;
        text-align: center;
    }
}