/* 法律工具：知識中心、計算機、資源下載、AI 助手 */

.tool-eyebrow {
    display: inline-block;
    background: rgba(135, 29, 29, 0.12);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

/* 紅色 page-header 內的標籤改為白字，確保可讀 */
.page-header .tool-eyebrow {
    color: #fff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.tools-strip {
    padding: 56px 0;
    background: var(--light-gray);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.tool-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-gray);
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(135, 29, 29, 0.12);
}

.tool-card-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.tool-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tool-card p {
    color: var(--secondary-color);
    font-size: 15px;
    margin-bottom: 18px;
}

/* FAQ */
.faq-section {
    padding: 60px 0 80px;
}

.faq-search-wrap {
    max-width: 640px;
    margin: 0 auto 28px;
}

.faq-search {
    width: 100%;
    padding: 14px 22px;
    border: 2px solid var(--border-gray);
    border-radius: 40px;
    font-size: 16px;
    line-height: 1.5;
    min-height: 52px;
    box-sizing: border-box;
}

.faq-search:focus {
    outline: none;
    border-color: var(--primary-color);
}

.faq-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 32px;
    width: max-content;
    max-width: 100%;
}

.home-faq-tabs.faq-tabs {
    margin-left: auto;
    margin-right: auto;
}

.faq-tab {
    padding: 10px 18px;
    border: 2px solid var(--border-gray);
    border-radius: 30px;
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.faq-tab.active,
.faq-tab:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border: none;
    background: none;
    text-align: left;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
}

.faq-q-text {
    flex: 1;
}

.faq-cat-tag {
    font-size: 12px;
    color: var(--secondary-color);
    background: var(--light-gray);
    padding: 4px 10px;
    border-radius: 12px;
    white-space: nowrap;
}

.faq-toggle-icon {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 300;
}

.faq-answer {
    padding: 0 20px 18px;
    color: #333;
    line-height: 1.7;
}

.faq-cta-bar {
    background: linear-gradient(135deg, #871D1D, #6B1717);
    color: var(--white);
    text-align: center;
    padding: 48px 24px;
    border-radius: 12px;
    margin-top: 48px;
}

.faq-cta-bar h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.faq-cta-bar .faq-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.faq-cta-bar .btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white) !important;
    transition: background 0.2s, color 0.2s;
}

.faq-cta-bar .btn-cta-outline:hover {
    background: var(--white);
    color: var(--primary-color) !important;
}

.faq-empty {
    text-align: center;
    color: var(--secondary-color);
    padding: 40px;
}

/* Calculator */
.calc-section {
    padding: 48px 0 80px;
}

.calc-widget {
    max-width: 960px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-gray);
}

.calc-widget-header {
    background: linear-gradient(135deg, #1a2a4a, #2d4a7a);
    color: var(--white);
    padding: 24px 28px;
}

.calc-widget-header h2 {
    font-size: 22px;
    margin: 0 0 6px;
}

.calc-widget-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.calc-widget-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.calc-form-col {
    padding: 28px;
    border-right: 1px solid var(--border-gray);
}

.calc-form-col label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.calc-form-col input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 18px;
    box-sizing: border-box;
}

.calc-result-col {
    padding: 28px;
    background: #f0f4f8;
    min-height: 280px;
}

.calc-placeholder {
    text-align: center;
    color: var(--secondary-color);
    padding-top: 60px;
}

.calc-placeholder-icon {
    font-size: 48px;
    opacity: 0.35;
    margin-bottom: 12px;
}

#calcResult.is-visible .calc-placeholder {
    display: none;
}

.calc-result-card h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.calc-result-card ul {
    margin: 12px 0;
    padding-left: 20px;
}

.calc-disclaimer {
    font-size: 12px;
    color: var(--secondary-color);
    margin: 16px 0;
}

.calc-result-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 48px 0 64px;
}

.resource-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.resource-card h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.resource-card p {
    flex: 1;
    font-size: 14px;
    color: #444;
    margin-bottom: 16px;
}

.resource-badge {
    display: inline-block;
    background: var(--light-gray);
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.resource-success {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 12px;
}

.resource-download-link[hidden],
.resource-success[hidden] {
    display: none !important;
}

.resource-section-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 32px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-gray);
}

.resource-section-link {
    display: inline-block;
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 999px;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
}

.resource-section-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.resource-section-title {
    font-size: 22px;
    color: var(--primary-color);
    margin: 40px 0 8px;
    scroll-margin-top: 90px;
}

.resource-section-intro {
    color: #555;
    margin-bottom: 20px;
    max-width: 720px;
}

.resource-online-link {
    margin-top: 12px;
    font-size: 14px;
}

.resource-article-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: grid;
    gap: 10px;
}

.resource-article-list a {
    display: block;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--primary-color);
    text-decoration: none;
}

.resource-article-list a:hover {
    border-color: var(--primary-color);
    background: var(--light-gray);
}

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

/* Chatbot — 與 .whatsapp-float 共用 --fab-* 變數；藍邊框 + 線條機械人 */
.ku-chatbot-launcher {
    position: fixed;
    bottom: var(--fab-bottom);
    left: var(--fab-side);
    width: var(--fab-size);
    height: var(--fab-size);
    border-radius: 50%;
    border: 2px solid #4a7ab8;
    background: linear-gradient(160deg, #243a5e 0%, #152238 55%, #0f1a2e 100%);
    color: #fff;
    cursor: pointer;
    z-index: 998;
    box-shadow:
        0 4px 18px rgba(0, 0, 0, 0.28),
        0 0 0 4px rgba(74, 122, 184, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ku-chatbot-launcher:hover {
    transform: scale(1.06);
    border-color: #6b9ad4;
    box-shadow:
        0 6px 24px rgba(0, 0, 0, 0.32),
        0 0 0 6px rgba(74, 122, 184, 0.28);
}

.ku-chatbot-launcher:focus-visible {
    outline: 2px solid #6b9ad4;
    outline-offset: 3px;
}

.ku-chatbot-launcher svg {
    width: 26px;
    height: 26px;
    display: block;
}

.ku-chatbot-panel {
    position: fixed;
    bottom: calc(var(--fab-bottom) + var(--fab-size) + 16px);
    left: var(--fab-side);
    width: min(360px, calc(100vw - 48px));
    max-height: 480px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    z-index: 998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ku-chatbot-panel[hidden] {
    display: none !important;
}

.ku-chatbot-header {
    background: #1a2a4a;
    color: var(--white);
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.ku-chatbot-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

.ku-chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    min-height: 160px;
    max-height: 220px;
}

.ku-chatbot-msg {
    margin: 0 0 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.ku-chatbot-msg--bot {
    background: var(--light-gray);
}

.ku-chatbot-msg--user {
    background: rgba(135, 29, 29, 0.1);
    margin-left: 24px;
}

.ku-chatbot-suggestions {
    padding: 0 12px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ku-chatbot-sug-label {
    width: 100%;
    font-size: 12px;
    color: var(--secondary-color);
}

.ku-chatbot-chip {
    font-size: 12px;
    padding: 6px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 16px;
    background: var(--white);
    cursor: pointer;
    color: var(--primary-color);
}

.ku-chatbot-form {
    display: flex;
    padding: 10px;
    border-top: 1px solid var(--border-gray);
    gap: 8px;
}

.ku-chatbot-form input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border-gray);
    border-radius: 24px;
    font-size: 14px;
}

.ku-chatbot-form button[type="submit"] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
}

.ku-chatbot-msg a {
    color: #ffd4d4;
    text-decoration: underline;
}

.ku-chatbot-msg small {
    display: block;
    margin-top: 8px;
    opacity: 0.85;
    font-size: 12px;
}

.ku-chatbot-msg--typing span {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 2px;
    border-radius: 50%;
    background: #999;
    animation: ku-chat-typing 1s infinite ease-in-out;
}

.ku-chatbot-msg--typing span:nth-child(2) { animation-delay: 0.15s; }
.ku-chatbot-msg--typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes ku-chat-typing {
    0%, 80%, 100% { opacity: 0.35; transform: scale(0.85); }
    40% { opacity: 1; transform: scale(1); }
}

/* 法律文章 */
.articles-hub {
    padding: 48px 0 64px;
}

.articles-toolbar {
    max-width: 920px;
    margin: 0 auto 40px;
}

.articles-toolbar .faq-search-wrap {
    margin-bottom: 24px;
}

.articles-tabs-scroll {
    display: flex;
    justify-content: center;
    padding-bottom: 6px;
}

.articles-filter-tabs.faq-tabs {
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 100%;
    margin-bottom: 0;
    gap: 10px;
}

.articles-filter-tabs .faq-tab {
    min-height: 42px;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.article-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(135, 29, 29, 0.1);
}

.article-card-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--primary-color);
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

/* 頁底 CTA（法律文章等） */
.tool-cta-band {
    background: var(--light-gray);
    padding: 56px 0 64px;
    text-align: center;
    border-top: 1px solid var(--border-gray);
}

.tool-cta-band .container {
    max-width: 640px;
}

.tool-cta-band h2 {
    font-size: 26px;
    margin: 0 0 14px;
    color: var(--black);
}

.tool-cta-band p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--secondary-color);
    margin: 0 0 28px;
}

.tool-cta-band p a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.tool-cta-band p a:hover {
    color: var(--hover-primary);
}

.tool-cta-band .btn-primary {
    display: inline-flex;
    padding: 14px 32px;
    font-size: 17px;
}

.article-card h2 {
    font-size: 18px;
    line-height: 1.4;
    margin: 0 0 10px;
}

.article-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.article-card h2 a:hover {
    color: var(--primary-color);
}

.article-card p {
    flex: 1;
    font-size: 14px;
    color: var(--text-gray);
    margin: 0 0 12px;
}

.article-card-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 12px;
}

.article-card-link {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.articles-empty {
    text-align: center;
    color: var(--text-gray);
    padding: 32px;
}

.article-body {
    padding: 40px 0 64px;
}

.article-content {
    max-width: 760px;
}

.article-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-gray);
}

.article-content h2 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--primary-color);
}

.article-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.article-disclaimer {
    margin-top: 40px;
    padding: 16px 20px;
    background: #f8f4f4;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
    font-size: 14px;
}

.article-cta {
    margin-top: 40px;
    padding: 28px;
    background: linear-gradient(135deg, #f9f5f5, #fff);
    border-radius: 12px;
    text-align: center;
}

.article-cta h3 {
    margin-bottom: 8px;
}

.article-cta .btn-primary,
.article-cta .btn-secondary,
.article-cta .btn-cta-outline {
    margin: 8px 6px 0;
    display: inline-block;
}

.article-back {
    margin-top: 32px;
    font-size: 14px;
}

.article-back a {
    color: var(--primary-color);
}

/* 首頁：成功重啟人生案例 */
.success-stories {
    padding: 72px 0;
    background: linear-gradient(135deg, #871D1D 0%, #A82828 100%);
    color: var(--white);
}

.success-stories-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.success-stories-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 20px;
    font-size: 13px;
    color: var(--white);
    margin-bottom: 16px;
}

.success-stories-header h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: var(--white);
}

.success-stories-header p {
    opacity: 0.92;
    font-size: 17px;
    line-height: 1.7;
}

.success-stories-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
}

.success-stories-toolbar .case-tabs-scroll {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
}

.home-faq-preview .faq-tabs-scroll {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.case-tabs-scroll,
.faq-tabs-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    padding-bottom: 4px;
}

.case-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.case-tab {
    padding: 10px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.case-tab.active,
.case-tab:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

.case-search {
    min-width: 260px;
    max-width: 320px;
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 14px;
}

.case-search::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.case-search:focus {
    outline: 2px solid #d4af37;
    background: rgba(255, 255, 255, 0.18);
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.case-card {
    background: var(--white);
    color: #222;
    border-radius: 12px;
    padding: 24px 22px 20px;
    position: relative;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.case-card-quote {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.case-card-head {
    padding-left: 44px;
    margin-bottom: 14px;
}

.case-card-head h3 {
    font-size: 16px;
    margin: 0 0 6px;
    color: #111;
}

.case-card-debt {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 14px;
}

.case-card-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: none;
    margin: 10px 0 4px;
}

.case-card p {
    font-size: 14px;
    line-height: 1.65;
    margin: 0 0 8px;
    color: #333;
}

.case-card-result {
    margin-top: 12px;
    padding: 12px 14px;
    background: #e8f5e9;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #1b5e20;
}

.case-card-result strong {
    display: block;
    margin-bottom: 4px;
    color: #2e7d32;
}

.success-stories-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-case-cta {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid var(--white);
    border-radius: 30px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-case-cta:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cases-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    padding: 32px;
}

/* 首頁：法律知識中心預覽 */
.home-faq-preview {
    padding: 64px 0 72px;
    background: var(--white);
}

.home-faq-preview .section-header h2 {
    color: var(--primary-color);
}

.home-preview-more {
    text-align: center;
    margin: 20px 0 8px;
}

.btn-preview-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-preview-more:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-preview-more--light {
    border-color: rgba(255, 255, 255, 0.85);
    background: transparent;
    color: var(--white);
}

.btn-preview-more--light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.home-faq-more {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    align-items: stretch;
    margin-top: 32px;
    padding: 0 16px;
}

.home-faq-more .btn-primary,
.home-faq-more .btn-secondary {
    flex: 1 1 100%;
    max-width: 340px;
    margin: 0;
    text-align: center;
    justify-content: center;
}

@media (min-width: 520px) {
    .home-faq-more .btn-primary,
    .home-faq-more .btn-secondary {
        flex: 0 1 auto;
        min-width: 220px;
    }
}

@media (max-width: 900px) {
    .tools-grid,
    .resources-grid,
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .success-stories-header h2 {
        font-size: 28px;
    }

    .success-stories-toolbar {
        flex-direction: column;
    }

    .case-search {
        width: 100%;
        max-width: none;
    }

    .calc-widget-body {
        grid-template-columns: 1fr;
    }

    .calc-form-col {
        border-right: none;
        border-bottom: 1px solid var(--border-gray);
    }
}

@media (max-width: 768px) {
    .faq-cat-tag {
        display: none;
    }
}
