/* Additions to the Webflow export. Kept apart so a new export never overwrites them. */

body {
    overflow-x: hidden;
}

::-moz-selection {
    color: #ffffff;
    background: #84b255;
}

::selection {
    color: #ffffff;
    background: #84b255;
}

::-webkit-scrollbar {
    width: auto;
}

::-webkit-scrollbar-track {
    background: #007540;
}

::-webkit-scrollbar-thumb {
    background: #84b255;
}

/* Frequently asked questions: one calm list, every question the same size. */
.faq-list {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(3, 72, 94, .15);
}

.faq-item {
    border-bottom: 1px solid rgba(3, 72, 94, .15);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    list-style: none;
}

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

.faq-question::after {
    content: "";
    flex: none;
    width: .55rem;
    height: .55rem;
    margin-right: .25rem;
    border-right: 2px solid var(--yellow-green);
    border-bottom: 2px solid var(--yellow-green);
    transform: translateY(-25%) rotate(45deg);
    transition: transform .2s ease-out;
}

.faq-item[open] > .faq-question::after {
    transform: translateY(25%) rotate(-135deg);
}

.faq-question:focus-visible {
    outline: 2px solid var(--yellow-green);
    outline-offset: 4px;
}

.faq-question__text {
    margin: 0;
    color: var(--blue);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-answer {
    padding-bottom: 1.25rem;
}

.faq-answer p {
    margin: 0;
}
