/* Minimal CSS für die Heilprodukte-Karten */
.products-section .article-card {
    cursor: pointer;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    overflow: hidden;
}

.products-section .article-preview h2 {
    color: var(--gold);
    margin-bottom: 10px;
}

/* Im geschlossenen Zustand Text ausblenden */
.products-section .article-preview p {
    display: none;
}

.products-section .article-content {
    display: none;
    background: transparent;
    padding: 15px;
}

.products-section .article-content.active {
    display: block;
}

.products-section .article-text h3 {
    color: #ffffff;
    margin-top: 15px;
    margin-bottom: 10px;
}

.products-section .article-text p,
.products-section .article-text li {
    color: #ffffff;
    margin-bottom: 10px;
}

.products-section .article-text ul,
.products-section .article-text ol {
    padding-left: 20px;
    list-style-type: disc;
    margin-bottom: 15px;
    color: #ffffff;
}
