/* SIDEBAR */

.faq-archive-section__sidebar {
    position: sticky;
    top: 150px;
    max-width: 300px;
    flex: 1;
    height: max-content;
}

.faq-archive-section__sidebar input {
    margin-block: 24px;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(180, 184, 193, 1);
    border-radius: 8px;
    outline: 0;
}

.faq-archive-section__sidebar input:active,
.faq-archive-section__sidebar input:focus {
    outline: 0;
}

.faq-archive-section__sidebar h3 {
    font-family: Larken, sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 103%;
    margin-top: 24px;
}

.faq-archive-section__sidebar h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* SEARCH */


/* CATEGORY LIST */

.faq-archive-section__category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-archive-section__category-item {
    padding: 0.75rem 1rem;
    border-radius: .5rem;
    transition: 0.3s background-color;
    cursor: pointer;
}

.faq-archive-section__category-item:hover {
    background-color: rgba(212, 224, 231, 0.5);
}

.faq-archive-section__category-item.active {
    background-color: #D4E0E7;
}

@media (max-width: 940px) {
    .faq-archive-section__sidebar {
        position: static;
        max-width: 100%;
        text-align: center;
    }
    .faq-archive-section__sidebar h3{
        margin-top: 0;
    }
}