/* BlendEvents SEO Plugin – Frontend Styles
 *
 * Absichtlich minimales CSS.
 * Farben, Links und Buttons werden vollständig von Divi geerbt.
 * Das Plugin setzt nur Layout-Eigenschaften (Abstände, Flex).
 */

/* ── SEO-Textblock ─────────────────────────────────────────────── */

.blend-seo-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
    clear: both;
}

.blend-seo-wrapper p {
    line-height: 1.9;
    margin-bottom: 12px;
}

/* ── Linkbox ────────────────────────────────────────────────────── */

.blend-linkbox {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 14px;
}

.blend-link-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* Kein color, background, border – alles von Divi geerbt */
.blend-link-grid a {
    display: inline-block;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
}

/* ── FAQ-Accordion ──────────────────────────────────────────────── */

.blend-faq-box {
    margin: 40px 0;
    padding: 25px;
    border-radius: 12px;
}

.blend-faq-item {
    border-bottom: 1px solid currentColor;
    padding: 15px 0;
    opacity: 0.9;
}

.blend-faq-question {
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding-right: 40px;
}

.blend-faq-question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 28px;
}

.blend-faq-item.active .blend-faq-question::after {
    content: "−";
}

.blend-faq-answer {
    display: none;
    padding-top: 15px;
    font-size: 18px;
    line-height: 1.7;
}

.blend-faq-item.active .blend-faq-answer {
    display: block;
}

@media (max-width: 767px) {
    .blend-faq-question { font-size: 20px; }
    .blend-faq-answer   { font-size: 16px; }
}
