.wk-faq-accordion {
    max-width: 100%;
    margin: 1.5em 0;
}

.wk-faq-item {
    margin-bottom: 0;
    border-bottom: 1px solid #e5e5e5;
}

.wk-faq-item:first-child {
    border-top: 1px solid #e5e5e5;
}

.wk-faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 1em;
    line-height: 1.5;
    color: #222;
    transition: color 0.2s ease;
}

.wk-faq-question::-webkit-details-marker {
    display: none;
}

.wk-faq-question::marker {
    display: none;
    content: '';
}

.wk-faq-question:hover {
    color: #000;
}

.wk-faq-question:focus {
    outline: 2px solid #0073aa;
    outline-offset: 2px;
}

.wk-faq-question:focus:not(:focus-visible) {
    outline: none;
}

.wk-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    position: relative;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.wk-faq-icon::before,
.wk-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #666;
    transition: background-color 0.2s ease;
}

.wk-faq-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wk-faq-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.wk-faq-item[open] .wk-faq-icon {
    background-color: #333;
}

.wk-faq-item[open] .wk-faq-icon::before,
.wk-faq-item[open] .wk-faq-icon::after {
    background-color: #fff;
}

.wk-faq-item[open] .wk-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

.wk-faq-question-text {
    flex: 1;
}

.wk-faq-answer {
    padding: 0 0 20px 32px;
    color: #555;
    line-height: 1.7;
    font-size: 0.95em;
}

.wk-faq-answer p {
    margin: 0 0 1em;
}

.wk-faq-answer p:last-child {
    margin-bottom: 0;
}

.wk-faq-answer ul,
.wk-faq-answer ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
}

.wk-faq-answer ul:last-child,
.wk-faq-answer ol:last-child {
    margin-bottom: 0;
}

.wk-faq-answer li {
    margin-bottom: 0.5em;
}

.wk-faq-answer li:last-child {
    margin-bottom: 0;
}

.wk-faq-answer a {
    color: inherit;
    text-decoration: underline;
}

.wk-faq-answer a:hover {
    color: #000;
}

.wk-faq-item .wk-faq-answer {
    animation: wk-faq-fade-in 0.2s ease-out;
}

@keyframes wk-faq-fade-in {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
