/* Contenuto accordion */
.posts-accordion .elementor-post__content {
    max-height: 0;
    overflow: hidden;
    background: #fafafa;
    padding: 0 18px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    transition: max-height 0.35s ease;
}

/* Stato aperto */
.posts-accordion .elementor-post.ea-open .elementor-post__content {
    max-height: 1000px; /* sufficientemente grande per contenuti lunghi */
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Titolo cliccabile con icona + / − */
.posts-accordion .accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 12px 18px;
    background: #f2f2f2;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.posts-accordion .accordion-trigger:hover {
    background: #e7e7e7;
}

/* Icona + / − */
.posts-accordion .elementor-post.ea-open .accordion-trigger::after {
    content: '−';
}

.posts-accordion .accordion-trigger::after {
    content: '+';
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}
