.analysis-page {
    background:
        radial-gradient(circle at top left, rgba(17, 94, 196, 0.10), transparent 28%),
        radial-gradient(circle at right 18%, rgba(24, 118, 210, 0.08), transparent 22%),
        linear-gradient(180deg, #f7f9fd 0%, #eef3f9 100%);
}

.analysis-has-search #analysisTopicGrid,
.analysis-has-search #analysisTopicPagination {
    display: none !important;
}

.analysis-topic-grid-search {
    display: none;
}

.analysis-topic-hero {
    margin-top: 80px;
    padding: 56px 0 32px;
    background:
        radial-gradient(circle at top right, rgba(12, 94, 196, 0.22), transparent 36%),
        linear-gradient(135deg, #082c60 0%, #0b51b2 56%, #1976d2 100%);
}

.analysis-topic-hero-inner {
    width: 1200px;
    margin: 0 auto;
    padding: 0 8px;
}

.analysis-topic-shell {
    width: 1200px;
    margin: 0 auto;
    padding: 40px 0 100px;
}

.analysis-topic-hero-copy {
    max-width: 760px;
    color: #fff;
}

.analysis-topic-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.analysis-topic-hero-copy h1 {
    margin: 20px 0 16px;
    color: #fff;
    font-size: 52px;
    line-height: 66px;
    font-weight: 700;
}

.analysis-topic-hero-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 32px;
}

.analysis-topic-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.analysis-topic-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: #fff;
    color: #0b51b2;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease;
}

.analysis-topic-hero-btn.ghost {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

.analysis-topic-hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(7, 21, 49, 0.18);
}

.analysis-topic-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.analysis-topic-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 96px;
    height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #d8e3f1;
    color: #55657a;
    font-size: 15px;
    line-height: 22px;
    font-weight: 600;
    transition: all .2s ease;
}

.analysis-topic-tab:hover,
.analysis-topic-tab.active {
    background: #0b51b2;
    border-color: #0b51b2;
    color: #fff;
}

.analysis-topic-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 24px;
    margin-top: 24px;
    align-items: start;
}

.analysis-topic-directory-panel {
    position: relative;
}

.analysis-topic-directory-box,
.analysis-topic-content {
    background: #fff;
    border: 1px solid #dfe7f2;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(16, 36, 63, 0.06);
}

.analysis-topic-directory-box {
    position: sticky;
    top: 108px;
    padding: 24px 18px 18px;
}

.analysis-topic-directory-head h2,
.analysis-topic-content-head h2 {
    margin: 0;
    color: #10243f;
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
}

.analysis-topic-directory-head p,
.analysis-topic-content-head p {
    margin: 8px 0 0;
    color: #6a7b90;
    font-size: 14px;
    line-height: 24px;
}

.analysis-topic-directory-list {
    margin-top: 18px;
    max-height: calc(100vh - 240px);
    overflow-y: auto;
    /*padding-right: 12px;*/
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.analysis-topic-directory-list::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.analysis-topic-directory-scrollbar {
    position: absolute;
    top: 0;
    right: 6px;
    width: 8px;
    border-radius: 999px;
    background: rgba(227, 236, 247, 0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s ease;
}

.analysis-topic-directory-box:hover .analysis-topic-directory-scrollbar,
.analysis-topic-directory-scrollbar.is-active {
    opacity: 1;
}

.analysis-topic-directory-scrollbar.is-hidden {
    display: none;
}

.analysis-topic-directory-scrollbar-thumb {
    position: absolute;
    left: 0;
    width: 100%;
    border-radius: 999px;
    background: linear-gradient(180deg, #c7d8eb 0%, #8dadd4 100%);
    box-shadow: 0 6px 14px rgba(11, 81, 178, 0.14);
}

.analysis-topic-directory-item {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 9px 10px;
    border-radius: 12px;
    color: #33465e;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    cursor: pointer;
}

.analysis-topic-directory-item + .analysis-topic-directory-item {
    margin-top: 2px;
}

.analysis-topic-directory-item:hover {
    background: #edf4ff;
    color: #0b51b2;
}

.analysis-topic-directory-item.active {
    background: #edf4ff;
    color: #0b51b2;
}

.analysis-topic-directory-title {
    flex: 1;
    min-width: 0;
    display: -webkit-box;
    overflow: hidden;
    max-height: 40px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
    word-break: break-word;
}

.analysis-topic-directory-empty,
.analysis-topic-empty {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    margin-top: 18px;
    border-radius: 20px;
    background: #f6f9fc;
    color: #6a7b90;
    font-size: 15px;
    line-height: 24px;
    text-align: center;
    padding: 24px;
}

.analysis-topic-content {
    padding: 24px;
}

.analysis-topic-content-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.analysis-topic-content-copy {
    flex: 1;
    min-width: 0;
}

.analysis-topic-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 320px;
    flex: none;
    padding: 6px 6px 6px 16px;
    border: 1px solid #d8e3f1;
    border-radius: 999px;
    background: #f8fbff;
}

.analysis-topic-search-input {
    flex: 1;
    min-width: 0;
    height: 36px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #10243f;
    font-size: 14px;
    line-height: 20px;
}

.analysis-topic-search-input::-ms-clear,
.analysis-topic-search-input::-ms-reveal {
    display: none;
}

.analysis-topic-search-input::-webkit-search-cancel-button,
.analysis-topic-search-input::-webkit-search-decoration {
    -webkit-appearance: none;
}

.analysis-topic-search-input:focus {
    outline: none;
}

.analysis-topic-search-input::placeholder {
    color: #9aa9bd;
}

.analysis-topic-search-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 999px;
    background: #0b51b2;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
}

.analysis-topic-search-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 36px;
    padding: 0 16px;
    border: 0;
    border-radius: 999px;
    background: #10243f;
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
}

.analysis-topic-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.analysis-topic-search-loading {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 4px 0;
}

.analysis-topic-search-loading span {
    display: block;
    height: 126px;
    border-radius: 16px;
    background: linear-gradient(90deg, #eef4fb 0%, #f8fbff 50%, #eef4fb 100%);
    background-size: 200% 100%;
    animation: analysisLoading 1.2s linear infinite;
}

@keyframes analysisLoading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.analysis-topic-card {
    display: flex;
    flex-direction: row;
    min-width: 0;
    align-items: center;
    gap: 18px;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-bottom: 1px solid #e5edf7;
    padding: 18px 0;
    transition: transform .2s ease;
}

.analysis-topic-card:hover {
    background: transparent;
    transform: translateY(-2px);
}

.analysis-topic-card-cover {
    position: relative;
    flex: none;
    width: 108px;
    height: 108px;
    min-height: 108px;
    margin: 0;
    border-radius: 14px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #eef3f9;
}

.analysis-topic-card-play {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(4, 19, 43, 0.44);
    backdrop-filter: blur(8px);
}

.analysis-topic-card-play span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -2px;
    margin-top: -4px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
}

.analysis-topic-card-tag {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(4, 19, 43, 0.50);
    color: #fff;
    font-size: 11px;
    line-height: 16px;
    font-weight: 600;
}

.analysis-topic-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
    padding: 0;
}

.analysis-topic-card-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    min-height: 26px;
    color: #10243f;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

.analysis-topic-card-desc {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    min-height: 44px;
    margin-top: 6px;
    color: #6a7b90;
    font-size: 14px;
    line-height: 22px;
    word-break: break-word;
}

.analysis-topic-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 8px;
    color: #7c8da1;
    font-size: 13px;
    line-height: 20px;
}

.analysis-topic-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0b51b2;
    font-weight: 700;
}

.analysis-topic-card-link-arrow {
    font-size: 15px;
    line-height: 15px;
}

.analysis-topic-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.analysis-topic-pagination .pagelist {
    display: flex;
    justify-content: center;
}

.analysis-topic-pagination ul {
    display: flex !important;
    float: none !important;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    padding: 6px;
    border-radius: 999px;
    background: #f5f9ff;
    box-shadow: inset 0 0 0 1px #e3ecf7;
}

.analysis-topic-pagination li {
    float: none;
    margin: 0;
    padding: 0;
    border: 0;
    height: auto;
    list-style: none;
}

.analysis-topic-pagination li a,
.analysis-topic-pagination li.thisclass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid transparent;
    color: #5d7088;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    transition: all .2s ease;
}

.analysis-topic-pagination li a:hover {
    background: #ffffff;
    border-color: #d8e3f1;
    color: #0b51b2;
    box-shadow: 0 8px 18px rgba(11, 81, 178, 0.08);
}

.analysis-topic-pagination li.thisclass {
    background: #0b51b2;
    border-color: #0b51b2;
    color: #fff;
    box-shadow: 0 10px 20px rgba(11, 81, 178, 0.18);
}

.analysis-topic-pagination li:first-child a,
.analysis-topic-pagination li:last-child a {
    padding: 0 24px;
    min-width: 68px;
}
