/* Categorie FAQ - vormgeving conform het bestaande accordion-blok */

.awcf-faq__item {
    margin-bottom: 15px;
}

.awcf-faq__item--hidden {
    display: none;
}

.awcf-faq__q {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #efeae3;
    border-radius: 20px;
    padding: 20px;
    color: #7a7a7a;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    cursor: pointer;
}

.awcf-faq__q::-webkit-details-marker {
    display: none;
}

.awcf-faq__q::marker {
    content: "";
}

/* Chevron-icoon rechts in de balk (omhoog bij geopend item) */
.awcf-faq__q::after {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%237F7C75' d='M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: transform 0.2s ease;
}

.awcf-faq__item[open] > .awcf-faq__q::after {
    transform: rotate(180deg);
}

.awcf-faq__a {
    padding: 15px 20px 5px;
    color: #7a7a7a;
    font-size: 15px;
    line-height: 1.6;
}

.awcf-faq__a p:last-child,
.awcf-faq__a div:last-child,
.awcf-faq__a ul:last-child {
    margin-bottom: 0;
}

/* "Lees meer"-knop — uniforme knopstijl cat-pagina's (klantverzoek 2026-07-23):
   16px (14px mobiel), lichtblauw #00b1cf, radius 10px, padding 12px 24px */
.awcf-faq__more {
    display: inline-block;
    margin-top: 15px;
    background: #00b1cf;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.2s ease;
}

.awcf-faq__more:hover,
.awcf-faq__more:focus {
    background: #123c57;
    color: #fff;
}

/* Knoppen naast elkaar */
.awcf-faq__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* "Toon minder" - zelfde uniforme knopstijl als "Lees meer" (was outline-variant) */
.awcf-faq__less {
    display: inline-block;
    margin-top: 15px;
    background: #00b1cf;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.awcf-faq__less:hover,
.awcf-faq__less:focus {
    background: #123c57;
    color: #fff;
}

.awcf-faq__more[hidden],
.awcf-faq__less[hidden] {
    display: none !important;
}


@media (max-width: 768px) {

.awcf-faq__q {
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 18px;
	}

	/* Uniforme knopstijl: op mobiel 14px */
	.awcf-faq__more,
	.awcf-faq__less {
		font-size: 14px;
	}
}

