.plfaqwidget-container {
    font-family: inherit;
}

.plfaqwidget-accordion {
    background-color: transparent;
}

.plfaqwidget-item {
    border: 1px solid #d4d4d4;
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 0;
}

.plfaqwidget-item:last-child {
    margin-bottom: 0;
}

.plfaqwidget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.2s ease;
}

.plfaqwidget-header:hover {
    background-color: #f9fafb;
}

.plfaqwidget-title {
    margin: 0;
    font-size: 1.125rem;
    font-weight: bold;
    color: #111827;
}

.plfaqwidget-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 1rem;
}

.plfaqwidget-icon::before,
.plfaqwidget-icon::after {
    content: '';
    position: absolute;
    background-color: #6b7280;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.plfaqwidget-icon::before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.plfaqwidget-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.plfaqwidget-item.active .plfaqwidget-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.plfaqwidget-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out;
}

.plfaqwidget-item.active .plfaqwidget-content-wrapper {
    grid-template-rows: 1fr;
}

.plfaqwidget-content {
    overflow: hidden;
    min-height: 0;
}

.plfaqwidget-content-inner {
    padding: 0.5rem 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    background-color: #ffffff;
}
