.myrle-faq-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.myrle-faq-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.myrle-faq-heading {
    text-align: center;
    margin-top: 0;
}

.myrle-faq-items {
    display: flex;
    flex-direction: column;
}

.myrle-faq-item {
    transition: background-color 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    border: 1px solid transparent; /* default placeholder for user border styling */
}

.myrle-faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    margin: 0;
    transition: color 0.3s ease;
}

.myrle-faq-trigger .question-text {
    flex-grow: 1;
    padding-right: 20px;
    line-height: 1.4;
}

.myrle-faq-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.myrle-faq-icon {
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Rotate icon to represent a minus (-) sign or generic active state softly */
.myrle-faq-item.is-active .myrle-faq-icon {
    transform: rotate(45deg);
}

.myrle-faq-content {
    overflow: hidden;
}

.myrle-faq-content-inner {
    line-height: 1.6;
}

.myrle-faq-content-inner p:last-child {
    margin-bottom: 0;
}
