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

/* -----------------------------
   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 0;
}

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

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

/* CHECK ICON (dein System) */
.snippet-box .check {
    color: #28a745;
    font-weight: bold;
    flex-shrink: 0;
}

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

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

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

.snippet-box .snippet-button {
    display: inline-block;
    background: #ed145b;
    color: #fff;
    font-weight: 700;
    padding: 11px 16px;
    box-shadow: 1px 3px #bfbfbf;
    border-radius: 8px;
    border: 2px solid #6666;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    margin-top: 15px;
    margin-bottom: 15px;
}

.snippet-box .snippet-button:hover {
    background: #c90f4b;
    transform: translateY(-1px);
}

/* -----------------------------
   TIERHALTER VARIANT (optional Theme Layer)
------------------------------ */
.snippet-box.tierhalterhaftpflicht-snippet {
    border-left-color: #22a06b;
}

/* -----------------------------
   MOBILE OPTIMIZATION
------------------------------ */
@media (max-width: 767px) {

    .snippet-box {
        padding: 14px 15px;
    }

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