h1 {
    font-size: var(--bringer-t-h2-fs) !important;
}

.min-w-120px {
    min-width: 120px;
}

/* 基本樣式 */
.sticky-sidebar {
    position: relative;
    background: white;
}

/* 側邊欄內容容器 */
.sidebar-content {
    position: sticky;
    top: 64px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    transition: all 0.3s ease;
    padding: 1rem;
    padding-top: 0 !important;
}

.sidebar-content::-webkit-scrollbar {
    width: 6px;
}

.sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.sidebar-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .sticky-sidebar {
        position: static;
    }

    .sidebar-content {
        position: static;
        max-height: none;
        overflow-y: visible;
    }
}

section {
    padding: 0 !important;
}


.prose section strong {
    color: #3B82F6;
}

.relation {
    font-size: 1.6666667em;
    margin-top: 1.8666667em;
    margin-bottom: 1.0666667em;
    line-height: 1.3333333;
}

.custom-prose {
    max-width: 100ch !important;
}

@media (min-width: 1536px) {
    .container {
        max-width: 1280px !important;
    }
}