.tpw-faq-section {
    margin: 32px 0;
}

.tpw-faq-heading {
    font-size: 17px;
    font-weight: 500;
    color: #333;
    margin: 0 0 20px 0;
    text-align: left;
}

.tpw-faq-list {
    border-top: 1px solid #ededed;
}

.tpw-faq-item {
    border-bottom: 1px solid #ededed;
}

.tpw-faq-question {
    list-style: none;
    cursor: pointer;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

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

.tpw-faq-question::before {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    border-radius: 50%;
    background: linear-gradient(to right, #000 0 100%) center / 12px 2px no-repeat;
}

.tpw-faq-question::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 50%;
    width: 2px;
    height: 12px;
    margin-top: -6px;
    background: #000;
    transition: transform 0.25s ease;
}

.tpw-faq-item[open] > .tpw-faq-question::after {
    transform: rotate(90deg);
}

.tpw-faq-answer {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    padding: 0 0 12px 50px;
}

.single .entry-content .tpw-faq-answer p {
    margin: 0;
    padding: 0;
}

.single .entry-content .tpw-faq-answer p + p {
    margin-top: 1em;
}

@media (max-width: 600px) {
    .tpw-faq-answer {
        padding-left: 0;
    }
}
