.portal-faq {
    margin-top: 18px;
    background:
        radial-gradient(circle at top right, rgba(62, 114, 128, 0.08), transparent 22%),
        #ffffff;
}

.portal-faq__list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.portal-faq__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.portal-faq__tab {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border: 1px solid #dbe6ea;
    border-radius: 999px;
    background: #fbfcfd;
    color: #45616b;
    font-size: 14px;
    font-weight: 600;
}

.portal-faq__tab--active {
    background: #3e7280;
    border-color: #3e7280;
    color: #fff;
}

.portal-faq__search {
    margin-top: 18px;
}

.portal-faq__search-note {
    margin: 0;
    padding: 12px 16px;
    border: 1px solid #dbe6ea;
    border-radius: 12px;
    background: #fbfcfd;
    color: #50626b;
}

.portal-faq__item {
    border: 1px solid #dbe6ea;
    border-radius: 14px;
    background: #fbfcfd;
    box-shadow: 0 8px 18px rgba(31, 41, 51, 0.04);
    transition:
        border-color 160ms ease,
        box-shadow 160ms ease;
}

.portal-faq__item[open] {
    border-color: #bfd4db;
    box-shadow: 0 14px 28px rgba(31, 41, 51, 0.08);
}

.portal-faq__question {
    position: relative;
    padding: 16px 52px 16px 20px;
    color: #1f2933;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

.portal-faq__question::-webkit-details-marker {
    display: none;
}

.portal-faq__question::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #45616b;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.portal-faq__item[open] .portal-faq__question::after {
    content: "\2212";
}

.portal-faq__question:focus-visible {
    outline: 3px solid rgba(62, 114, 128, 0.18);
    outline-offset: 2px;
    border-radius: 14px;
}

.portal-faq__answer {
    padding: 0 20px 20px;
    color: #43535b;
    font-size: 16px;
    line-height: 1.55;
}

.portal-faq__placeholder-text {
    width: 60%;
    height: 16px;
    background: #dbe6ea;
    border-radius: 4px;
}

@media (max-width: 760px) {
    .portal-faq__question {
        font-size: 16px;
    }
}
