.faq-layout .faq-header,
.faq-layout .faq-list {
    grid-column-start: 2;
}

.faq-layout .pk-grid-container{
    max-width: unset;
}

@media screen and (max-width: 992px) {
    .faq-layout .faq-header,
    .faq-layout .faq-list {
        grid-column-start: 1;
    }
    .pk-page .faq-layout .faq-inner{
        max-width:100%;
    }
}


.faq-layout .faq-titel-tekst {
    margin-bottom: 2rem;
    /* font-weight: 800; */
}

.faq-layout .faq-titel-tekst h2,
.faq-layout .faq-titel-tekst h3 {
    color: #8C3E12;
    margin-top: 0;
}

.faq-layout .faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-layout .faq-item {
    border-radius: 5px;
    background: var(--Sand-light, #F7F5F2);
    overflow: hidden;
    padding:24px;
}

.faq-layout .faq-title {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    font-weight: 400;
    gap: 1rem;
}

.faq-layout .faq-title-text {
    flex: 1;
    font-weight: 500;
}

.faq-layout .faq-title .close-icon {
    display: none;
}

.faq-layout .faq-title[aria-expanded="true"] .open-icon {
    display: none;
}

.faq-layout .faq-title[aria-expanded="true"] .close-icon {
    display: block;
}

.faq-layout .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease;
    color: rgba(0, 0, 0, 0.75);
}

.faq-layout .faq-item.active .faq-content {
    grid-template-rows: 1fr;
}

.faq-layout .faq-inner {
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transition: padding 0.35s ease, opacity 0.25s ease;
    padding-top: 0;
    max-width: 85%;
}

.faq-layout .faq-item.active .faq-inner {
    opacity: 1;
    padding-top: 20px;
    transition: padding 0.35s ease, opacity 0.25s ease 0.1s;
}

.faq-layout .faq-content p {
    margin: 0;
}
