/**********************************************
 * Wisdom Topics ??Slim CSS
 * - Archive (/topics/, /topic-category/slug/)
 * - Single (A1?밄2 ??+ 蹂몃Ц)
 **********************************************/

/* ========== 怨듯넻 ?덉씠?꾩썐 ========== */

.we-topics-archive {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.we-topic-hero {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.we-topic-hero .we-page-title {
    font-size: 1.8rem;
    line-height: 1.25;
    margin: 0 0 0.5rem;
}

.we-topic-hero .we-page-subtitle {
    margin: 0.25rem 0 0;
    max-width: 36rem;
    color: #6b7280;
    font-size: 0.95rem;
}

.we-section-header {
    margin-bottom: 1.5rem;
}

.we-section-header--list {
    margin-top: 2.5rem;
}

.we-section-title {
    margin: 0;
    font-size: 1.3rem;
}

.we-section-subtitle {
    margin: 0.35rem 0 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.we-empty-state {
    margin: 2.5rem 0;
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* ========== Archive Page Layout ========== */

.we-topics-archive {
    background: #faf9f7;
}

.we-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Category Section - 밝은 베이지 톤 */
.we-section-categories {
    padding: 48px 0 56px;
    background: linear-gradient(180deg, #faf9f7 0%, #f5f3ef 100%);
}

/* Topics List Section - 흰색 배경 + 구분선 */
.we-section-topics {
    padding: 48px 0 80px;
    background: #ffffff;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ========== Archive Header ========== */

.we-archive-header {
    text-align: center;
    margin-bottom: 2rem;
}

.we-archive-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.we-archive-subtitle {
    font-size: 1.0625rem;
    color: #64748b;
    margin: 0;
    opacity: 0.85;
}

.we-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1.75rem;
}

/* ========== Category Grid - Premium Design ========== */

.we-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .we-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .we-category-grid {
        grid-template-columns: 1fr;
    }
}

/* Category Card - 아이콘 + 여백 증가 */
.we-category-card {
    display: flex;
    flex-direction: column;
    padding: 24px 28px;
    border-radius: 16px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.we-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.we-category-card:hover::before {
    transform: scaleX(1);
}

.we-category-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.12);
    transform: translateY(-4px);
}

.we-category-card.is-active {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f3ff 100%);
}

.we-category-card.is-active::before {
    transform: scaleX(1);
}

/* Category Icon */
.we-category-icon {
    font-size: 1.75rem;
    margin-bottom: 0.625rem;
    filter: grayscale(0.2);
}

.we-category-card:hover .we-category-icon {
    filter: grayscale(0);
    transform: scale(1.05);
}

.we-category-name {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.we-category-card:hover .we-category-name {
    color: #1d4ed8;
}

.we-category-desc {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
    color: #64748b;
}

/* ========== Topic Card List - Premium Design ========== */

.we-topic-card-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.we-topic-card {
    list-style: none;
}

/* Topic Card Inner */
.we-topic-card__inner {
    display: flex;
    gap: 1.5rem;
    padding: 28px 32px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.we-topic-card__inner:hover {
    border-color: #c7d2fe;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
    transform: translateY(-2px);
}

/* Hero Image */
.we-card-hero {
    flex-shrink: 0;
    width: 180px;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
}

.we-card-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.we-topic-card__inner:hover .we-card-hero-img {
    transform: scale(1.05);
}

/* Topic Card Body */
.we-topic-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* Meta Row: Category + Levels */
.we-topic-card__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.625rem;
}

.we-topic-card__category {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* Level Chips Group */
.we-topic-card__levels {
    display: flex;
    gap: 0.375rem;
}

.we-level-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.1875rem 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1.5px solid;
    letter-spacing: 0.01em;
}

/* Title - 강조 */
.we-topic-card__title {
    margin: 0 0 0.625rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.we-topic-card__inner:hover .we-topic-card__title {
    color: #3b82f6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Excerpt - 잡지형 */
.we-topic-card__excerpt {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #64748b;
    max-height: 3.3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ========== Level Badge Colors ========== */

.we-level-a1 {
    background: #d1fae5;
    border-color: #10b981;
    color: #047857;
}

.we-level-a2 {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #b45309;
}

.we-level-b1 {
    background: #dbeafe;
    border-color: #3b82f6;
    color: #1d4ed8;
}

.we-level-b2 {
    background: #ede9fe;
    border-color: #8b5cf6;
    color: #6d28d9;
}

/* ========== Responsive - Topic Cards ========== */

@media (max-width: 768px) {
    .we-section-categories {
        padding: 32px 0 40px;
    }

    .we-section-topics {
        padding: 32px 0 56px;
    }

    .we-archive-title {
        font-size: 2rem;
    }

    .we-topic-card__inner {
        flex-direction: column;
        padding: 20px 24px;
    }

    .we-card-hero {
        width: 100%;
    }

    .we-topic-card__title {
        font-size: 1.125rem;
    }

    .we-topic-card__excerpt {
        font-size: 0.9rem;
    }
}

background: #f9fafb;
}

/* 移댄뀒怨좊━ 移?*/

.we-topic-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 0.6rem;
}

.we-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.12rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1.4;
    border: 1px solid transparent;
    white-space: nowrap;
}

.we-chip--category {
    background: #eff6ff;
    border-color: #dbeafe;
    color: #1d4ed8;
}

/* ?쒕ぉ & ?붿빟 */

.we-topic-card__title {
    margin: 0 0 0.35rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.we-topic-card__excerpt {
    margin: 0 0 0.7rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #4b5563;
}

/* ?덈꺼 移?(A1/A2/B1/B2) */

.we-topic-card__levels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.we-level-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.16rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    line-height: 1.4;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #4b5563;
}

/* 湲 ?덉쓬 */
.we-level-chip.is-available {
    border-color: #4ade80;
    background: #dcfce7;
    color: #166534;
    font-weight: 500;
}

/* 湲 ?놁쓬 */
.we-level-chip.is-missing {
    border-style: dashed;
    border-color: #e5e7eb;
    background: #f9fafb;
    color: #9ca3af;
}

/* ========== ?섏씠吏?ㅼ씠??========== */

.we-pagination {
    margin-top: 2rem;
}

.we-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.1rem;
    height: 2.1rem;
    margin-right: 0.4rem;
    border-radius: 999px;
    font-size: 0.85rem;
    text-decoration: none;
    border: 1px solid transparent;
    color: #4b5563;
}

.we-pagination .page-numbers:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
}

.we-pagination .page-numbers.current {
    border-color: #111827;
    background: #111827;
    color: #ffffff;
}

/* ========== Single Wisdom Topic (?덈꺼 ?? ========== */

/* ?곷떒 ?ㅻ뜑??global.css + single-wisdom_topic.php 援ъ“??留욎떠 理쒖냼留?*/

.we-topic-single {
    padding: 2.5rem 0 4rem;
}

.we-topic-single-header {
    margin-bottom: 1.75rem;
}

.we-topic-single-title {
    margin: 0 0 0.35rem;
    font-size: 1.7rem;
    line-height: 1.25;
}

.we-topic-single-meta {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

/* ?덈꺼 ??諛?*/

.we-level-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: #f3f4f6;
    margin-bottom: 1.5rem;
}

.we-level-tab {
    border: none;
    background: transparent;
    border-radius: 999px;
    padding: 0.25rem 0.9rem;
    font-size: 0.85rem;
    cursor: pointer;
    color: #4b5563;
    line-height: 1.4;
    transition:
        background-color 0.15s ease,
        color 0.15s ease;
}

.we-level-tab:hover {
    background: #e5e7eb;
}

.we-level-tab.is-active {
    background: #111827;
    color: #ffffff;
    font-weight: 500;
}

/* 레벨 패널 공통 */

.we-level-panels {
    overflow: hidden;
    transition: height 0.35s ease;
}

.we-level-panel {
    display: none;
}

.we-level-panel.is-active {
    display: block;
}

/* ???듭씪 ???ш린??A1/A2/B1/B2 ??臾몄젣 ?닿껐 */
.we-level-panel__inner {
    max-width: 740px;
    margin: 0 auto;
}

/* ?⑤꼸 ?대? ??댄룷??global.css??留↔린怨? 留덉쭊留??뺣━ */

.we-level-panel__inner>*:first-child {
    margin-top: 0;
}

.we-level-panel__inner h2,
.we-level-panel__inner h3,
.we-level-panel__inner h4 {
    margin-top: 1.4rem;
    margin-bottom: 0.6rem;
}

.we-level-panel__inner p {
    margin: 0 0 0.9rem;
    line-height: 1.6;
    font-size: 0.96rem;
}

.we-level-panel__inner ul,
.we-level-panel__inner ol {
    padding-left: 1.25rem;
    margin: 0.2rem 0 1rem;
}

.we-level-panel__inner li {
    margin-bottom: 0.4rem;
}

/* Hero & Inline Images (Story-tone optimized) */

.we-hero-img {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    object-fit: cover;
    width: 100%;
    margin-bottom: 1.5rem;
}

.we-inline-img {
    margin: 24px auto;
    display: block;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* 鍮??⑤꼸 (?꾩쭅 ?묒꽦 ?????덈꺼) */

.we-level-panel--empty {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 0.75rem;
    border: 1px dashed #e5e7eb;
    background: #f9fafb;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* ?섎떒 ?ㅻ퉬寃뚯씠??(?ㅼ쓬/?댁쟾 ?좏뵿) */

.we-topic-single-nav {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.we-topic-single-nav a {
    color: #111827;
    text-decoration: none;
}

.we-topic-card__title {
    font-size: 1.1rem;
}

.we-topic-hero .we-page-title {
    font-size: 2rem;
}
}

/* ========== New Single Template Styles ========== */

/* Force center alignment for wisdom topic pages */
body.single-wisdom_topic .we-main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto !important;
}

/* Topic wrapper */
.we-topic {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: #ffffff;
}

/* Hero image */
.we-topic-hero {
    margin-bottom: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.we-topic-hero img {
    width: 100%;
    height: auto;
    display: block;
}

/* Header */
.we-topic-header {
    margin-bottom: 2.5rem;
}

.we-topic-labels {
    margin-bottom: 1rem;
}

.we-topic-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #93c5fd;
    color: #1e40af;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
    transition: all 0.2s ease;
}

.we-topic-category:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.we-topic-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin: 0;
    color: #111827;
    font-weight: 700;
}

/* Level tabs navigation */
.we-level-tab-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    background: #f9fafb;
    padding: 0.75rem;
    border-radius: 16px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.we-level-tab-nav li {
    padding: 0.625rem 1.5rem;
    background: #ffffff;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6b7280;
    transition: all 0.25s ease;
    border: 2px solid transparent;
}

.we-level-tab-nav li:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.we-level-tab-nav li.active {
    background: #111827;
    color: #ffffff;
    border-color: #111827;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Level panels container */
.we-topic-levels-wrapper {
    margin-bottom: 3rem;
}

.we-topic-levels {
    position: relative;
    overflow: visible;
    transition: height 0.35s ease;
}

.we-level-panel {
    display: none;
    padding-bottom: 4rem;
}

.we-level-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Level header */
.we-level-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.we-level-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 2px solid #4ade80;
    color: #15803d;
    font-weight: 700;
    border-radius: 999px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.we-level-subtitle {
    font-style: italic;
    color: #6b7280;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Level content */
.we-level-content {
    max-width: 740px;
    line-height: 1.75;
    font-size: 1.0625rem;
    color: #374151;
    padding-bottom: 3rem;
}

.we-level-content h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #111827;
    font-weight: 700;
    line-height: 1.3;
}

.we-level-content h3 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.625rem;
    color: #1f2937;
    font-weight: 600;
}

.we-level-content h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #374151;
    font-weight: 600;
}

.we-level-content p {
    margin-bottom: 1.25rem;
}

.we-level-content ul,
.we-level-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.we-level-content li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.we-level-content hr {
    margin: 2.5rem 0;
    border: none;
    border-top: 2px solid #e5e7eb;
}

/* Key Points */
.we-level-content h2:has(+ .we-bullets),
.we-level-content h3:has(+ .we-bullets) {
    color: #1e40af;
}

.we-bullets {
    background: #f8fafc;
    border-left: 4px solid #3b82f6;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.we-bullets li {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: #1f2937;
    font-size: 1.0625rem;
    line-height: 1.6;
    list-style: none;
}

.we-bullets li::before {
    content: "▶";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: #3b82f6;
    font-size: 0.75rem;
}

/* Words to Know (Glossary) */
.we-level-content h2:has(+ .we-glossary),
.we-level-content h3:has(+ .we-glossary) {
    color: #7c3aed;
}

.we-glossary {
    background: #faf5ff;
    border: 2px solid #e9d5ff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.we-glossary dt {
    font-weight: 700;
    font-size: 1.0625rem;
    margin-top: 1rem;
    margin-bottom: 0;
    color: #6b21a8;
    display: inline;
}

.we-glossary dt:first-child {
    margin-top: 0;
}

.we-glossary dd {
    display: inline;
    margin-left: 0;
    margin-bottom: 0;
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
}

.we-glossary dd::after {
    content: "";
    display: block;
    margin-bottom: 0.75rem;
}

/* Pronunciation styling */
.we-pronunciation {
    color: #6b7280;
    font-weight: 400;
    font-size: 0.9375rem;
    font-style: italic;
}

/* Inline image */
.we-topic-inline {
    margin: 3rem 0;
    text-align: center;
}

.we-topic-inline img {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Questions section */
.we-topic-questions {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 3px solid #e5e7eb;
}

.we-questions-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111827;
    font-weight: 700;
}

.we-question-level {
    margin-bottom: 1.5rem;
}

/* Enhanced Accordion */
.we-accordion-trigger {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    width: 100%;
    text-align: left;
    border: 2px solid #e5e7eb;
    font-weight: 600;
    font-size: 1.0625rem;
    color: #111827;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.25s ease;
    position: relative;
}

.we-accordion-trigger:hover {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-color: #d1d5db;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.we-accordion-trigger::after {
    content: "▼";
    font-size: 0.875rem;
    color: #6b7280;
    transition: transform 0.25s ease, color 0.25s ease;
}

.we-accordion-trigger.active {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
    color: #1e40af;
}

.we-accordion-trigger.active::after {
    transform: rotate(180deg);
    color: #1e40af;
}

.we-accordion-panel {
    display: none;
    padding: 1.25rem 1.5rem 1.5rem 1.5rem;
    border-left: 3px solid #93c5fd;
    border-bottom: 3px solid #93c5fd;
    border-right: 3px solid #93c5fd;
    margin-top: 0.25rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    background: #ffffff;
    border-radius: 0 8px 8px 8px;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.04);
}

.we-accordion-panel.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.we-accordion-panel h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1f2937;
    font-weight: 600;
}

.we-accordion-panel h3:first-child {
    margin-top: 0;
}

.we-q-list {
    padding-left: 2rem;
    margin: 1.25rem 0;
}

.we-q-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #374151;
}

.we-q-question {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.we-mcq-options {
    list-style: none;
    padding-left: 1.5rem;
    margin-top: 0.75rem;
}

.we-mcq-options li {
    margin-bottom: 0.5rem;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.we-mcq-options li::before {
    content: "○";
    position: absolute;
    left: 0;
    color: #9ca3af;
}

.we-q-discussion {
    padding: 1.5rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    font-style: italic;
    color: #92400e;
    line-height: 1.7;
    margin: 1.5rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .we-topic {
        padding: 2rem 1rem;
    }

    .we-topic-title {
        font-size: 2rem;
    }

    .we-level-tab-nav li {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .we-level-content {
        font-size: 1rem;
    }

    .we-level-content h2 {
        font-size: 1.5rem;
    }
}

/* ========== Level Badge Colors ========== */

.we-level-a1 {
    border-color: #10b981 !important;
    background: #d1fae5 !important;
    color: #047857 !important;
}

.we-level-a2 {
    border-color: #f59e0b !important;
    background: #fef3c7 !important;
    color: #b45309 !important;
}

.we-level-b1 {
    border-color: #3b82f6 !important;
    background: #dbeafe !important;
    color: #1d4ed8 !important;
}

.we-level-b2 {
    border-color: #8b5cf6 !important;
    background: #ede9fe !important;
    color: #6d28d9 !important;
}

/* Card body spacing */
.we-topic-card__body {
    padding: 0.5rem 0;
}

/* Card Hero Image */
.we-card-hero {
    margin-bottom: 0.75rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.we-card-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== Category Cards (Enhanced) ========== */

.we-category-card {
    display: block;
    padding: 1.5rem 1.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 2px solid #e5e7eb;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.we-category-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
}

.we-category-card.is-active {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.we-category-name {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #111827;
}

.we-category-card:hover .we-category-name {
    color: #1d4ed8;
}

.we-category-desc {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
}

/* ========== All Topics Section (tagDiv Newspaper Editorial Style) ========== */

.we-all-topics {
    padding: 56px 0 80px;
    background: #f7f7f9;
}

.we-all-topics__header {
    margin-bottom: 40px;
    text-align: center;
}

.we-all-topics__header .we-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
}

.we-all-topics__header .we-section-subtitle {
    margin: 0;
    font-size: 1rem;
    color: #64748b;
}

/* 2-Column Grid Layout */
.we-all-topics__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 1100px) {
    .we-all-topics__grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 64px;
    }
}

/* Editorial Topic Card */
.we-topic-card--editorial {
    position: relative;
    padding: 32px 0 32px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.we-topic-card--editorial:last-child {
    border-bottom: none;
}

/* Left Color Bar (Category indicator) */
.we-topic-card--editorial::before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 32px;
    width: 4px;
    border-radius: 999px;
    background: #e2e8f0;
    transition: background 0.2s ease;
}

/* Category-specific color bars */
.we-topic-card--editorial.category-mind-psychology::before {
    background: #a855f7;
}

.we-topic-card--editorial.category-health-better-living::before {
    background: #f97316;
}

.we-topic-card--editorial.category-history-civilization::before {
    background: #eab308;
}

.we-topic-card--editorial.category-science-nature::before {
    background: #22c55e;
}

.we-topic-card--editorial.category-money-modern-work::before {
    background: #14b8a6;
}

.we-topic-card--editorial.category-technology-future::before {
    background: #3b82f6;
}

.we-topic-card--editorial.category-stories-life-wisdom::before {
    background: #ec4899;
}

.we-topic-card--editorial.category-great-lives-people::before {
    background: #f59e0b;
}

.we-topic-card--editorial.category-world-global-society::before {
    background: #6366f1;
}

/* Meta Row */
.we-topic-card--editorial .we-topic-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.we-topic-card--editorial .we-topic-card__category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.we-topic-card--editorial .we-topic-card__levels {
    display: flex;
    gap: 6px;
}

/* Level Badge - Editorial Style */
.we-topic-card--editorial .we-level-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    border: none;
}

/* Title - Large, Bold */
.we-topic-card--editorial .we-topic-card__title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 12px;
    color: #1e293b;
}

.we-topic-card--editorial .we-topic-card__title a {
    color: inherit;
    text-decoration: none;
}

.we-topic-card--editorial .we-topic-card__title a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Summary - Magazine Style */
.we-topic-card--editorial .we-topic-card__summary {
    margin: 0 0 16px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
    max-width: 40rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer Meta */
.we-topic-card--editorial .we-topic-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8125rem;
    color: #94a3b8;
}

.we-topic-card--editorial .we-topic-card__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Pagination */
.we-all-topics__pagination {
    margin-top: 48px;
    text-align: center;
}

.we-all-topics__pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.we-all-topics__pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    transition: all 0.2s ease;
}

.we-all-topics__pagination .page-numbers:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.we-all-topics__pagination .page-numbers.current {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .we-all-topics {
        padding: 40px 0 60px;
    }

    .we-all-topics__header {
        margin-bottom: 32px;
    }

    .we-topic-card--editorial {
        padding: 24px 0 24px 20px;
    }

    .we-topic-card--editorial .we-topic-card__title {
        font-size: 1.1875rem;
    }

    .we-topic-card--editorial .we-topic-card__summary {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
}

/* ========== Single Topic Page (Editorial Style) ========== */

.we-topic-single {
    background: #ffffff;
}

/* ---------- Hero Meta Bar ---------- */

.we-topic-hero {
    padding: 48px 0 36px;
    background: linear-gradient(180deg, #f7f7f9 0%, #fafafa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.we-topic-hero__category {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6366f1;
    margin-bottom: 8px;
}

.we-topic-hero__title-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.we-topic-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.we-topic-hero__levels {
    display: flex;
    gap: 6px;
}

.we-topic-hero__lead {
    max-width: 720px;
    margin: 0 0 16px;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #475569;
}

.we-topic-hero__meta {
    font-size: 0.875rem;
    color: #94a3b8;
    display: flex;
    gap: 20px;
}

/* ---------- Level Tabs Bar ---------- */

.we-topic-levels-nav {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.we-topic-levels__list {
    display: flex;
    gap: 8px;
    padding: 14px 0;
    margin: 0;
    list-style: none;
}

.we-topic-levels__item {
    margin: 0;
}

.we-topic-levels__button {
    padding: 8px 18px;
    border-radius: 999px;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    font-size: 0.875rem;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.we-topic-levels__button:hover {
    border-color: #cbd5e1;
    color: #1e293b;
}

.we-topic-levels__button.is-active {
    border-color: transparent;
    color: #ffffff;
}

/* Level-specific active colors */
.we-topic-levels__button.we-level-a1-btn.is-active {
    background: #10b981;
}

.we-topic-levels__button.we-level-a2-btn.is-active {
    background: #f59e0b;
}

.we-topic-levels__button.we-level-b1-btn.is-active {
    background: #3b82f6;
}

.we-topic-levels__button.we-level-b2-btn.is-active {
    background: #8b5cf6;
}

/* === 싱글 Topic 레이아웃 (데스크탑 2컬럼/가운데 정렬/sticky 사이드바) === */

.we-topic-layout {
    padding: 40px 0 80px;
    background: #ffffff;
}

.we-topic-layout__grid {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1fr);
    column-gap: 48px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 2rem;
}

.we-topic-main {
    max-width: 720px;
}

/* 사이드바 sticky (데스크탑) */
.we-topic-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

/* 노트북/태블릿 이하 → 1컬럼 */
@media (max-width: 1200px) {
    .we-topic-layout__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .we-topic-main,
    .we-topic-sidebar {
        max-width: 720px;
        margin: 0 auto;
    }

    .we-topic-sidebar {
        position: static;
        margin-top: 32px;
    }
}

/* 모바일 좌우 여백 */
@media (max-width: 768px) {
    .we-topic-layout {
        padding: 28px 0 60px;
    }

    .we-topic-layout__grid {
        padding: 0 16px;
    }
}

/* ---------- Level Panels ---------- */

.we-topic-content .we-level-panel {
    display: none;
}

.we-topic-content .we-level-panel.is-active {
    display: block;
}

.we-level-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.we-level-indicator {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #ffffff;
}

.we-level-indicator.we-level-a1 {
    background: #10b981;
}

.we-level-indicator.we-level-a2 {
    background: #f59e0b;
}

.we-level-indicator.we-level-b1 {
    background: #3b82f6;
}

.we-level-indicator.we-level-b2 {
    background: #8b5cf6;
}

.we-level-subtitle {
    margin: 10px 0 0;
    font-size: 0.9375rem;
    color: #64748b;
    font-style: italic;
}

/* ---------- Article Body ---------- */

.we-article-body {
    font-size: 1rem;
    line-height: 1.75;
    color: #374151;
}

.we-article-body p {
    margin: 0 0 1.25em;
}

.we-article-body h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2em 0 0.75em;
}

.we-article-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1.5em 0 0.5em;
}

.we-article-body ul,
.we-article-body ol {
    margin: 0 0 1.25em;
    padding-left: 1.5em;
}

.we-article-body li {
    margin-bottom: 0.5em;
}

.we-article-body blockquote {
    margin: 1.5em 0;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border-left: 4px solid #6366f1;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #475569;
}

/* ---------- Q&A Section ---------- */

.we-level-qa-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

.we-topic-questions {
    margin-bottom: 24px;
}

.we-section-subtitle {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 16px;
}

.we-questions-content {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #475569;
}

/* Practice Questions 내부 서브타이틀 (A1 – True/False 등) */
.we-questions-content h2,
.we-questions-content h3,
.we-questions-content h4 {
    display: block !important;
    font-size: 1rem;
    font-weight: 700;
    color: #10b981;
    margin: 1.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.we-questions-content h2:first-child,
.we-questions-content h3:first-child,
.we-questions-content h4:first-child {
    margin-top: 0;
}

/* ---------- Sidebar Cards ---------- */

.we-sidebar-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 20px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.we-sidebar-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.we-sidebar-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    color: #64748b;
}

.we-sidebar-card__list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.we-sidebar-card__list strong {
    color: #475569;
}

.we-sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.we-sidebar-links li {
    margin-bottom: 10px;
}

.we-sidebar-links a {
    font-size: 0.9rem;
    color: #3b82f6;
    text-decoration: none;
    line-height: 1.4;
}

.we-sidebar-links a:hover {
    text-decoration: underline;
}

/* ---------- Responsive ---------- */

@media (max-width: 768px) {
    .we-topic-hero {
        padding: 32px 0 24px;
    }

    .we-topic-hero__title {
        font-size: 1.75rem;
    }

    .we-topic-hero__lead {
        font-size: 1rem;
    }

    .we-topic-layout {
        padding: 32px 0 56px;
    }

    .we-level-header {
        margin-bottom: 20px;
    }
}

/* ========== A+ Polish Fixes (v2.9) ========== */

/* 1) Hero meta 아래 간격 증가 */
.we-topic-hero__meta {
    margin-bottom: 24px;
}

/* 2) Level indicator 크기/투명도 조정 */
.we-level-indicator {
    font-size: 0.75rem;
    opacity: 0.85;
}

/* 3) 본문 h2 top margin 줄이기 */
.we-article-body h2,
.we-level-content h2 {
    margin-top: 1.6em;
}

/* 4) Key Points bullet list 아래 여백 */
.we-bullets,
.we-article-body ul,
.we-level-content ul {
    margin-bottom: 1.4em;
}

/* 5) Words to Know 단어-정의 간격 개선 */
.we-glossary dt {
    font-weight: 800;
}

.we-glossary dd {
    line-height: 1.7;
}

.we-glossary dd::after {
    margin-bottom: 0.875rem;
}

/* 6) Practice Questions 헤딩 강화 */
.we-section-subtitle,
.we-questions-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

/* 7) Answer Key 박스 - 그림자 제거, border만 */
.we-accordion-panel {
    box-shadow: none;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

/* Answer Key 내부 제목 (A1 - True/False 등) 보이게 */
.we-accordion-panel h2,
.we-accordion-panel h3,
.we-accordion-panel h4 {
    display: block !important;
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
    margin: 1.25rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.we-accordion-panel h2:first-child,
.we-accordion-panel h3:first-child,
.we-accordion-panel h4:first-child {
    margin-top: 0;
}

/* Answer Key 리스트 들여쓰기 수정 */
.we-accordion-panel ol,
.we-accordion-panel ul {
    padding-left: 1.5rem;
    margin: 0.75rem 0 1rem;
}

.we-accordion-panel li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* 8) Words to Know와 Questions 사이 불필요한 hr/간격 제거 */
.we-level-content hr+hr,
.we-level-content hr+hr+hr {
    display: none;
}

.we-level-content hr {
    margin: 2rem 0;
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* Q&A 섹션 상단 간격 조정 */
.we-level-qa-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.we-topic-questions {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

/* 9) 사이드바 카드 폰트 크기 */
.we-sidebar-card {
    font-size: 0.92rem;
}

.we-sidebar-card__list {
    font-size: 0.9rem;
}

/* 모바일 sticky 탭 */
@media (max-width: 768px) {
    .we-topic-levels-nav {
        position: sticky;
        top: 0;
        z-index: 100;
    }
}

/* ========== Category Hub Page (taxonomy-wisdom_category) ========== */

.we-topiccat {
    background: #ffffff;
}

/* Category Hero */

.we-topiccat-hero {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, #f7f7f9 0%, #fafafa 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.we-topiccat-hero__kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin: 0 0 12px;
}

.we-topiccat-hero__title-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.we-topiccat-hero__icon {
    font-size: 2.5rem;
}

.we-topiccat-hero__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    letter-spacing: -0.02em;
}

.we-topiccat-hero__subtitle {
    font-size: 1.0625rem;
    font-weight: 500;
    color: #475569;
    margin: 0 0 12px;
}

.we-topiccat-hero__description {
    max-width: 720px;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.we-topiccat-hero__description p {
    margin: 0 0 0.75em;
}

.we-topiccat-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6366f1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.we-topiccat-hero__back:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Category List Section */

.we-topiccat-list {
    padding: 48px 0 80px;
    background: #ffffff;
}

.we-topiccat-list__header {
    text-align: center;
    margin-bottom: 40px;
}

.we-topiccat-list__header .we-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}

.we-topiccat-list__header .we-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Grid - 2열 데스크탑, 1열 모바일 (we-all-topics__grid 재사용) */

.we-topiccat-list__grid {
    max-width: 1000px;
    margin: 0 auto;
}

/* Responsive */

@media (max-width: 768px) {
    .we-topiccat-hero {
        padding: 32px 0 28px;
    }

    .we-topiccat-hero__icon {
        font-size: 2rem;
    }

    .we-topiccat-hero__title {
        font-size: 1.75rem;
    }

    .we-topiccat-list {
        padding: 32px 0 56px;
    }
}

/************************************************************
 * Wisdom Topics – Category Page Fine-tuning Patch
 * 대상: /topics-category/* (카테고리 아카이브)
 ************************************************************/

/* 1) Category Hero: 제목/백링크 간격 & 라인높이 조정 */
.we-topiccat-hero__title {
    font-size: 2rem;
    /* 기존과 동일 or 살짝 키워도 OK */
    font-weight: 800;
    line-height: 1.25;
    /* 조금 더 촘촘하게 */
    margin: 0 0 12px;
    /* 제목 아래 여백 살짝 추가 */
}

.we-topiccat-hero__back {
    display: inline-block;
    margin-top: 12px;
    /* 제목과 여유 간격 확보 */
    font-size: 0.85rem;
    color: #4f46e5;
    text-decoration: none;
}

.we-topiccat-hero__back:hover {
    text-decoration: underline;
}

/* 2) "Topics in [Category]" 헤더 타이포 & 간격 강화 */
.we-topiccat-list__header .we-section-title {
    font-size: 1.75rem;
    /* 살짝 키워서 섹션 헤더 강조 */
    font-weight: 800;
    margin-bottom: 4px;
}

.we-topiccat-list__header .we-section-subtitle {
    margin-bottom: 24px;
    /* 리스트와의 간격 확보 */
    color: #6b7280;
}

/* 3) 에디토리얼 카드 좌측 컬러 바를 살짝 더 은은하게 */
.we-topiccat-list .we-topic-card::before {
    width: 3px;
    /* 4px → 3px 정도로 슬림하게 */
    opacity: 0.75;
    /* 살짝 투명하게 해서 시선 분산 줄이기 */
}

/* (선택) 오른쪽 컬럼 카드의 컬러 바를 더 은은하게 만들고 싶을 때 */
@media (min-width: 1100px) {
    .we-topiccat-list__grid>article:nth-child(2n)::before {
        opacity: 0.5;
    }
}

/* 4) Updated 날짜(footer)와 요약 사이 간격 조정 */
.we-topic-card__footer {
    margin-top: 8px;
    /* 위쪽으로 조금 끌어올려 시각적 연결감 ↑ */
    font-size: 0.8rem;
    color: #6b7280;
}

/* 5) 전체 카테고리 레이아웃 살짝 중앙 정렬 감 강화 (옵션) */
.we-topiccat-hero .we-container,
.we-topiccat-list .we-container {
    max-width: 1120px;
    /* All Topics와 동일 기준이면 그대로 사용 */
    margin: 0 auto;
}