.page-title-wrap {
    margin-bottom: 36px;
}

.page-title-wrap h1 {
    margin: 0 0 6px;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.page-title-wrap p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
}

.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.total-count {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
}

.total-count strong {
    color: var(--brand);
    font-weight: 700;
}

.search-form {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 13px;
    display: flex;
    align-items: center;
    color: var(--muted);
    pointer-events: none;
}

.search-input {
    height: 40px;
    padding: 0 16px 0 38px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    width: 240px;
    outline: none;
    color: var(--text);
    transition: border-color 0.15s;
}

.search-input:focus {
    border-color: var(--brand);
}

.search-btn {
    height: 40px;
    padding: 0 20px;
    border-radius: 999px;
    border: none;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.15s;
}

.search-btn:hover {
    background: var(--brand-700);
}

.search-select {
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    cursor: pointer;
    transition: border-color 0.15s;
    appearance: none;
    padding: 0 28px 0 12px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
}

.search-select:focus {
    border-color: var(--brand);
}

.reset-btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.reset-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.faq-list {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--muted);
    font-size: 14px;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.12s;
}

.faq-question:hover {
    background: #fff8f3;
}

.faq-item.is-open .faq-question {
    background: #fff8f3;
}

.faq-q-label {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-q-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.5;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--muted);
    display: flex;
    align-items: center;
    transition: transform 0.2s;
}

.faq-chevron svg {
    width: 18px;
    height: 18px;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    background: var(--card);
    border-top: 1px solid var(--line);
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer-inner {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
}

.faq-a-label {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-a-text {
    margin: 0;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    white-space: pre-wrap;
}

.pagination {
    display: grid;
    place-items: center;
    margin-top: 36px;
}

.pagination-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.page-list {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 4px;
}

.page-btn,
.page-num {
    height: 34px;
    min-width: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    cursor: pointer;
    font-weight: 800;
    font-size: 13px;
    color: var(--text);
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.page-btn svg {
    width: 14px;
    height: 14px;
}

.page-btn:hover,
.page-num:hover {
    background: #f9fafb;
}

.page-num.is-active {
    border-color: transparent;
    background: var(--brand);
    color: #fff;
}

@media (max-width: 768px) {
    .list-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form {
        width: 100%;
    }

    .search-input {
        flex: 1;
        width: auto;
    }

    .faq-question {
        padding: 16px 20px;
    }

    .faq-answer-inner {
        padding: 16px 20px;
    }
}
