/* =========================================================
   Korvest Lab Website CSS
   Extracted and cleaned from mystyle.css
   Purpose: public Korvest Lab website + investment note preview
   ========================================================= */
:root {
    /*--korvest-green: #12372A;*/
    /*--korvest-gold: #D4AF37;*/
    --korvest-paper: #ffffff;
    --korvest-bg: #f7f5ef;
    --korvest-ink: #1f2933;
    --korvest-muted: #6b7280;
    --korvest-line: #e5e0d6;

    --korvest-green: #2E7D32;
    --korvest-green-dark: #1B5E20;
    --korvest-green-light: #66BB6A;

    --korvest-gold: #C9A227;
    --korvest-gray: #666666;
}


* {
    box-sizing: border-box;
}

body.note-preview-page {
    margin: 0;
    background: var(--korvest-bg);
    color: var(--korvest-ink);
    font-family: "Noto Sans KR", "Segoe UI", Arial, sans-serif;
    line-height: 1.8;
}

/*.note-page {*/
/*    max-width: 980px;*/
/*    margin: 0 auto;*/
/*    padding: 24px 18px 64px;*/
/*    background: var(--korvest-paper);*/
/*}*/

/* top report band */
.report-header {
    display: grid;
    grid-template-columns: 70px 240px 1fr 150px;
    align-items: center;
    gap: 16px;
    background: var(--korvest-green);
    border-bottom: 4px solid var(--korvest-gold);
    padding: 14px 20px;
    margin-bottom: 32px;
}

.report-shield {
    height: 56px;
    width: auto;
    display: block;
}

.report-publisher {
    color: var(--korvest-gold);
    line-height: 1.15;
}

.publisher-ko {
    font-size: 1rem;
    font-weight: 700;
}

.publisher-en {
    font-size: .9rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.publisher-sub {
    font-size: .6rem;
    letter-spacing: .12em;
}

.report-series {
    text-align: center;
    color: white;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: .18em;
    white-space: nowrap;
}

.report-meta {
    text-align: right;
    color: #E8E0C8;
    font-size: .8rem;
    line-height: 1.5;
}

.report-url {
    color: var(--korvest-gold);
    font-weight: 700;
}

/* note title area */
.note-header {
    margin-bottom: 28px;
}

.note-no {
    color: var(--korvest-muted);
    font-size: .95rem;
    margin-bottom: 10px;
}

.note-title {
    font-size: 2.7rem;
    line-height: 1.22;
    margin: 0 0 14px;
    font-weight: 800;
    text-align: center;
}

.note-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.note-subtitle::after {
    content: "✦ ✦ ✦ ✦ ✦ ✦ ✦";
    display: block;

    color: var(--korvest-gold);

    font-size: 0.9rem;
    letter-spacing: 0.4rem;

    margin-top: 12px;
}

.note-summary {
    font-family:
        "Noto Serif KR",
        "Nanum Myeongjo",
        "Batang",
        serif;

    font-size: 1.2rem;
    line-height: 2.0;

    text-align: center;
    max-width: 700px;
    margin: 48px auto 56px auto;

    color: #444;

    border-left: none;
    padding-left: 0;

    font-style: italic;
}

.note-meta {
    color: var(--korvest-muted);
    font-size: .95rem;
}

.hero-figure {
    margin: 0 0 28px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-caption {
    text-align: center;
    font-size: .9rem;
    color: var(--korvest-muted);
    margin-top: 8px;
}

.author-box {
    color: var(--korvest-muted);
    font-size: .95rem;
    margin: 20px 0;
}


@media (max-width: 640px) {
    .note-page {
        padding: 12px;
    }

    .report-header {
        grid-template-columns: 56px 1fr;
        grid-template-areas:
            "logo series"
            "publisher publisher"
            "meta meta";
        gap: 8px 12px;
        padding: 12px 14px;
    }

    .report-logo {
        grid-area: logo;
    }

    .report-series {
        grid-area: series;
        font-size: 1.45rem;
        letter-spacing: .12em;
    }

    .report-publisher {
        grid-area: publisher;
        text-align: center;
        padding-top: 6px;
        border-top: 1px solid rgba(212,175,55,.35);
    }

    .report-meta {
        grid-area: meta;
        text-align: center;
    }

    .report-shield {
        height: 46px;
    }

    .note-title {
        font-size: 2rem;
    }

    .note-subtitle {
        font-size: 1.15rem;
    }
}

/*Note list panel*/
 .note-list-item {
    display: flex;
    width: 100%;

    text-decoration: none;
    color: inherit;

    padding: 8px 10px;
}

.note-list-item:hover {
    background: #eef7f0;
}


/* ==================================================
   Korvest Page containers
   ================================================== */
.page-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px 40px;
}

.content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.app-container {
    width: 100%;
}

/* ==================================================
   Korvest Dashboard Layout
   ================================================== */

.dashboard-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 24px;
}

/* ==================================================
   Korvest Homepage Layout
   ================================================== */

.korvest-home-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 24px;

    margin: 0 auto;
    padding: 0 24px 40px;
}

/* ==================================================
   Korvest Lab Navigation layout
   ================================================== */
.korvest-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #12372A;
    border-bottom: 3px solid #D4AF37;

    min-height: 68px;
    margin-bottom: 18px;
}

.korvest-navbar .page-container {
    display: flex;
    justify-content: space-between;
    align-items: center;

    min-height: 68px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.korvest-navbar .korvest-title-block {
    display: flex;
    align-items: center;
    gap: 8px;
    /*margin-left: 20px;*/

    text-decoration: none;
    background: transparent;
}

.korvest-navbar .korvest-shield {
    height: 52px;
    width: auto;
}

.korvest-navbar .korvest-title-text {
    color: #D4AF37;
    line-height: 1.08;
}

.korvest-navbar .korvest-title-ko {
    font-size: 1rem;
    font-weight: 800;
}

.korvest-navbar .korvest-title-en {
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.korvest-navbar .korvest-title-sub {
    font-size: .62rem;
    letter-spacing: .12em;
}

.korvest-nav-menu {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Main layout gap: submenu vs main panel */
.korvest-main,
.main-content,
.home-layout {
    column-gap: 28px;
}

/* Submenu list cleanup */
.submenu-panel ul,
.submenu-panel li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.submenu-panel a {
    text-decoration: none;
}

.submenu-panel a:hover {
    text-decoration: underline;
}

.editor-container {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

/*korvest_motto*/
.korvest-motto {
    text-align: center;

    color: #3f5148;

    font-size: 1.1rem;
    font-weight: 600;

    letter-spacing: 0.02em;

    margin-bottom: 1.5rem;
}

/*Body Tags and Decoration*/
.note-body {
    /*max-width: 1000px;*/
    margin: 0 auto;
    /*padding: 0 1rem;*/
}


.note-body section {
    margin-bottom: 2.0rem;
}

.note-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.note-body h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.note-body p {
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.note-body question {
    font-weight: 400;
 }

.note-figure {
    margin: 2rem 0;
}

.note-figure img {
    width: 100%;
    border-radius: 10px;
}

.note-figure figcaption {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
}

.note-quote {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;

    font-size: 1.25rem;
    line-height: 1.8;
    font-weight: 700;

    color: var(--korvest-green-dark);

    border-left: 4px solid var(--korvest-gold);
    border-right: 4px solid var(--korvest-gold);

    padding: 1rem 2rem;
}

.note-footer {
    text-align: center;
    padding-bottom: 1.0rem;
}

.note-question {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0;
  color: var(--korvest-green-dark);
}

/* ==================================================
   Callout Box
   ================================================== */

.note-callout {
    margin: 1.5rem 0;

    padding: 1rem 1.25rem;

    background: #f4f8f4;

    border-left: 5px solid var(--korvest-green);

    border-radius: 6px;

    color: var(--korvest-ink);

    line-height: 1.8;
}

.note-callout strong {
    color: var(--korvest-green-dark);
}

.note-lead {
    max-width: 650px;
    margin: 2.5rem auto;
    text-align: center;
    line-height: 2.0;
}
/* ==================================================
   KPS Table Wrapper
   ================================================== */

.kps-table-wrap {
    margin: 2rem 0;

    overflow-x: auto;

    border-radius: 8px;
}

.note-final {
    max-width: 850px;

    margin: 3rem auto;
    padding-top: 1.5rem;

    text-align: center;

    font-size: 1.25rem;
    font-weight: 700;

    color: var(--korvest-green-dark);

    border-top: 2px solid var(--korvest-gold);
}
/* ==================================================
   Generic tables used in Investment Notes
   ================================================== */

.note-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
}

.note-table th {
    background: #f4f6f5;
    color: #222;
    font-weight: 600;
    text-align: left;
    padding: 0.75rem 1rem;
    border: 1px solid #d8ddd8;
}

.note-table td {
    padding: 0.75rem 1rem;
    border: 1px solid #d8ddd8;
    vertical-align: top;
}

.note-table tr:nth-child(even) {
    background: #fafcfa;
}



/* ==================================================
   KORVEST Property Scorecard (KPS)
   ================================================== */
.kps-table-wrap {
    width: 100%;
    overflow-x: auto;
}

table.kps-table {
    table-layout: fixed;
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

table.kps-table th {
    background-color: var(--korvest-green-dark) !important;
    color: #fff !important;
    padding: .85rem 1rem;
    border: 1px solid var(--korvest-green-dark);
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

table.kps-table td {
    padding: .8rem 1rem;
    border: 1px solid #d8ddd8;
    vertical-align: top;
    word-break: keep-all;
    overflow-wrap: break-word;
}

table.kps-table tr:nth-child(even) {
    background-color: #f8fbf8;
}

/*table.kps-table td:first-child {*/
/*    font-weight: 600;*/
/*    width: 35%;*/
/*}*/

table.kps-table td:nth-child(2) {
    text-align: center;
    font-weight: 700;
    color: var(--korvest-green-dark);
}

/* 3-column philosophy table */
table.kps-table th:nth-child(1),
table.kps-table td:nth-child(1) {
    width: 22%;
}

table.kps-table th:nth-child(2),
table.kps-table td:nth-child(2) {
    width: 28%;
    text-align: center;
}

table.kps-table th:nth-child(3),
table.kps-table td:nth-child(3) {
    width: 50%;
}

table.kps-table .kps-total {
    background-color: #eef5ef !important;
    font-weight: 700;
}

table.kps-table .kps-total td {
    border-top: 2px solid var(--korvest-green-dark);
}

/* Score highlight */
.kps-score {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--korvest-green-dark);
}

/* 4-column KPS table */
.kps-table-4col th:nth-child(1),
.kps-table-4col td:nth-child(1) {
    width: 28%;
}

.kps-table-4col th:nth-child(2),
.kps-table-4col td:nth-child(2) {
    width: 24%;
}

.kps-table-4col th:nth-child(3),
.kps-table-4col td:nth-child(3) {
    width: 18%;
    text-align: center;
}

.kps-table-4col th:nth-child(4),
.kps-table-4col td:nth-child(4) {
    width: 30%;
    text-align: right;
    font-weight: 600;
}

/* ==================================================
   6-column development comparison table
   ================================================== */

table.kps-table.kps-table-6col {
    table-layout: fixed;
    width: 100%;
}

table.kps-table.kps-table-6col th:nth-child(1),
table.kps-table.kps-table-6col td:nth-child(1),
table.kps-table.kps-table-6col th:nth-child(2),
table.kps-table.kps-table-6col td:nth-child(2),
table.kps-table.kps-table-6col th:nth-child(3),
table.kps-table.kps-table-6col td:nth-child(3),
table.kps-table.kps-table-6col th:nth-child(5),
table.kps-table.kps-table-6col td:nth-child(5) {
    width: 13%;
}

table.kps-table.kps-table-6col th:nth-child(4),
table.kps-table.kps-table-6col td:nth-child(4) {
    width: 22%;
}

table.kps-table.kps-table-6col th:nth-child(6),
table.kps-table.kps-table-6col td:nth-child(6) {
    width: 26%;
}

table.kps-table.kps-table-6col td:nth-child(2) {
    text-align: center;
    font-weight: 700;
    color: var(--korvest-green-dark);
}

table.kps-table.kps-table-6col td:nth-child(3),
table.kps-table.kps-table-6col td:nth-child(4),
table.kps-table.kps-table-6col td:nth-child(5),
table.kps-table.kps-table-6col td:nth-child(6) {
    text-align: left;
}

/* ==========================
   Left Menu
   ========================== */

.korvest-left-menu {
    border-right: 1px solid #d9d9d9;
    padding-right: 24px;
}

.menu-group {
    margin-bottom: 2rem;
}

.menu-group h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;

    border-bottom: 1px solid #ddd;
    padding-bottom: .5rem;
}

.menu-group a {
    display: block;

    color: #222;
    text-decoration: none;

    font-weight: 700;

    margin-top: .8rem;
}

.menu-group a:hover {
    color: var(--korvest-green-dark);
}

.menu-group span {
    display: block;

    color: #666;
    font-size: .9rem;

    margin-top: .15rem;
}

/* ==========================
   Main Panel
   ========================== */

.korvest-home-main {
    min-width: 0;
}

.home-title-section {
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-title-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #222;
}

.home-title-section p {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--korvest-green-dark);
}

/* ==========================
   Hero Image
   ========================== */

.home-hero-figure {
    position: relative;
    margin-bottom: 1.5rem;
}

.home-hero-figure img {
    width: 100%;
    display: block;
    border-radius: 4px;
}

.home-hero-figure figcaption {
    position: absolute;

    left: 24px;
    bottom: 24px;

    background: rgba(0,0,0,.75);

    color: white;

    padding: 14px 18px;
    border-radius: 4px;
}

/* ==========================
   Feature Row
   ========================== */

.home-feature-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 0;

    border: 1px solid #ddd;

    margin-bottom: 2rem;
}

.feature-card {
    padding: 1.5rem;

    border-right: 1px solid #ddd;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
}

/* ==========================
   Content Grid
   ========================== */

.home-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home-intro {
    background: white;
}

.home-intro h2,
.recent-notes-box h2 {
    margin-bottom: 1rem;
    font-weight: 700;
}

.home-intro ul {
    margin-top: 1rem;
}

.home-intro li {
    margin-bottom: .6rem;
}

.korvest-outline-btn {
    display: inline-block;

    margin-top: 1rem;

    padding: .75rem 1.25rem;

    border: 2px solid var(--korvest-green-dark);

    color: var(--korvest-green-dark);

    text-decoration: none;

    font-weight: 700;
}

.korvest-outline-btn:hover {
    background: var(--korvest-green-dark);
    color: white;
}

/* ==========================
   Recent Notes
   ========================== */

.recent-notes-box {
    border: 1px solid #ddd;
    padding: 1rem;
}

.recent-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 1rem;
}

.recent-note-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-note-list li {
    display: flex;
    justify-content: space-between;

    padding: .75rem 0;

    border-bottom: 1px solid #eee;
}

.recent-note-list a {
    color: #222;
    text-decoration: none;
}

.recent-note-list a:hover {
    color: var(--korvest-green-dark);
}

/* ==========================
   Membership Banner
   ========================== */

.membership-banner {
    margin-top: 2rem;

    background: #f6f1df;
    border: 1px solid #e0d5a8;

    padding: 1.5rem;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;
}

.membership-banner > div {
    width: 100%;
}
/* ==========================
   Mobile
   ========================== */

@media (max-width: 992px) {

    .korvest-home-layout {
        grid-template-columns: 1fr;
    }

    .korvest-left-menu {
        border-right: none;
        padding-right: 0;
    }

    .home-feature-row {
        grid-template-columns: 1fr 1fr;
    }

    .home-content-grid {
        grid-template-columns: 1fr;
    }

    .membership-banner {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {

    .home-title-section h1 {
        font-size: 2rem;
    }

    .home-feature-row {
        grid-template-columns: 1fr;
    }
}

.menu-group h3 i {
    margin-right: .45rem;
    color: var(--korvest-green-dark);
}

.menu-group a i {
    width: 22px;
    display: inline-block;
    color: var(--korvest-green-dark);
}

.gold-box h4 i {
    color: var(--korvest-gold);
    margin-right: .4rem;
}
/* ==================================================
   KORVEST LAB Hero Image
   --------------------------------------------------
   Standard aspect ratio: 2:1 (1600 × 800)
   All public pages use the same hero-image layout.
   Images may contain embedded titles/subtitles.
   Therefore:
   - Keep the TOP of the image visible.
   - Crop from the bottom if necessary.
   ================================================== */

.home-hero-figure {
    margin: 1rem 0;
    overflow: visible;
}

.home-hero-figure img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 6px;
}

/* Hero image caption
   -------------------------------------------------- */

.home-hero-figure figcaption {
    margin-top: 0.75rem;
    padding: 0;
    text-align: center;
    font-size: 0.95rem;
    font-style: italic;
    color: #666;
    line-height: 1.5;

    position: static;
    background: none;
}

@media (max-width: 992px) {
    .home-hero-figure img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .home-hero-figure img {
        height: 280px;
    }
}

.left-note-link {
    font-size: .85rem;
    font-weight: 400 !important;
    color: #444;

    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    padding: .25rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.left-view-all {
    margin-top: .8rem;
    color: var(--korvest-green-dark) !important;
    font-weight: 700 !important;
}

.view-all-link {
    font-weight: 700;
    color: var(--korvest-green-dark);
    margin-top: .5rem;
}

.home-feature-section {
    position: relative;
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    padding-top: 1.2rem;
}

.home-feature-band {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);

    background: var(--korvest-green-dark);
    color: white;

    padding: .45rem 1.5rem;
    border-radius: 999px;

    font-size: .95rem;
    font-weight: 700;
    letter-spacing: .04em;

    border: 2px solid var(--korvest-gold);
    z-index: 2;
}

.home-feature-section .home-feature-row {
    position: relative;
    padding-top: 1.2rem;
}

/* ==================================================
   Public Investment Note Index
   ================================================== */

.note-index-sidebar {
    border-right: 1px solid #ddd;
    padding-right: 1.5rem;
}

.note-index-list {
    max-height: calc(100vh - 260px);
    overflow-y: auto;
    scroll-behavior: smooth;
}

.note-index-item {
    display: block;
    padding: 0.9rem 0.75rem;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
}

.note-index-item:hover {
    background: #f4f8f4;
}

.note-index-no {
    font-size: 0.8rem;
    color: var(--korvest-muted);
    margin-bottom: 0.2rem;
}

.note-index-title {
    font-weight: 700;
    color: #222;
    line-height: 1.4;
}

.note-index-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
    line-height: 1.45;
}

.note-index-date {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.25rem;
}

.note-index-main {
    padding-left: 2rem;
}

.note-preview-card {
    max-width: 900px;
    margin: 0 auto;
}

.note-empty-panel {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #666;
    text-align: center;
}

.left-home-link {
    display: block;
    padding: 0.8rem 1rem;
    margin-bottom: 1rem;

    background: var(--korvest-green);
    color: #fff;

    border-radius: 6px;

    font-weight: 600;
    text-decoration: none;

    transition: .2s;
}

.left-home-link:hover {
    background: #1d5f48;
    color: #fff;
}

/* ==================================================
   Dashboard Investment Note Editor Command
   ================================================== */
.dashboard-command-band {
    position: sticky;
    top: 68px;
    z-index: 900;

    background: #fff;
    border: 1px solid #d8ddd8;
    border-radius: 8px;

    padding: 14px 18px;
    margin-bottom: 24px;
}

.dashboard-command-row {
    display: flex;
    align-items: center;
}

.dashboard-summary-row {
    justify-content: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.dashboard-action-row {
    justify-content: space-between;
    padding-top: 12px;
}

.dashboard-stats {
    display: flex;
    gap: 28px;
    font-size: .95rem;
    font-weight: 600;
    color: #333;
}

.dashboard-save-status {
    min-width: 220px;
    font-size: .95rem;
    color: var(--korvest-green-dark);
    font-weight: 600;
}

.dashboard-actions {
    display: flex;
    gap: 10px;
}

.editor-status-message {
    font-size: 0.9rem;
    color: #666;
}

.status-ready {
    color: #8a5a00;
    font-weight: 600;
}

.status-saving {
    color: #555;
}

.status-saved {
    color: #2f6f3e;
}

.status-error {
    color: #b00020;
    font-weight: 600;
}

.report-body-textarea {
    font-family: Consolas, Monaco, "Courier New", monospace;
    line-height: 1.5;
}

.status-ready {
    color: #8a5a00;
    font-weight: 600;
}

.status-saving {
    color: #555;
}

.status-saved {
    color: #2f6f3e;
}

.status-error {
    color: #b00020;
    font-weight: 600;
}

.selected-report-context {
    opacity: 0.75;
    font-size: 0.95rem;
}

.chapter-list-item {
    display: block;
    padding: 0.55rem 0.65rem;
    margin-bottom: 0.35rem;
    border-radius: 0.35rem;
    text-decoration: none;
    color: inherit;
}

.chapter-list-item:hover {
    background: #f5f5f5;
}

.chapter-list-item.active {
    background: #eef3ef;
    border-left: 4px solid #2f6f3e;
}

.chapter-list-main {
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
}

.chapter-list-no {
    font-weight: 700;
    color: #555;
    min-width: 2rem;
}

.chapter-list-title {
    font-weight: 600;
}

.chapter-list-meta {
    margin-top: 0.25rem;
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.market-report-title-small {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f3d2b;
    margin-top: 0.5rem;
}

.market-report-subtitle-small {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.25rem;
    text-align: center;
}

.market-report-label {
    letter-spacing: 0.08em;
    color: #777;
}

.market-report-body h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    color: #1f3d2b;
}

.market-report-body p {
    line-height: 1.8;
}

.report-row {
    cursor: pointer;
}

.left-report-link {
    display: flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 0.35rem;

    width: 100%;
    text-decoration: none;
}

.left-report-link .report-title {
    display: inline !important;
    flex: 0 1 auto;
    min-width: 0;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.left-report-link .access-icon {
    display: inline !important;
    flex: 0 0 auto;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    margin-left: 0.35rem;
}

.access-public {
    color: var(--korvest-green-dark);
}

.access-silver {
    color: #8a8a8a;
}

.access-gold {
    color: var(--korvest-gold);
}

.left-logo-link {
    display: flex !important;
    align-items: center;
    gap: 0.45rem;
}

.left-logo-link .left-menu-shield {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.left-report-link .access-icon.access-public {
    color: var(--korvest-green-dark) !important;
}

.left-report-link .access-icon.access-silver {
    color: #8a8a8a !important;
}

.left-report-link .access-icon.access-gold {
    color: var(--korvest-gold) !important;
}

.note-index-item.active {
    background: #eef5ef;
    border-left: 4px solid var(--korvest-green-dark);
    padding-left: 0.95rem;
}

.report-disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.disabled-link {
    display: block;
    margin-top: 0.4rem;
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.note-inline-figure {
    margin: 2rem auto;
    text-align: center;
}

.note-inline-figure img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.note-inline-figure figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.locked-member-report {
    opacity: 0.7;
}

.locked-member-report:hover {
    opacity: 1;
}

.disabled-link.locked-member-report {
    pointer-events: auto;
    cursor: pointer;
}