/* Park FAQ: native details/summary on milk; the icon is CSS, no script. */

.pk-faq__inner {
    max-width: 860px;
}
.pk-faq__list {
    display: flex;
    flex-direction: column;
}
.pk-faq__item {
    border-bottom: 1px solid var(--pk-line-strong, #cfc7b8);
}
.pk-faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    cursor: pointer;
    user-select: none;
    list-style: none;
}
.pk-faq__q::-webkit-details-marker { display: none; }
.pk-faq__q:focus-visible { outline: 2px solid #FF6A00; outline-offset: 3px; }
.pk-faq__q-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--pk-ink, #111214);
}
.pk-faq__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid rgba(17, 18, 20, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(17, 18, 20, .6);
    font-size: 16px;
    line-height: 1;
    font-weight: 300;
    transition: border-color .18s, background .18s, color .18s;
}
.pk-faq__icon::before { content: "+"; }
.pk-faq__item[open] .pk-faq__icon {
    background: #FF6A00;
    border-color: #FF6A00;
    color: #fff;
}
.pk-faq__item[open] .pk-faq__icon::before { content: "\2212"; }
.pk-faq__a {
    font-size: 15px;
    line-height: 1.75;
    color: var(--pk-text-62, rgba(17, 18, 20, .62));
    padding: 0 40px 22px 0;
}
.pk-faq__a p { margin: 0 0 12px; }
.pk-faq__a p:last-child { margin-bottom: 0; }
.pk-faq__a a { color: var(--pk-orange-text, #B84A00); }

@media (max-width: 600px) {
    .pk-faq__q { padding: 16px 0; }
    .pk-faq__a { padding-right: 0; }
}
