/***********************
    VADEMECUM
************************/
.vademecum h3{
    margin-bottom: 1.5rem;
}
.vademecum p{
    margin-bottom: 2rem;
    pointer-events: all;
}
.vademecum p > a{
    text-decoration: underline;
    padding: 0 5px;
    color: var(--bordeaux);
    font-weight: 600;
    letter-spacing: 1px;
}
/***********************
    Whistleblowing
************************/
.text{
    margin-top: 3rem;
}
.text_space{
    display: block;
    width: 100%;
    height: 1rem;
}
.text_title{
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 2rem 0;
}
.text ul{
    list-style: disc;
    max-width: 750px;
    width: 100%;
    margin: 1rem auto;
    margin-bottom: 0;
    text-align: justify;
    line-height: 1.5rem;
}
.text ul li{
    margin-bottom: 1rem;
}
.text p{
    pointer-events: all;
}
.text p a,
.text ul li a{
    text-decoration: underline;
    color: var(--bright_gold);
}
.gold{
    color: var(--bright_gold);
}
/***********************
    FAQ
************************/
#accordion{
    margin-top: 5rem;
}
.faq{
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    margin-top: 1.5rem;
    padding-bottom: 1.45rem;
    border-bottom: 3px solid var(--bordeaux);
    cursor: pointer;
}
.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.question h3{
    font-size: 18px;
    width: 90%;
}
.question svg{
    width: 10%;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.4s ease;
}
.answer p{
    color: var(--dark_gray);
    padding-top: 1rem;
    padding-bottom: .5rem;
    line-height: 1.5;
    font-size: 18px;
    text-align: justify;
}
.faq.active .answer{
    max-height: 300px;
    animation: fade 1s ease-in-out;
}
.faq svg{
    transition: transform .8s ease-in;
}
.faq.active svg{
    transform: rotate(180deg);
}

@keyframes fade {
    from{
        opacity: 0;
        transform: translateY(-10px);
    }
    to{
        opacity: 1;
        transform: translateY(0px);
    }
}

@media screen and (max-width: 430px){
    .question h3{
        font-size: 1rem;
    }
    .answer p{
        padding-top: 1rem;
        padding-bottom: .5rem;
        line-height: 1.5;
        font-size: .85rem;
    }
}
@media screen and (max-width: 375px){
    .question h3{
        font-size: .95rem;
    }
}
@media screen and (max-width: 320px){
    .question{
        gap: .35rem;
    }
    .question h3{
        font-size: .85rem;
    }
}