/* ================================================
   cards.css – Trust-Elemente & Kategorie-Karten
   markusgaul.com
   ================================================ */

/* ---------- Trust-Bar ---------- */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin: 10px 0 6px 0;
    padding: 0;
    list-style: none;
}

.trust-bar li {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85em;
    color: #333;
    margin-bottom: 0;
}

.trust-bar li::before {
    content: '✓';
    color: #4CAF50;
    font-weight: bold;
    font-size: 0.95em;
    flex-shrink: 0;
}

/* ---------- Kategorie-Karten ---------- */
.kategorie-karten {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin: 10px 0 8px 0;
}

.kat-karte {
    display: flex;
    flex-direction: column;
    background: #f4f4f4;
    border: 1px dashed #696969;
    border-radius: 5px;
    padding: 8px 10px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.kat-karte:hover {
    background-color: #616161;
    color: #fff;
}

.kat-icon {
    font-size: 1.3em;
    margin-bottom: 4px;
    line-height: 1;
}

.kat-titel {
    font-size: 0.85em;
    font-weight: bold;
    margin-bottom: 3px;
    color: inherit;
}

.kat-sub {
    font-size: 0.75em;
    color: #616161;
    line-height: 1.4;
    flex: 1;
    margin-bottom: 6px;
}

.kat-karte:hover .kat-sub {
    color: #e0e0e0;
}

.kat-link {
    font-size: 0.75em;
    color: #4CAF50;
    font-weight: bold;
}

.kat-karte:hover .kat-link {
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
    .kategorie-karten {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .kategorie-karten {
        grid-template-columns: 1fr;
    }
}

/* ---------- CTA-Buttons ---------- */
.cta-bereich {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 6px 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #4CAF50;
    color: #fff;
    font-size: 0.95em;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 5px;
    border: 1px solid #45a049;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn-primary:hover {
    background-color: #45a049;
    text-decoration: none;
    color: #fff;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #616161;
    color: #fff;
    font-size: 0.95em;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 5px;
    border: 1px dashed #696969;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-btn-secondary:hover {
    background-color: #757575;
    text-decoration: none;
    color: #fff;
}

@media (max-width: 480px) {
    .cta-bereich {
        flex-direction: column;
    }
    .cta-btn-primary,
    .cta-btn-secondary {
        justify-content: center;
        text-align: center;
    }
}

/* ---------- Tipp-Box ---------- */
.tipp-box {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #fff8f0;
    border: 1px dashed #696969;
    border-left: 3px solid #FF6347;
    border-radius: 5px;
    padding: 7px 10px;
    margin: 8px 0;
    font-size: 0.85em;
    color: #333;
    line-height: 1.5;
}

.tipp-box .werbung {
    flex-shrink: 0;
    margin: 0;
}

.tipp-box .tipp-text {
    flex: 1;
}
