        .overflow-visible {
            overflow: visible !important;
        }

        .z-index-10 {
            position: relative;
            z-index: 10;
        }

        .board-page-shell {
            max-width: 1120px;
        }

        .board-page-kicker {
            color: var(--primary-color);
            font-weight: 800;
            letter-spacing: 0;
        }

        .board-search-form {
            flex: 1 1 420px;
            min-width: 320px;
        }

        .board-search-type {
            width: 4.75rem;
            max-width: 4.75rem;
            padding-left: 0.65rem;
            padding-right: 1.75rem;
        }

        .board-list {
            display: grid;
            gap: 0.75rem;
        }

        .board-list-row {
            display: grid;
            grid-template-columns: 3.25rem minmax(0, 1fr) auto;
            gap: 1rem;
            align-items: center;
            padding: 1rem;
            border: 1px solid var(--card-border-color);
            border-radius: 1rem;
            background: var(--card-bg-color);
            color: var(--page-text-color);
            transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
        }

        .board-list-row:hover {
            border-color: rgba(10, 143, 80, 0.35);
            box-shadow: 0 10px 24px rgba(18, 28, 45, 0.07);
            color: var(--page-text-color);
        }

        .board-category-icon {
            width: 3.25rem;
            height: 3.25rem;
            border-radius: 0.9rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--card-border-color);
            background: rgba(10, 143, 80, 0.1);
            color: var(--primary-color);
            font-size: 1.25rem;
        }

        .board-category-notice {
            background: rgba(220, 53, 69, 0.1);
            color: #dc3545;
            border-color: rgba(220, 53, 69, 0.18);
        }

        .board-category-qna {
            background: rgba(36, 127, 214, 0.11);
            color: #247fd6;
            border-color: rgba(36, 127, 214, 0.18);
        }

        .board-category-knowledge {
            background: rgba(121, 85, 72, 0.1);
            color: #795548;
            border-color: rgba(121, 85, 72, 0.18);
        }

        [data-theme="dark"] .board-category-knowledge {
            color: #d9b4a7;
            background: rgba(217, 180, 167, 0.12);
        }

        .board-title {
            color: var(--page-text-color);
            line-height: 1.35;
            word-break: keep-all;
            overflow-wrap: anywhere;
        }

        .board-list-row:hover .board-title {
            color: var(--primary-color);
        }

        .board-preview {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            line-height: 1.5;
        }

        .board-meta {
            color: var(--page-muted-color);
            white-space: nowrap;
        }

        .board-stat-panel {
            min-width: 10rem;
            color: var(--page-muted-color);
        }

        .board-stat-panel span {
            display: inline-flex;
            align-items: center;
            gap: 0.25rem;
        }

        @media (max-width: 767px) {
            .board-page-shell {
                margin-top: 1.25rem !important;
                margin-bottom: 2rem !important;
            }

            .board-toolbar {
                gap: 0.75rem !important;
            }

            .board-search-form {
                min-width: 100% !important;
                flex-basis: 100%;
            }

            .board-search-type {
                width: 4.5rem;
                max-width: 4.5rem;
                font-size: 0.9rem;
            }

            .board-filter-actions {
                width: 100%;
                display: grid !important;
                grid-template-columns: 1fr 1fr;
            }

            .board-filter-actions .dropdown,
            .board-filter-actions .dropdown > .btn,
            .board-filter-actions > .btn,
            .board-filter-actions > a {
                width: 100%;
            }

            .board-filter-actions > a {
                grid-column: 1 / -1;
            }

            .board-list-row {
                grid-template-columns: 2.75rem minmax(0, 1fr);
                align-items: start;
                gap: 0.8rem;
                padding: 0.9rem;
            }

            .board-category-icon {
                width: 2.75rem;
                height: 2.75rem;
                border-radius: 0.8rem;
            }

            .board-stat-panel {
                grid-column: 2;
                min-width: 0;
                width: 100%;
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: wrap;
                align-items: center !important;
                justify-content: flex-start !important;
                gap: 0.35rem 0.7rem !important;
                font-size: 0.78rem;
                line-height: 1.2;
            }

            .board-stat-panel span {
                min-width: 0;
            }

            .board-stat-panel .text-truncate {
                max-width: 5.5rem !important;
            }

            .board-preview {
                -webkit-line-clamp: 2;
            }
        }
