/* ===================================
   Sub-page Styles
   Extends styles.css for inner pages
   =================================== */

/* --- Page Hero Banner --- */
.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.88rem; color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb svg { width: 14px; height: 14px; }

.page-hero h1 {
    font-size: 2.4rem; font-weight: 900; color: var(--white);
    margin-bottom: 10px; line-height: 1.3;
}

.page-hero p {
    font-size: 1.05rem; color: rgba(255,255,255,0.85);
    max-width: 640px; line-height: 1.7;
}


/* --- Page Content Area --- */
.page-content {
    padding: 56px 0 72px;
}

.page-content .container {
    max-width: 900px;
}


/* --- Bylaws / Article Content --- */
.article-body {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 48px;
    box-shadow: var(--shadow-sm);
    line-height: 1.95;
    font-size: 1rem;
    color: var(--text);
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--navy);
    margin: 36px 0 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--pale);
    position: relative;
}

.article-body h2:first-child { margin-top: 0; }

.article-body h2::after {
    content: '';
    position: absolute; bottom: -2px; left: 0;
    width: 48px; height: 2px;
    background: var(--navy);
}

.article-body h3 {
    font-size: 1.15rem;
    color: var(--teal);
    margin: 24px 0 12px;
}

.article-body p {
    margin-bottom: 14px;
    text-align: justify;
}

.article-body .clause {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
    padding: 8px 0;
}

.clause-number {
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
    min-width: 80px;
    flex-shrink: 0;
}

.clause-content {
    flex: 1;
}

.clause-content ol,
.clause-content ul {
    padding-left: 24px;
    margin: 8px 0;
}

.clause-content ol li,
.clause-content ul li {
    margin-bottom: 6px;
    line-height: 1.8;
    list-style: decimal;
}

.article-body .chapter-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin: 40px 0 24px;
    padding: 14px 0;
    background: var(--pale);
    border-radius: 8px;
}

.article-body .chapter-title:first-child { margin-top: 0; }

.article-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex; align-items: center; gap: 6px;
}

.article-meta svg { width: 16px; height: 16px; color: var(--teal); }

.article-actions {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.geo-faq {
    display: grid;
    gap: 14px;
    margin: 0;
}

.geo-faq > div {
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fafcfd;
}

.geo-faq dt {
    margin-bottom: 6px;
    color: var(--navy);
    font-weight: 700;
}

.geo-faq dd {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.geo-faq a { color: var(--teal); font-weight: 600; }


/* --- Chairman Message --- */
.chairman-card {
    display: flex;
    gap: 36px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.chairman-photo {
    width: 180px; height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--pale);
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
}

.chairman-photo svg { width: 64px; height: 64px; }

.chairman-info h2 {
    font-size: 1.4rem; margin-bottom: 4px;
    border: none; padding-bottom: 0;
}

.chairman-info h2::after { display: none; }

.chairman-info .chairman-title-role {
    color: var(--teal); font-weight: 600;
    font-size: 0.95rem; margin-bottom: 16px;
}

.chairman-message {
    font-size: 1rem; line-height: 2;
    color: var(--text); text-align: justify;
}

.chairman-message p { margin-bottom: 16px; }

.chairman-signature {
    text-align: right;
    margin-top: 32px;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

.chairman-profile {
    margin: 8px 0 34px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.chairman-profile-heading {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 16px;
}

.chairman-profile-heading .section-label { margin-bottom: 0; }

.chairman-profile-sheet {
    display: grid;
    grid-template-columns: minmax(190px, 261px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
    padding: 24px 22px 28px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
}

.chairman-profile-identity img {
    display: block;
    width: 100%;
    aspect-ratio: 261 / 355;
    object-fit: cover;
    border: 1px solid var(--border);
    border-radius: 3px;
    background: #f8fafb;
}

.chairman-profile-identity h2 {
    margin: 20px 0 0;
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
}

.chairman-profile-section + .chairman-profile-section { margin-top: 26px; }

.chairman-profile-section h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.4;
}

.chairman-profile-list {
    margin: 0;
    padding-left: 1.35em;
    color: var(--text);
    list-style: disc;
}

.chairman-profile-list li {
    padding: 3px 0 3px 0.15em;
    line-height: 1.6;
}

.chairman-profile-list--two-col {
    padding-left: 0;
    list-style: none;
}

.chairman-profile-list--two-col li {
    display: grid;
    grid-template-columns: 0.65em minmax(0, 1fr) auto;
    column-gap: 12px;
    align-items: baseline;
    padding-left: 0;
}

.chairman-profile-list--two-col li::before {
    content: '•';
    grid-column: 1;
    color: var(--text);
}

.chairman-profile-list--two-col li > span:first-child {
    grid-column: 2;
}

.chairman-profile-list--two-col li > span:last-child {
    grid-column: 3;
    color: var(--text-light);
    white-space: nowrap;
    text-align: right;
}


/* --- Core topic landing pages --- */
.topic-detail .topic-lead {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.9;
}

.topic-detail .topic-list {
    margin: 0 0 18px;
    padding-left: 1.4em;
    color: var(--text);
    list-style: disc;
}

.topic-detail .topic-list li {
    margin-bottom: 8px;
    padding-left: 0.2em;
    line-height: 1.8;
}

.topic-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

/* --- Healthcare resilience definition --- */
.medical-definition-header {
    max-width: 880px;
    margin-bottom: 32px;
}

.medical-research-note {
    margin: 16px 0 0;
    padding-left: 16px;
    border-left: 3px solid var(--teal);
    color: var(--text-light);
    font-size: 0.94rem;
    line-height: 1.8;
}

.medical-kicker,
.medical-section-heading span,
.medical-integration span {
    display: block;
    margin-bottom: 8px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.medical-definition-header h2,
.medical-section-heading h2,
.medical-integration h2,
.medical-actions-section h2 {
    color: var(--navy);
}

.medical-definition-callout {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    margin: 0 0 50px;
    padding: 24px 28px;
    border: 1px solid #cfe5ec;
    border-left: 5px solid var(--teal);
    border-radius: 10px;
    background: linear-gradient(135deg, #f3fbfc, #f7f9fd);
}

.medical-definition-callout > svg {
    width: 48px;
    height: 48px;
    padding: 10px;
    border-radius: 50%;
    background: var(--white);
    color: var(--teal);
    box-shadow: var(--shadow-sm);
}

.medical-definition-callout h3 { margin: 0 0 6px; color: var(--navy); }
.medical-definition-callout p { margin: 0; color: var(--text); line-height: 1.85; }
.medical-definition-callout .medical-callout-label {
    margin-bottom: 3px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.resilience-capacities {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.resilience-capacities span {
    padding: 11px 12px;
    border: 1px solid #cce4e7;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-light);
    font-size: 0.84rem;
    text-align: center;
}

.resilience-capacities strong {
    display: block;
    color: var(--navy);
    font-size: 1rem;
}

.medical-section-heading { margin-bottom: 24px; }
.medical-section-heading h2 { margin-bottom: 0; }
.medical-section-heading p {
    max-width: 830px;
    margin: 12px 0 0;
    color: var(--text-light);
    line-height: 1.8;
}

.medical-levels {
    display: grid;
    gap: 22px;
}

.medical-level-card {
    position: relative;
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 24px;
    padding: 30px 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.medical-level-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--navy);
}

.medical-level-card--meso::before { background: var(--teal); }
.medical-level-card--micro::before { background: #458ab8; }

.medical-level-index {
    position: absolute;
    top: 14px;
    right: 24px;
    color: rgba(22, 58, 112, 0.07);
    font-size: 4.4rem;
    font-weight: 900;
    line-height: 1;
}

.medical-level-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 12px;
    background: #edf3f9;
    color: var(--navy);
}

.medical-level-card--meso .medical-level-icon { background: #e9f8f7; color: var(--teal); }
.medical-level-card--micro .medical-level-icon { background: #eef7fb; color: #347fab; }
.medical-level-icon svg { width: 28px; height: 28px; }

.medical-level-content { position: relative; z-index: 1; }
.medical-level-label { margin: 0 0 3px; color: var(--teal); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; }
.medical-level-content h3 { margin: 0; color: var(--navy); font-size: 1.45rem; }
.medical-level-subtitle { margin: 3px 0 16px; color: var(--text-light); font-size: 0.88rem; }
.medical-level-content h4 { margin: 0 0 12px; padding-right: 68px; color: var(--text); font-size: 1.05rem; line-height: 1.65; }
.medical-level-content > p:not(.medical-level-label):not(.medical-level-subtitle) { margin: 0 0 10px; line-height: 1.85; }

.medical-strategy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.92rem;
    line-height: 1.65;
}

.medical-strategy strong { flex: 0 0 auto; color: var(--navy); }
.medical-strategy span { color: var(--text-light); }

.hospital-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.hospital-pillars span {
    padding: 9px 10px;
    border-radius: 7px;
    background: #f2f8f8;
    color: var(--text-light);
    font-size: 0.82rem;
    text-align: center;
}

.hospital-pillars strong { display: block; color: var(--teal); }

.safety-comparison-section,
.medical-transition-section {
    margin-top: 54px;
}

.safety-comparison-wrap {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.safety-comparison {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.92rem;
    line-height: 1.7;
}

.safety-comparison th,
.safety-comparison td {
    padding: 18px 20px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.safety-comparison th:last-child,
.safety-comparison td:last-child { border-right: 0; }
.safety-comparison tbody tr:last-child > * { border-bottom: 0; }
.safety-comparison thead th { background: var(--navy); color: var(--white); font-size: 0.88rem; }
.safety-comparison thead th:first-child { width: 18%; }
.safety-comparison tbody th { background: #f3f7fb; color: var(--navy); }
.safety-comparison tbody td:nth-of-type(1) { background: #fbfcfd; color: var(--text-light); }
.safety-comparison tbody td:nth-of-type(2) { background: #f1faf9; color: var(--text); }
.safety-comparison td span { color: var(--text-light); font-size: 0.82rem; }

.panic-neglect-cycle {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.panic-neglect-cycle article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    min-height: 160px;
    padding: 24px;
    border: 1px solid #ead9d1;
    border-radius: 12px;
    background: #fff9f6;
}

.panic-neglect-cycle article:last-of-type { border-color: #d8e1e8; background: #f7f9fb; }
.panic-neglect-cycle article > svg { width: 42px; height: 42px; padding: 9px; border-radius: 50%; background: #fff0e8; color: #b85831; }
.panic-neglect-cycle article:last-of-type > svg { background: #eaf0f5; color: var(--navy); }
.panic-neglect-cycle article span { color: #b85831; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.panic-neglect-cycle article:last-of-type span { color: var(--navy); }
.panic-neglect-cycle article h3 { margin: 2px 0 6px; color: var(--navy); }
.panic-neglect-cycle article p { margin: 0; color: var(--text-light); line-height: 1.75; }
.panic-neglect-cycle .cycle-arrow { justify-self: center; color: var(--teal); }

.transition-actions-title {
    margin: 34px 0 18px;
    color: var(--navy);
    font-size: 1.2rem;
}

.transition-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.transition-actions-grid article {
    position: relative;
    padding: 24px 22px 22px 68px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
}

.transition-actions-grid article > span {
    position: absolute;
    top: 24px;
    left: 22px;
    color: var(--teal);
    font-size: 0.86rem;
    font-weight: 900;
}

.transition-actions-grid h4 { margin: 0 0 7px; color: var(--navy); font-size: 1.04rem; }
.transition-actions-grid p { margin: 0; color: var(--text-light); font-size: 0.9rem; line-height: 1.75; }

.medical-integration {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 24px;
    margin-top: 50px;
    padding: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), #245889);
    color: var(--white);
}

.medical-integration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.medical-integration-icon svg { width: 30px; height: 30px; }
.medical-integration span { color: #8edbd6; }
.medical-integration h2 { margin: 0 0 12px; color: var(--white); }
.medical-integration p { margin: 0; color: rgba(255, 255, 255, 0.88); line-height: 1.9; }

.medical-actions-section { margin-top: 46px; }
.medical-action-list { columns: 1; }

/* --- Expert articles --- */
.expert-articles-intro {
    max-width: 780px;
    margin-bottom: 34px;
}

.expert-articles-intro > span,
.expert-reader-eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.expert-articles-intro h2 { margin-bottom: 10px; color: var(--navy); }
.expert-articles-intro p { margin: 0; color: var(--text-light); line-height: 1.8; }

.expert-article-list {
    display: grid;
    gap: 24px;
}

.expert-article-card {
    position: relative;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 26px;
    padding: 32px 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.expert-article-card:hover {
    transform: translateY(-3px);
    border-color: #bfd8e3;
    box-shadow: var(--shadow);
}

.expert-article-number {
    position: absolute;
    top: 16px;
    right: 24px;
    color: rgba(22, 58, 112, 0.06);
    font-size: 4.4rem;
    font-weight: 900;
    line-height: 1;
}

.expert-article-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 14px;
    background: linear-gradient(135deg, #edf5fb, #e6f7f5);
    color: var(--teal);
}

.expert-article-icon svg { width: 30px; height: 30px; }
.expert-article-content { position: relative; z-index: 1; }

.expert-article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.82rem;
}

.expert-article-meta span {
    padding: 4px 9px;
    border-radius: 4px;
    background: rgba(31, 111, 139, 0.1);
    color: var(--teal);
    font-weight: 700;
}

.expert-article-content h2 {
    margin: 0 58px 5px 0;
    font-size: 1.45rem;
    line-height: 1.5;
}

.expert-article-content h2 a { color: var(--navy); }
.expert-article-content h2 a:hover { color: var(--teal); }
.expert-article-authors { margin: 0 0 13px; color: var(--text); font-weight: 600; }
.expert-article-summary { margin: 0 0 14px; color: var(--text); line-height: 1.85; }
.expert-article-source { margin: 0 0 17px; color: var(--text-light); font-size: 0.88rem; }

.expert-article-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--teal);
    font-weight: 700;
}

.expert-article-link svg { width: 17px; height: 17px; transition: transform 0.2s ease; }
.expert-article-link:hover svg { transform: translateX(4px); }

.expert-reader { padding: 40px 48px; }

.expert-reader-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 30px;
    align-items: start;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.expert-reader-header h2 {
    max-width: 820px;
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 1.85rem;
    line-height: 1.45;
}

.expert-reader-byline { margin: 0 0 6px; color: var(--text); font-weight: 600; }
.expert-reader-publication { margin: 0; color: var(--text-light); font-size: 0.9rem; }

.expert-reader-doi {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--teal);
    font-size: 0.86rem;
}

.expert-reader-doi svg { width: 15px; height: 15px; }

.expert-reader-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 190px;
}

.expert-reader-actions .btn { justify-content: center; }

.expert-reader-header--web {
    grid-template-columns: minmax(0, 1fr);
}

.expert-reader-summary {
    margin: 30px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    background: #f4f9fb;
}

.expert-reader-summary h3 { margin: 0 0 8px; color: var(--navy); }
.expert-reader-summary p { margin: 0; color: var(--text); line-height: 1.85; }

.article-abstract-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.article-abstract-list > div {
    display: grid;
    grid-template-columns: 3em minmax(0, 1fr);
    gap: 12px;
}

.article-abstract-list dt { color: var(--navy); font-weight: 800; }
.article-abstract-list dd { margin: 0; line-height: 1.85; }

.expert-reader-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.expert-reader-keywords span {
    padding: 5px 9px;
    border: 1px solid #d6e5eb;
    border-radius: 999px;
    color: var(--text-light);
    background: var(--white);
    font-size: 0.78rem;
}

.article-affiliations {
    margin: 0 0 30px;
    padding: 20px 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fbfcfd;
    color: var(--text-light);
    font-size: 0.86rem;
}

.article-affiliations p { margin: 0 0 5px; text-align: left; }
.article-affiliations p:last-child { margin-bottom: 0; }
.article-affiliations a { color: var(--teal); }

.article-toc {
    margin: 32px 0 42px;
    padding: 24px 26px;
    border: 1px solid #cfe0e7;
    border-radius: 10px;
    background: linear-gradient(135deg, #f7fafc, #f1f8f8);
}

.article-toc > strong {
    display: block;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.05rem;
}

.article-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px 28px;
    margin: 0;
    padding-left: 1.4em;
}

.article-toc li { color: var(--teal); }
.article-toc a { color: var(--text); line-height: 1.65; }
.article-toc a:hover { color: var(--teal); }

.article-fulltext section { scroll-margin-top: 100px; }
.article-fulltext h2 { margin-top: 52px; }
.article-fulltext h3 { margin-top: 30px; }
.article-fulltext p { margin-bottom: 18px; line-height: 2; }
.article-fulltext em { font-style: italic; }

.article-numbered-list {
    display: grid;
    gap: 11px;
    margin: 18px 0 26px;
    padding-left: 1.55em;
}

.article-numbered-list li { padding-left: 0.3em; line-height: 1.9; }

.article-table-wrap {
    margin: 24px 0 34px;
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.article-data-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.88rem;
    line-height: 1.7;
}

.article-data-table caption {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
    background: #f6f9fb;
    color: var(--navy);
    font-weight: 800;
    text-align: left;
}

.article-data-table th,
.article-data-table td {
    padding: 15px 16px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.article-data-table tr:last-child > * { border-bottom: 0; }
.article-data-table tr > *:last-child { border-right: 0; }
.article-data-table thead th { background: var(--navy); color: var(--white); }
.article-data-table tbody th { width: 18%; background: #f2f7fa; color: var(--navy); }
.article-data-table tbody th span { color: var(--text-light); font-size: 0.76rem; font-weight: 500; }

.article-four-potentials,
.article-foundations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 22px 0 28px;
}

.article-four-potentials article,
.article-foundations-grid article {
    position: relative;
    padding: 21px 20px 18px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: #fbfcfd;
}

.article-four-potentials article { padding-left: 58px; }
.article-four-potentials article > span { position: absolute; top: 21px; left: 20px; color: var(--teal); font-size: 0.78rem; font-weight: 900; }
.article-four-potentials h3,
.article-foundations-grid h4 { margin: 0 0 6px; color: var(--navy); font-size: 1rem; }
.article-four-potentials p,
.article-foundations-grid p { margin: 0; color: var(--text-light); font-size: 0.88rem; line-height: 1.75; text-align: left; }

.article-pullquote {
    margin: 28px 0;
    padding: 22px 26px;
    border-left: 5px solid var(--teal);
    background: #f2f8f8;
    color: var(--navy);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.85;
}

.article-author-note {
    margin-top: 28px;
    padding: 18px 22px;
    border-radius: 8px;
    background: #f6f8fa;
    color: var(--text-light);
}

.article-author-note strong { color: var(--navy); }
.article-author-note p { margin: 4px 0 0; font-size: 0.9rem; text-align: left; }

.article-references ol {
    display: grid;
    gap: 10px;
    padding-left: 1.6em;
    color: var(--text-light);
    font-size: 0.84rem;
}

.article-references li { padding-left: 0.25em; line-height: 1.75; overflow-wrap: anywhere; }

.article-english-abstract {
    margin-top: 48px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fafbfc;
}

.article-english-abstract .article-section-label { margin: 0 0 3px; color: var(--teal); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.article-english-abstract h2 { margin-top: 0; }
.article-english-abstract .article-english-authors { color: var(--text-light); font-weight: 600; }

.pdf-reader-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.pdf-reader-heading h3 { margin: 0; color: var(--navy); }
.pdf-reader-heading span { color: var(--text-light); font-size: 0.85rem; }

.pdf-reader-frame {
    display: block;
    width: 100%;
    height: min(78vh, 920px);
    min-height: 650px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #f3f5f7;
}

.pdf-reader-note {
    margin: 12px 0 0;
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.6;
}

.expert-reader-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
}


/* --- Placeholder / Coming Soon --- */
.coming-soon-box {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.coming-soon-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pale), #d6eef8);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    color: var(--navy);
}

.coming-soon-icon svg { width: 36px; height: 36px; }

.coming-soon-box h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.coming-soon-box p {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 24px;
}


/* --- Event Detail --- */
.event-detail { padding: 40px 48px; }

.event-detail-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.event-label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    background: #fbe9e7;
    color: #b2382c;
    font-size: 0.78rem;
    font-weight: 700;
}

.event-detail-header h2 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.8rem;
    line-height: 1.4;
}

.event-lead {
    margin: 0;
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.7;
}

.event-register-btn { flex-shrink: 0; }

.event-detail-layout {
    display: grid;
    grid-template-columns: minmax(190px, 0.72fr) minmax(0, 1.28fr);
    gap: 36px;
    align-items: start;
    padding: 32px 0 8px;
}

.event-poster-wrap { text-align: center; }

.event-poster-wrap img {
    display: block;
    width: 100%;
    max-height: 640px;
    object-fit: contain;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #f5f8fa;
}

.event-poster-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    color: var(--teal);
    font-size: 0.86rem;
    font-weight: 600;
}

.event-poster-download:hover { color: var(--navy); }
.event-poster-download svg { width: 15px; height: 15px; }

.event-download-bottom {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.event-facts {
    margin: 0;
    border-top: 1px solid var(--border);
}

.event-facts > div {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.event-facts dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
}

.event-facts dt svg { width: 17px; height: 17px; color: var(--teal); }

.event-facts dd {
    margin: 0;
    color: var(--navy);
    line-height: 1.7;
    font-weight: 600;
}

.event-facts small { color: var(--text-light); font-size: 0.88rem; font-weight: 400; }
.event-facts a { color: var(--teal); }

.event-detail h3 {
    margin-top: 34px;
    margin-bottom: 12px;
    padding-bottom: 9px;
    color: var(--navy);
    border-bottom: 2px solid var(--pale);
    font-size: 1.25rem;
}

.event-detail h3::after { display: none; }
.event-detail > p { line-height: 1.9; }

.event-schedule-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 6px;
}

.event-schedule {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.event-schedule th,
.event-schedule td {
    padding: 11px 12px;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    line-height: 1.55;
    vertical-align: middle;
}

.event-schedule th:last-child,
.event-schedule td:last-child { border-right: 0; }
.event-schedule tr:last-child td { border-bottom: 0; }

.event-schedule th {
    background: var(--navy);
    color: var(--white);
    text-align: left;
    font-weight: 700;
}

.event-schedule th:first-child,
.event-schedule td:first-child { width: 112px; white-space: nowrap; }
.event-schedule td:first-child { color: var(--navy); font-weight: 700; }
.event-schedule td[colspan] { text-align: center; }

.event-footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}


/* --- Activity Gallery --- */
.activity-detail { padding: 40px 48px; }

.activity-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.activity-header h2 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 1.8rem;
}

.activity-header p {
    margin: 0;
    color: var(--text-light);
    font-weight: 600;
}

.activity-header-icon {
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 50%;
    background: var(--pale);
    color: var(--navy);
    flex-shrink: 0;
}

.activity-intro {
    margin: 24px 0 28px;
    color: var(--text);
    line-height: 1.9;
}

.activity-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.activity-gallery-item {
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #f7fafb;
}

.activity-gallery-item-tall { grid-row: span 2; }

.activity-gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.activity-gallery-item-tall img { object-position: center top; }

.activity-gallery-item figcaption {
    padding: 10px 14px;
    color: var(--text-light);
    background: var(--white);
    font-size: 0.86rem;
    line-height: 1.5;
}

.activity-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}


/* --- Donation Information --- */
.donation-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.donation-card-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--pale), #eef8fb);
    border-bottom: 1px solid var(--border);
}

.donation-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.donation-icon svg { width: 30px; height: 30px; }

.donation-eyebrow {
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 4px;
}

.donation-card-heading h2 {
    color: var(--navy);
    font-size: 1.55rem;
    line-height: 1.4;
}

.donation-details {
    margin: 0;
    padding: 8px 40px;
}

.donation-detail-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
}

.donation-detail-row:last-child { border-bottom: 0; }

.donation-detail-row dt {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 600;
}

.donation-detail-row dt svg {
    width: 19px;
    height: 19px;
    color: var(--teal);
}

.donation-detail-row dd {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

.donation-account {
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
}

.donation-contact {
    margin: 0;
    padding: 20px 40px;
    background: #fafcfd;
    border-top: 1px solid var(--border);
    color: var(--text-light);
    line-height: 1.7;
}

.donation-contact a { color: var(--teal); font-weight: 600; }


/* --- Responsive for sub-pages --- */
@media (max-width: 768px) {
    .page-hero h1 { font-size: 1.8rem; }
    .article-body { padding: 24px 20px; }
    .chairman-card { flex-direction: column; align-items: center; text-align: center; }
    .chairman-info h2::after { display: none; }
    .chairman-profile-heading { display: block; }
    .chairman-profile-sheet { grid-template-columns: 1fr; gap: 28px; padding: 20px 16px; }
    .chairman-profile-identity { display: flex; flex-direction: column; align-items: center; }
    .chairman-profile-identity img { width: min(100%, 261px); }
    .chairman-profile-identity h2 { margin-top: 16px; font-size: 2.2rem; }
    .chairman-profile-details { width: 100%; }
    .chairman-profile-list--two-col li {
        grid-template-columns: 0.65em minmax(0, 1fr) minmax(7em, auto);
        column-gap: 10px;
    }
    .chairman-profile-list--two-col li > span:last-child { white-space: normal; }
    .topic-actions .btn { flex: 1 1 180px; justify-content: center; }
    .medical-definition-callout { grid-template-columns: 1fr; padding: 22px 20px; }
    .resilience-capacities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .medical-level-card { grid-template-columns: 1fr; gap: 16px; padding: 24px 20px 24px 24px; }
    .medical-level-index { right: 16px; font-size: 3.7rem; }
    .medical-level-content h4 { padding-right: 0; }
    .medical-strategy { flex-direction: column; gap: 4px; }
    .hospital-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .safety-comparison-wrap { overflow: visible; border: 0; box-shadow: none; }
    .safety-comparison,
    .safety-comparison tbody,
    .safety-comparison tr,
    .safety-comparison th,
    .safety-comparison td { display: block; width: 100%; }
    .safety-comparison thead { display: none; }
    .safety-comparison tbody { display: grid; gap: 14px; }
    .safety-comparison tr { overflow: hidden; border: 1px solid var(--border); border-radius: 10px; box-shadow: var(--shadow-sm); }
    .safety-comparison th,
    .safety-comparison td { border: 0; border-bottom: 1px solid var(--border); padding: 15px 18px; }
    .safety-comparison tbody tr:last-child > * { border-bottom: 1px solid var(--border); }
    .safety-comparison tbody td:last-child { border-bottom: 0; }
    .safety-comparison tbody th { background: var(--navy); color: var(--white); }
    .safety-comparison td::before { display: block; margin-bottom: 4px; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }
    .safety-comparison td:nth-of-type(1)::before { content: 'Safety-I'; color: var(--text-light); }
    .safety-comparison td:nth-of-type(2)::before { content: 'Safety-II'; color: var(--teal); }
    .panic-neglect-cycle { grid-template-columns: 1fr; }
    .panic-neglect-cycle .cycle-arrow { transform: rotate(90deg); }
    .transition-actions-grid { grid-template-columns: 1fr; }
    .medical-integration { grid-template-columns: 1fr; padding: 28px 22px; }
    .medical-integration-icon { width: 56px; height: 56px; }
    .expert-article-card { grid-template-columns: 1fr; gap: 18px; padding: 26px 20px; }
    .expert-article-number { right: 16px; font-size: 3.7rem; }
    .expert-article-content h2 { margin-right: 42px; font-size: 1.25rem; }
    .expert-reader { padding: 24px 20px; }
    .expert-reader-header { grid-template-columns: 1fr; gap: 20px; }
    .expert-reader-header h2 { font-size: 1.45rem; }
    .expert-reader-actions { display: grid; grid-template-columns: 1fr; min-width: 0; }
    .expert-reader-summary { padding: 20px; }
    .article-abstract-list > div { grid-template-columns: 1fr; gap: 2px; }
    .article-toc { padding: 20px; }
    .article-toc ol { grid-template-columns: 1fr; }
    .article-four-potentials,
    .article-foundations-grid { grid-template-columns: 1fr; }
    .article-english-abstract { padding: 22px 20px; }
    .pdf-reader-heading { align-items: flex-start; flex-direction: column; gap: 4px; }
    .pdf-reader-frame { height: 70vh; min-height: 480px; }
    .expert-reader-footer { flex-direction: column; }
    .expert-reader-footer .btn { width: 100%; justify-content: center; }
    .coming-soon-box { padding: 50px 20px; }
    .event-detail { padding: 24px 20px; }
    .event-detail-header { flex-direction: column; gap: 18px; }
    .event-detail-header h2 { font-size: 1.45rem; }
    .event-register-btn { width: 100%; justify-content: center; }
    .event-detail-layout { grid-template-columns: 1fr; gap: 24px; padding-top: 24px; }
    .event-poster-wrap { max-width: 420px; margin: 0 auto; }
    .event-facts > div { grid-template-columns: 96px 1fr; gap: 12px; }
    .event-footer-actions .btn { width: 100%; justify-content: center; }
    .activity-detail { padding: 24px 20px; }
    .activity-header { align-items: flex-start; }
    .activity-header h2 { font-size: 1.45rem; }
    .activity-gallery { grid-template-columns: 1fr; }
    .activity-gallery-item-tall { grid-row: auto; }
    .activity-gallery-item img { height: auto; min-height: 0; max-height: none; }
    .activity-footer .btn { width: 100%; justify-content: center; }
    .donation-card-heading { padding: 24px 20px; }
    .donation-card-heading h2 { font-size: 1.3rem; }
    .donation-details { padding: 4px 20px; }
    .donation-detail-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
    .donation-contact { padding: 18px 20px; }
}
