/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jun 21 2026 | 12:18:11 */
/* Accordion Content */
.ast-accordion-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

/* Open State */
.ast-accordion-content.active {
    max-height: 2000px; /* Increase if your content is taller */
    opacity: 1;
}

