/* cmsms stylesheet: faqs modified: 07/28/26 10:54:21 */
.faq_section {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq_section_question {
    position: relative;
    cursor: pointer;
    padding: 15px;
    font-weight: 700;
    background-color: #46c9f5;
}

.faq_section_question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 1rem;
    font-weight: 700;
}

.faq_section_question.active::after {
    content: "-";
}

.faq_section_answer {
    display: none;
    padding: 15px;
}

.faq_section_answer p:first-child {
    margin-top: 0;
}
/* cmsms stylesheet: news modified: 07/28/26 10:54:21 */
.newsSection {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.newsBox {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.boxImg img {
    display: block;
    width: 100%;
    height: auto;
}

.boxText {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.boxText h3 {
    margin-top: 1rem;
color: #0a3a62;
}

.boxText p {
    flex-grow: 1;
}

@media (max-width: 1000px) {
    .newsSection {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .newsSection {
        grid-template-columns: 1fr;
    }
}
