/* FAQ blok - "De Haard"
   Hoort bij de layout _faq van de General Template. */

.skk-faq {
    padding: 70px 0 80px;
}

.skk-faq .skk-faq-head {
    max-width: 640px;
    margin-bottom: 34px;
}

.skk-faq-eyebrow {
    font-family: "Lato", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: #B88F00;
    margin: 0 0 12px;
}

.skk-faq h2 {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 1.25;
    color: #332E2A;
    margin: 0 0 12px;
}

.skk-faq-intro {
    font-family: 'Crimson Text', serif;
    font-size: 19px;
    line-height: 1.7;
    color: #797979;
    margin: 0;
}

.skk-faq-item {
    position: relative;
    border-top: 1px solid #E6DECD;
    padding: 0 22px;
    margin: 0 -22px;
    transition: background .4s ease;
}

.skk-faq-item:last-child {
    border-bottom: 1px solid #E6DECD;
}

/* gouden haarlijn die uitschuift zodra de vraag opengaat */
.skk-faq-item:after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    height: 1px;
    width: 0;
    background: #B88F00;
    transition: width .55s cubic-bezier(.22, 1, .36, 1);
}

.skk-faq-item.is-open:after {
    width: 100%;
}

.skk-faq-item.is-open {
    background: radial-gradient(130% 140% at 0% 50%, rgba(184, 143, 0, .08), rgba(184, 143, 0, 0) 62%);
}

.skk-faq-q {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    padding: 25px 0;
    cursor: pointer;
    color: inherit;
}

.skk-faq-q > span {
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.4;
    color: #332E2A;
    padding-right: 20px;
    transition: color .25s;
}

.skk-faq-item:hover .skk-faq-q > span,
.skk-faq-item.is-open .skk-faq-q > span {
    color: #B88F00;
}

.skk-faq-mark {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border: 1px solid #E6DECD;
    border-radius: 50%;
    position: relative;
    transition: border-color .3s, background .3s, -webkit-transform .45s cubic-bezier(.22, 1, .36, 1);
    transition: border-color .3s, background .3s, transform .45s cubic-bezier(.22, 1, .36, 1);
}

.skk-faq-mark:before,
.skk-faq-mark:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #B88F00;
    transition: opacity .3s, background .3s;
}

.skk-faq-mark:before {
    width: 11px;
    height: 2px;
    margin: -1px 0 0 -5.5px;
}

.skk-faq-mark:after {
    width: 2px;
    height: 11px;
    margin: -5.5px 0 0 -1px;
}

.skk-faq-item:hover .skk-faq-mark {
    border-color: #B88F00;
}

.skk-faq-item.is-open .skk-faq-mark {
    border-color: #B88F00;
    background: #B88F00;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.skk-faq-item.is-open .skk-faq-mark:before {
    background: #ffffff;
}

.skk-faq-item.is-open .skk-faq-mark:after {
    opacity: 0;
}

.skk-faq-a {
    overflow: hidden;
    height: 0;
    transition: height .42s cubic-bezier(.22, 1, .36, 1);
}

.skk-faq-a-inner {
    padding-bottom: 26px;
    max-width: 62ch;
}

.skk-faq-a-inner p {
    font-family: "Lato", sans-serif;
    font-size: 16.5px;
    line-height: 1.8;
    font-weight: 300;
    color: #57514B;
    margin: 0 0 14px;
}

.skk-faq-a-inner p:last-child,
.skk-faq-a-inner ul:last-child,
.skk-faq-a-inner ol:last-child {
    margin-bottom: 0;
}

.skk-faq-a-inner ul,
.skk-faq-a-inner ol {
    font-family: "Lato", sans-serif;
    font-size: 16.5px;
    line-height: 1.8;
    font-weight: 300;
    color: #57514B;
    margin: 0 0 14px;
    padding-left: 20px;
}

.skk-faq-a-inner a {
    color: #C23444;
    text-decoration: underline;
}

.skk-faq-cta {
    margin-top: 44px;
    background: #FBF7EE;
    border-left: 3px solid #C23444;
    padding: 26px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.skk-faq-cta strong {
    display: block;
    font-family: 'Crimson Text', serif;
    font-weight: 600;
    font-size: 21px;
    color: #332E2A;
    margin-bottom: 4px;
}

.skk-faq-cta span {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #797979;
}

.skk-faq-btn {
    display: inline-block;
    background: #C23444;
    color: #ffffff;
    padding: 13px 26px;
    font-family: "Lato", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .22s;
}

.skk-faq-btn:hover,
.skk-faq-btn:focus {
    background: #BA1025;
    color: #ffffff;
    text-decoration: none;
}

.skk-faq-q:focus-visible,
.skk-faq-btn:focus-visible {
    outline: 2px solid #C23444;
    outline-offset: 3px;
}

@media (max-width: 767.98px) {
    .skk-faq {
        padding: 50px 0 60px;
    }

    .skk-faq h2 {
        font-size: 30px;
    }

    .skk-faq-item {
        padding: 0 14px;
        margin: 0 -14px;
    }

    .skk-faq-q > span {
        font-size: 18.5px;
    }

    .skk-faq-cta {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .skk-faq-item,
    .skk-faq-item:after,
    .skk-faq-a,
    .skk-faq-mark {
        transition-duration: .01ms;
    }
}
