/* ==========================================================================
   SANTE GENERAL HOSPITAL - MASTER SINGLE POST STYLESHEET (QUIET LUXURY)
   Mayo Clinic & Vinmec Medical Editorial Standard (E-E-A-T Certified)
   ========================================================================== */

:root {
    --sante-navy-deep:      #001F4D;
    --sante-navy-royal:     #211261;
    --sante-navy-slate:     #0A2540;
    --sante-gold-champagne: #C5A165;
    --sante-gold-muted:     #B89558;
    --sante-gold-light:     #FBF8F1;
    --sante-teal-verified:  #0D9488;
    --sante-teal-light:     #F0FDFA;
    --sante-green-accent:   #00CE7C;
    --sante-ink-primary:    #0F172A;
    --sante-ink-body:       #334155;
    --sante-ink-muted:      #64748B;
    --sante-border-subtle:  #E2E8F0;
    --sante-surface-ground: #FAFCFB;
    --sante-surface-card:   #FFFFFF;
    --sante-shadow-card:    0 4px 20px -4px rgba(0, 31, 77, 0.05);
    --sante-shadow-hover:   0 12px 32px -4px rgba(0, 31, 77, 0.08);
}

/* 1. Top Reading Progress Bar */
#sante-reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3.5px;
    width: 0%;
    background: linear-gradient(90deg, #001F4D 0%, #0D9488 50%, #C5A165 100%);
    z-index: 99999;
    transition: width 0.1s ease-out;
    box-shadow: 0 1px 4px rgba(197, 161, 101, 0.4);
}

/* 2. Main Wrapper & Container */
.sante-single-post-wrap {
    background-color: var(--sante-surface-ground);
    color: var(--sante-ink-primary);
    font-family: "Lexend", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding-top: 30px !important;
    padding-bottom: 60px !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.sante-post-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* 3. Editorial Post Heading Block */
.sante-post-heading-block {
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--sante-border-subtle);
}

/* Integrated Breadcrumb (Inline 1 Row) */
.sante-integrated-breadcrumb {
    margin-bottom: 14px;
}

.sante-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.sante-breadcrumb-list li {
    display: inline-flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.sante-breadcrumb-list li::before,
.sante-breadcrumb-list li::after {
    display: none !important;
    content: none !important;
}

.sante-bc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--sante-ink-muted);
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sante-bc-link:hover {
    color: var(--sante-green-accent);
}

.sante-bc-home-svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.sante-bc-sep {
    color: #CBD5E1;
    font-size: 12px;
    font-weight: 400;
    user-select: none;
}

.sante-bc-current .sante-bc-link,
.sante-bc-current span {
    color: var(--sante-green-accent);
    font-weight: 600;
}

.sante-bc-current .sante-bc-link:hover {
    color: var(--sante-navy-royal);
}

.sante-post-title {
    font-size: clamp(22px, 2.2vw, 27px);
    line-height: 1.38;
    font-weight: 700;
    color: var(--sante-navy-deep);
    margin: 0 0 16px 0;
    letter-spacing: -0.015em;
    word-break: break-word;
    text-transform: none !important;
}

.sante-post-title .sante-title-break {
    display: block;
    content: "";
    margin-top: 2px;
}

/* 3. Modern Author Byline (Mayo Clinic & Harvard Health Standard) */
.sante-post-byline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    margin-top: 14px;
    border-top: 1px solid #F1F5F9;
    gap: 16px;
}

.sante-byline-author-group {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sante-byline-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #F0FDF4;
    border: 1px solid #DCFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
    box-sizing: border-box;
}

.sante-byline-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 !important;
    display: block;
}

.sante-byline-meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.sante-byline-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sante-byline-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sante-navy-deep);
    line-height: 1.3;
}

.sante-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--sante-teal-light);
    color: var(--sante-teal-verified);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 999px;
    border: 1px solid rgba(13, 148, 136, 0.25);
    line-height: 1;
}

.sante-verified-badge i {
    font-size: 10px;
    display: inline-block;
}

.sante-byline-sub-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--sante-ink-muted);
    line-height: 1.4;
}

.sante-byline-dot {
    color: #CBD5E1;
    font-weight: 700;
    user-select: none;
}

.sante-byline-actions {
    flex-shrink: 0;
}

.sante-byline-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--sante-border-subtle);
    background: #FFFFFF;
    color: var(--sante-navy-deep);
    cursor: pointer;
    min-height: 32px;
    box-sizing: border-box;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.sante-byline-share-btn:hover {
    border-color: var(--sante-teal-verified);
    color: var(--sante-teal-verified);
    background: var(--sante-teal-light);
}

.sante-byline-share-btn i {
    font-size: 11.5px;
    display: inline-block;
}

.sante-btn-label {
    font-size: 11.5px;
    line-height: 1;
}

/* 4. Two-Column Layout */
.sante-post-body-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 36px;
    align-items: start;
}

/* 5. Main Article Column */
.sante-post-main-content {
    background: var(--sante-surface-card);
    border: 1px solid var(--sante-border-subtle);
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: var(--sante-shadow-card);
    min-width: 0;
    overflow: hidden;
}

/* Featured Media (No Negative Margin Collapse) */
.sante-post-featured-image-wrap {
    margin: 0 0 28px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: var(--sante-navy-deep);
    box-shadow: 0 2px 12px rgba(0, 31, 77, 0.06);
}

.sante-post-featured-image {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    display: block;
}

.sante-featured-caption {
    font-size: 12px;
    color: var(--sante-ink-muted);
    background: #F8FAFC;
    padding: 8px 16px;
    border-top: 1px solid var(--sante-border-subtle);
    text-align: center;
    font-style: italic;
}

/* Table of Contents (TOC) - Minimalist Floating Index */
.sante-toc-box {
    background: #FFFFFF;
    border: 1px solid rgba(0, 31, 77, 0.08);
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0 26px 0;
    box-shadow: 0 3px 12px rgba(0, 31, 77, 0.03);
}

.sante-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 9px;
    border-bottom: 1px solid #F1F5F9;
    user-select: none;
}

.sante-toc-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    color: var(--sante-navy-deep);
    margin: 0;
    letter-spacing: -0.01em;
}

.sante-toc-title i {
    color: var(--sante-gold-muted);
    font-size: 13px;
}

.sante-toc-toggle-btn {
    background: #F8FAFC;
    border: 1px solid var(--sante-border-subtle);
    color: var(--sante-ink-muted);
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 11px;
    cursor: pointer;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.sante-toc-toggle-btn:hover {
    color: var(--sante-navy-deep);
    border-color: var(--sante-gold-muted);
    background: #FFFFFF;
}

.sante-toc-list {
    margin: 6px 0 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sante-toc-list li {
    margin: 0;
    padding: 0;
    line-height: 1.4;
}

.sante-toc-list li a {
    color: var(--sante-ink-body);
    text-decoration: none;
    transition: all 0.18s ease;
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 4px 6px;
    border-radius: 6px;
    font-size: 13.5px;
    line-height: 1.4;
}

.sante-toc-list li a:hover,
.sante-toc-list li a.active {
    color: var(--sante-navy-deep);
    background: #F8FAFC;
    font-weight: 700;
}

.sante-toc-list li.toc-level-2 {
    font-weight: 600;
    margin-top: 2px;
}

.sante-toc-list li.toc-level-2 .toc-num-badge {
    color: var(--sante-gold-muted);
    font-weight: 800;
    font-size: 12.5px;
    font-family: inherit;
    flex-shrink: 0;
    min-width: 18px;
}

.sante-toc-list li.toc-level-3 {
    padding-left: 18px;
}

.sante-toc-list li.toc-level-3 a {
    color: var(--sante-ink-muted);
    font-size: 12.5px;
    padding: 2.5px 6px;
}

.sante-toc-list li.toc-level-3 a:hover,
.sante-toc-list li.toc-level-3 a.active {
    color: var(--sante-navy-deep);
    font-weight: 600;
}

.sante-toc-list li.toc-level-3 .toc-sub-num {
    color: #94A3B8;
    font-size: 11px;
    flex-shrink: 0;
}

/* Article Core Typography & Standardized Design System */
.sante-article-content {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--sante-ink-body);
    word-break: break-word;
}

.sante-article-content p {
    margin-bottom: 1.4rem;
    color: #334155;
    text-align: justify;
    text-wrap: pretty;
}

.sante-article-content strong,
.sante-article-content b {
    font-weight: 700;
    color: #0F172A;
}

.sante-article-content em,
.sante-article-content i {
    font-style: italic;
}

.sante-article-content u {
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

.sante-article-content a {
    color: var(--sante-teal-verified);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    font-weight: 600;
    transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.sante-article-content a:hover {
    color: var(--sante-navy-deep);
    text-decoration-color: var(--sante-navy-deep);
}

.sante-article-content mark,
.sante-article-content .highlight {
    background: #FEF08A;
    color: #854D0E;
    padding: 2px 6px;
    border-radius: 4px;
}

.sante-article-content code,
.sante-article-content kbd {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #0F172A;
    padding: 2px 7px;
    border-radius: 5px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.88em;
}

.sante-article-content pre {
    background: #0F172A;
    color: #F8FAFC;
    padding: 18px 22px;
    border-radius: 10px;
    overflow-x: auto;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 24px 0;
}

.sante-article-content hr {
    border: 0;
    height: 1px;
    background: var(--sante-border-subtle);
    margin: 32px 0;
}

/* Headings Hierarchy (H2 - H6) */
.sante-article-content h2,
.sante-editorial-h2 {
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 800;
    color: var(--sante-navy-deep);
    margin: 38px 0 16px 0;
    padding-left: 14px;
    border-left: 4px solid var(--sante-gold-champagne);
    line-height: 1.35;
    letter-spacing: -0.015em;
}

.sante-article-content h3,
.sante-editorial-h3 {
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 700;
    color: #0F766E;
    margin: 28px 0 12px 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.sante-article-content h4 {
    font-size: clamp(15px, 1.5vw, 17px);
    font-weight: 700;
    color: var(--sante-navy-deep);
    margin: 20px 0 8px 0;
    line-height: 1.45;
}

.sante-article-content h5,
.sante-article-content h6 {
    font-size: 14px;
    font-weight: 700;
    color: var(--sante-ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 16px 0 6px 0;
}

/* Lists (Unordered, Ordered, Nested) */
.sante-article-content ul {
    list-style: disc !important;
    padding-left: 24px !important;
    margin: 16px 0 24px 0 !important;
}

.sante-article-content ul ul {
    list-style: circle !important;
    margin: 6px 0 10px 0 !important;
}

.sante-article-content ul ul ul {
    list-style: square !important;
}

.sante-article-content ol {
    list-style: decimal !important;
    padding-left: 24px !important;
    margin: 16px 0 24px 0 !important;
}

.sante-article-content ol ol {
    list-style: lower-alpha !important;
    margin: 6px 0 10px 0 !important;
}

.sante-article-content li {
    margin-bottom: 8px !important;
    line-height: 1.75 !important;
    color: #334155 !important;
}

.sante-article-content li strong {
    color: #0F172A;
}

/* Images, Captions & Figures */
.sante-article-content img,
.sante-editorial-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 22px auto;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    object-fit: cover;
}

.sante-article-content figure,
.sante-editorial-figure,
.sante-img-card {
    margin: 26px 0;
    text-align: center;
}

.sante-article-content figure img,
.sante-editorial-figure img,
.sante-img-card img {
    margin: 0 auto 8px auto;
}

.sante-article-content figcaption,
.sante-img-caption,
.wp-caption-text {
    font-size: 13px;
    color: var(--sante-ink-muted);
    font-style: italic;
    line-height: 1.5;
    margin-top: 8px;
    text-align: center;
}

.sante-article-content .aligncenter,
.sante-article-content .align-center {
    display: block;
    margin: 22px auto;
    text-align: center;
}

.sante-article-content .alignleft,
.sante-article-content .align-left {
    float: left;
    margin: 8px 24px 16px 0;
    max-width: 48%;
    border-radius: 8px;
}

.sante-article-content .alignright,
.sante-article-content .align-right {
    float: right;
    margin: 8px 0 16px 24px;
    max-width: 48%;
    border-radius: 8px;
}

/* Blockquotes & Doctor Quotes */
.sante-article-content blockquote {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-left: 4px solid var(--sante-gold-champagne);
    border-radius: 0 12px 12px 0;
    padding: 20px 26px;
    margin: 26px 0;
    font-style: italic;
    font-size: 16px;
    line-height: 1.75;
    color: var(--sante-navy-deep);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 31, 77, 0.02);
}

.sante-article-content blockquote p {
    margin: 0 0 8px 0;
    text-align: left;
}

.sante-article-content blockquote cite,
.sante-article-content blockquote footer {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 13px;
    color: var(--sante-gold-muted);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Tables & Comparison Layouts */
.sante-article-content table,
.sante-table-wrap table,
table.sante-table,
.post-table-compare {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--sante-border-subtle);
    box-shadow: 0 2px 10px rgba(0, 31, 77, 0.03);
    background: #FFFFFF;
    font-size: 14.5px;
    min-width: 600px;
}

.sante-article-content table th,
.sante-table-wrap table th,
table.sante-table th,
.post-table-compare th {
    background: var(--sante-navy-deep);
    color: #FFFFFF;
    font-weight: 700;
    padding: 14px 18px;
    text-align: left;
    border-bottom: 2px solid var(--sante-gold-champagne);
    border-right: 1px solid rgba(255,255,255,0.1);
}

.sante-article-content table td,
.sante-table-wrap table td,
table.sante-table td,
.post-table-compare td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--sante-border-subtle);
    border-right: 1px solid var(--sante-border-subtle);
    color: var(--sante-ink-body);
    vertical-align: top;
    line-height: 1.6;
}

.sante-article-content table th:last-child,
.sante-article-content table td:last-child,
table.sante-table th:last-child,
table.sante-table td:last-child {
    border-right: none;
}

.sante-article-content table tr:last-child td,
table.sante-table tr:last-child td {
    border-bottom: none;
}

.sante-article-content table tr:nth-child(even) td,
table.sante-table tr:nth-child(even) td {
    background: #F8FAFC;
}

.sante-article-content table tr:hover td,
table.sante-table tr:hover td {
    background: var(--sante-teal-light);
}

.sante-table-wrap,
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 24px 0;
    border-radius: 12px;
}

/* ==========================================================================
   STANDARDIZED POST UTILITY COMPONENTS & BOXES (USE ACROSS ALL ARTICLES)
   ========================================================================== */

/* 1. Sapo / Highlight Note Box */
.post-box-highlight,
.sante-sapo {
    background: linear-gradient(135deg, #F0FDF4 0%, #F8FAFC 100%);
    border: 1px solid #CBD5E1;
    border-left: 4.5px solid #0F766E;
    padding: 20px 24px;
    border-radius: 10px;
    font-style: italic;
    font-size: 16px;
    line-height: 1.8;
    color: var(--sante-navy-deep);
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-wrap: pretty;
}

.post-box-highlight strong,
.sante-sapo strong {
    color: #0F766E;
    font-style: normal;
}

/* 2. Warning & Red Flags Danger Box */
.post-box-warning,
.sante-callout-danger {
    background: #FFF1F2;
    border: 1px solid #FECDD3;
    border-left: 4.5px solid #E11D48;
    padding: 18px 22px;
    border-radius: 10px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(225, 29, 72, 0.04);
}

/* 3. Info / Knowledge Callout Box */
.post-box-info,
.sante-callout {
    background: #EFF6FF;
    border: 1px solid #BFDBFE;
    border-left: 4.5px solid #2563EB;
    padding: 18px 22px;
    border-radius: 10px;
    margin: 22px 0;
}

/* 4. Tip / Gold Recommendation Box */
.post-box-tip,
.sante-callout-gold {
    background: #FFFBEB;
    border: 1px solid #FDE68A;
    border-left: 4.5px solid #D97706;
    padding: 18px 22px;
    border-radius: 10px;
    margin: 22px 0;
}

/* 5. Contrarian / Misconceptions Box */
.post-box-contrarian,
.sante-contrarian {
    background: #FFFDF7;
    border: 1px solid #FED7AA;
    border-left: 4.5px solid #F97316;
    padding: 20px 24px;
    border-radius: 10px;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.05);
}

.post-box-title,
.sante-callout-title,
.sante-contrarian-title {
    font-weight: 700;
    font-size: 15.5px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    text-wrap: balance;
}

.sante-contrarian-title {
    color: #C2410C;
}

.sante-callout-danger .sante-callout-title {
    color: #BE123C;
}

.sante-callout .sante-callout-title {
    color: #1D4ED8;
}

.sante-callout-gold .sante-callout-title {
    color: #B45309;
}

/* 6. Feature Grid & Cards (2 Columns) */
.post-grid-2,
.sante-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin: 22px 0;
}

.post-card-feature,
.sante-feature-box {
    background: #FFFFFF;
    border: 1px solid var(--sante-border-subtle);
    border-radius: 10px;
    padding: 18px 20px;
    box-shadow: 0 2px 6px rgba(0, 31, 77, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card-feature:hover,
.sante-feature-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 31, 77, 0.06);
}

.post-card-feature h4,
.sante-feature-box h4 {
    color: var(--sante-navy-deep);
    font-size: 15.5px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

/* 7. Clinical Process Steps (1, 2, 3, 4...) */
.post-step-list,
.sante-steps {
    counter-reset: post-step-counter;
    margin: 24px 0;
    padding-left: 0 !important;
    list-style: none !important;
}

.post-step-item,
.sante-step-item {
    position: relative;
    padding-left: 54px;
    margin-bottom: 22px;
    list-style: none !important;
}

.post-step-item::before,
.sante-step-item::before {
    counter-increment: post-step-counter;
    content: counter(post-step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 38px;
    height: 38px;
    background: var(--sante-navy-deep);
    color: var(--sante-gold-champagne);
    font-weight: 800;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 8px rgba(0, 31, 77, 0.2);
}

.post-step-title,
.sante-step-title {
    font-weight: 700;
    color: var(--sante-navy-deep);
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 1.4;
}

/* 8. FAQ Items */
.post-faq-item,
.sante-faq-item {
    background: #FFFFFF;
    border-bottom: 1px solid var(--sante-border-subtle);
    padding: 16px 0;
}

.post-faq-q,
.sante-faq-q {
    font-weight: 700;
    color: var(--sante-navy-deep);
    font-size: 15.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.post-faq-a,
.sante-faq-a {
    color: #475569;
    margin-left: 26px;
    margin-bottom: 0;
    line-height: 1.65;
    font-size: 15px;
}

/* 9. In-Article CTA Booking Banner (Quiet Luxury Medical Standard) */
.post-cta-booking,
.sante-cta-box {
    background: linear-gradient(145deg, #001F4D 0%, #09382B 100%);
    border: 1px solid rgba(197, 161, 101, 0.3);
    color: #FFFFFF;
    padding: 34px 28px 26px;
    border-radius: 16px;
    margin: 36px 0;
    text-align: center;
    box-shadow: 0 10px 30px -5px rgba(0, 31, 77, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.post-cta-booking h3,
.post-cta-booking > div:first-child,
.sante-cta-box h3,
.sante-cta-box > div:first-child {
    color: var(--sante-gold-champagne, #DFBA73) !important;
    font-size: clamp(17px, 2.2vw, 21px);
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 12px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1.4;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}

.post-cta-booking p,
.sante-cta-box p {
    color: #E2E8F0 !important;
    text-align: center !important;
    margin-bottom: 1.4rem;
    font-size: 14.5px;
    line-height: 1.65;
}

.post-cta-booking p:last-of-type,
.sante-cta-box p:last-of-type {
    margin-bottom: 0.8rem;
}

.post-cta-btn,
.sante-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #E6C887 0%, #C5A165 100%);
    color: #001F4D !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: 999px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(197, 161, 101, 0.45);
    transition: all 0.25s ease;
    max-width: 100%;
}

.post-cta-btn:hover,
.sante-cta-btn:hover {
    background: linear-gradient(135deg, #F0D597 0%, #DFBA73 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(197, 161, 101, 0.65);
    color: #001433 !important;
}

.post-contact-info,
.sante-contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: #CBD5E1;
    line-height: 1.5;
    text-align: left;
}

.post-contact-info br,
.sante-contact-info br {
    display: none;
}

.post-contact-info span,
.sante-contact-info span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(0, 15, 36, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    line-height: 1.5;
    color: #E2E8F0;
    text-align: left;
}

/* Master Clinical Procedure, Knowledge Cards & Callouts */
.sante-procedure-highlight-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 22px 24px;
    margin: 20px 0 28px 0;
    position: relative;
}

.sante-procedure-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0D9488;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 12px;
}

.sante-proc-current-step {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--sante-navy-deep);
    font-weight: 500;
}

.sante-clinical-checklist {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 18px 0 24px 0 !important;
}

.sante-clinical-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--sante-ink-body);
}

.sante-clinical-checklist li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #0D9488;
    font-size: 16px;
}

.sante-callout-clinical {
    background: #F0FDFA;
    border-left: 4px solid #0D9488;
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    margin: 24px 0;
}

.sante-callout-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #0F766E;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sante-callout-clinical p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #134E4A;
}

.sante-accordion-group {
    margin: 20px 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sante-faq-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.sante-faq-question {
    font-size: 15px;
    font-weight: 700;
    color: var(--sante-navy-deep);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sante-faq-question i {
    color: #C5A165;
}

.sante-faq-answer {
    font-size: 14px;
    line-height: 1.65;
    color: var(--sante-ink-body);
}

.sante-clinical-evidence-box {
    background: #FBF8F1;
    border: 1px solid #F1E5D1;
    border-radius: 12px;
    padding: 24px 26px;
    margin: 36px 0 28px 0;
}

.sante-takeaway-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 20px 0;
}

.sante-takeaway-card {
    background: #FFFFFF;
    border: 1px solid #EAE1D2;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 10px rgba(197, 161, 101, 0.06);
}

.sante-takeaway-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #FBF8F1;
    color: #B89558;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 10px;
}

.sante-takeaway-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--sante-navy-deep);
    margin-bottom: 6px;
}

.sante-takeaway-body {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sante-ink-body);
}

.sante-clinical-quote-card {
    background: #FFFFFF;
    border-left: 3.5px solid #C5A165;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin-top: 18px;
    position: relative;
}

.sante-clinical-quote-card i {
    color: #C5A165;
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 6px;
    display: block;
}

.sante-clinical-quote-card p {
    margin: 0 0 6px 0;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--sante-navy-deep);
}

.sante-quote-cite {
    font-size: 12px;
    font-weight: 700;
    color: #B89558;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Medical Disclaimer (Mayo Clinic & Vinmec Standard) */
.sante-medical-disclaimer {
    background: #F8FAFC;
    border: 1px solid var(--sante-border-subtle);
    border-left: 3.5px solid var(--sante-teal-verified);
    border-radius: 8px;
    padding: 14px 18px;
    margin: 28px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sante-disclaimer-icon {
    color: var(--sante-teal-verified);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

.sante-disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--sante-ink-muted);
}

.sante-disclaimer-text strong {
    color: var(--sante-navy-deep);
}

.sante-medical-disclaimer.sante-news-disclaimer {
    border-left: 3.5px solid var(--sante-navy-deep);
    background: #F8FAFC;
}

.sante-medical-disclaimer.sante-news-disclaimer .sante-disclaimer-icon {
    color: var(--sante-navy-deep);
}

.sante-verified-badge.sante-news-verified-badge {
    background: rgba(2, 132, 199, 0.1) !important;
    color: #0284C7 !important;
    border: 1px solid rgba(2, 132, 199, 0.25) !important;
}

/* Social Share & Verification Authority Bar */
.sante-post-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid var(--sante-border-subtle);
    border-bottom: 1px solid var(--sante-border-subtle);
    margin: 36px 0;
}

.sante-share-action-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.sante-share-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sante-navy-deep);
}

.sante-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--sante-border-subtle);
    background: #FFFFFF;
    color: var(--sante-ink-body);
    cursor: pointer;
    min-height: 38px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.sante-share-fb:hover {
    background: #1877F2 !important;
    border-color: #1877F2 !important;
    color: #FFFFFF !important;
}

.sante-share-tw:hover {
    background: #1DA1F2 !important;
    border-color: #1DA1F2 !important;
    color: #FFFFFF !important;
}

.sante-authority-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--sante-teal-verified);
    background: var(--sante-teal-light);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(13, 148, 136, 0.25);
}

/* Medical Author Bio Card (Mayo Clinic & Harvard Health Editorial Seal - Concept 1) */
.sante-author-bio-card {
    background: #FAFCFB;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 26px 28px;
    margin: 36px 0 28px 0;
    box-shadow: 0 4px 20px -4px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sante-author-bio-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0F766E 0%, #0D9488 40%, #C5A165 100%);
    opacity: 0.9;
}

.sante-author-bio-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 8px 24px -4px rgba(15, 23, 42, 0.07);
}

.sante-author-bio-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* 1. Top Certification Bar */
.sante-author-bio-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 12px;
    border-bottom: 1px dashed #E2E8F0;
}

.sante-author-bio-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0F766E;
    line-height: 1;
}

.sante-author-bio-kicker svg {
    color: #0D9488;
    flex-shrink: 0;
}

.sante-cchn-pill {
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    color: #475569;
    font-size: 11px;
    font-weight: 600;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    padding: 3px 8px;
    border-radius: 6px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

/* 2. Doctor Profile Main Row */
.sante-author-bio-profile {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sante-author-bio-avatar-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.sante-author-bio-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(13, 148, 136, 0.3);
    background: #F1F5F9;
    display: block;
    margin: 0 !important;
}

.sante-doc-verified-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 22px;
    height: 22px;
    background: #0D9488;
    color: #FFFFFF;
    border: 2.5px solid #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.sante-doc-verified-dot svg {
    display: block;
}

.sante-author-bio-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sante-author-bio-name {
    font-size: 19px;
    font-weight: 800;
    color: var(--sante-navy-deep);
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

.sante-author-name-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.18s ease;
}

.sante-author-name-link:hover {
    color: #0D9488;
}

.sante-author-bio-role {
    font-size: 12px;
    font-weight: 700;
    color: #0F766E;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-wrap: balance;
}

.sante-author-bio-degrees {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.45;
    text-wrap: pretty;
}

/* 3. Description */
.sante-author-bio-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #334155;
    margin: 0;
    text-align: justify;
    text-wrap: pretty;
    word-break: normal;
    overflow-wrap: break-word;
}

/* 4. Footer */
.sante-author-bio-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid #EEF2F6;
}

.sante-author-bio-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sante-bio-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 4px 10px;
    border-radius: 999px;
    line-height: 1.3;
}

.sante-bio-tag i {
    color: #0D9488;
    font-size: 11px;
}

.sante-author-bio-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sante-author-bio-link {
    font-size: 13px;
    font-weight: 600;
    color: #0F766E;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.18s ease;
}

.sante-author-bio-link:hover {
    color: #001F4D;
    transform: translateX(2px);
}

.sante-author-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #0F4C3A;
    color: #FFFFFF !important;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(15, 76, 58, 0.18);
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 38px;
    box-sizing: border-box;
}

.sante-author-book-btn:hover {
    background: #0D9488;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.25);
}

/* Post Navigation (Prev / Next with Rich Micro-Thumbnails) */
.sante-post-navigation {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    margin: 36px 0;
}

.sante-nav-card {
    background: #F8FAFC;
    border: 1px solid var(--sante-border-subtle);
    border-radius: 12px;
    padding: 14px 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sante-nav-card:hover {
    border-color: var(--sante-gold-champagne);
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 77, 0.05);
}

.sante-nav-thumb {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #E2E8F0;
}

.sante-nav-text {
    flex: 1;
    min-width: 0;
}

.sante-nav-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--sante-ink-muted);
    margin-bottom: 3px;
}

.sante-nav-title {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--sante-navy-deep);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 6. Sticky Sidebar */
.sante-post-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-width: 0;
}

.sante-sidebar-widget {
    background: var(--sante-surface-card);
    border: 1px solid var(--sante-border-subtle);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--sante-shadow-card);
}

/* Sidebar Doctor Consultation Card (Quiet Luxury Medical Faculty) */
.sante-sidebar-doctor-widget {
    background: #FFFFFF;
    border: 1px solid rgba(33, 18, 97, 0.08);
    border-radius: 20px;
    padding: 24px 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(33, 18, 97, 0.04);
    transition: all 0.28s ease;
    text-align: center;
}

.sante-sidebar-doctor-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(33, 18, 97, 0.08);
    border-color: rgba(0, 206, 124, 0.3);
}

.sante-sidebar-doc-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.sante-sidebar-doc-top .sante-sidebar-live-pill {
    background: #E8F7F0;
    border: 1px solid rgba(0, 206, 124, 0.25);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    color: #00875A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.sante-sidebar-doc-top .sante-sidebar-live-pill .pulse-dot {
    width: 6px;
    height: 6px;
    background: #00CE7C;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(0, 206, 124, 0.3);
    flex-shrink: 0;
    display: inline-block;
}

.sante-doc-avatar-wrapper {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 4px auto 0 auto;
}

.sante-doc-avatar-ring {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3.5px solid #FFFFFF;
    box-shadow: 0 6px 20px rgba(33, 18, 97, 0.12);
}

.sante-sidebar-doc-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 5%;
    transform: none;
    display: block;
    background: #F8FAFC;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.sante-sidebar-doctor-widget:hover .sante-sidebar-doc-avatar {
    transform: scale(1.04);
}

.doc-online-status {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 18px;
    height: 18px;
    background: #00CE7C;
    border: 2.5px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 206, 124, 0.35);
    z-index: 3;
}

.sante-sidebar-doc-body {
    padding: 0;
    text-align: center;
    background: transparent;
}

.sante-sidebar-doc-name {
    font-size: 17px;
    font-weight: 800;
    color: #211261;
    margin: 0 0 4px 0;
    line-height: 1.35;
    text-wrap: balance;
}

.sante-sidebar-doc-role {
    font-size: 11.5px;
    font-weight: 700;
    color: #00875A;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-wrap: balance;
}

.sante-sidebar-widget-sub {
    font-size: 13px;
    color: #64748B;
    margin: 0 0 18px 0;
    line-height: 1.55;
    text-wrap: pretty;
}

.sante-sidebar-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sante-sidebar-booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #211261;
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 13.5px;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    min-height: 48px;
    box-sizing: border-box;
    box-shadow: 0 4px 14px rgba(33, 18, 97, 0.15);
    transition: all 0.22s ease;
}

.sante-sidebar-booking-btn:hover {
    transform: translateY(-2px);
    background: #00CE7C;
    box-shadow: 0 6px 18px rgba(0, 206, 124, 0.3);
    color: #FFFFFF !important;
}

.sante-sidebar-hotline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    color: #64748B !important;
    text-decoration: none;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.sante-sidebar-hotline-link strong {
    color: #211261;
}

.sante-sidebar-hotline-link:hover {
    color: #00CE7C !important;
}

.sante-sidebar-hotline-link:hover strong {
    color: #00CE7C;
}

/* Sidebar Recent / Trending Posts */
.sante-sidebar-posts-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--sante-navy-deep);
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sante-gold-champagne);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sante-sidebar-posts-title i {
    color: var(--sante-gold-muted);
}

.sante-sidebar-posts-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sante-sidebar-post-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.sante-sidebar-post-item:hover {
    transform: translateX(4px);
}

.sante-sidebar-post-thumb {
    width: 72px;
    height: 54px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: #E2E8F0;
}

.sante-sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sante-sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sante-sidebar-post-item-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--sante-ink-primary);
    line-height: 1.35;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.sante-sidebar-post-item:hover .sante-sidebar-post-item-title {
    color: var(--sante-teal-verified);
}

.sante-sidebar-post-item-date {
    font-size: 11px;
    color: var(--sante-ink-muted);
}

/* Sidebar Guarantee Box */
.sante-guarantee-flex {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sante-guarantee-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--sante-teal-light);
    color: var(--sante-teal-verified);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.sante-guarantee-title {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 700;
    color: var(--sante-navy-deep);
}

.sante-guarantee-desc {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--sante-ink-body);
}

/* Toast Notification */
#sante-toast-notice {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--sante-navy-deep);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-size: 13.5px;
    font-weight: 600;
    z-index: 999999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

#sante-toast-notice.sante-toast-show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .sante-single-post-wrap {
        padding-top: 20px !important;
    }

    .sante-post-body-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sante-post-main-content {
        padding: 24px 20px;
    }

    .sante-post-navigation {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .sante-post-byline {
        padding-top: 12px;
        margin-top: 12px;
        gap: 12px;
    }

    .sante-byline-avatar {
        width: 36px;
        height: 36px;
        padding: 3px;
    }

    .sante-byline-name {
        font-size: 13px;
    }

    .sante-verified-badge {
        font-size: 10px;
        padding: 1.5px 6px;
    }

    .sante-byline-sub-row {
        font-size: 11.5px;
    }

    .sante-byline-share-btn {
        padding: 5px 12px;
        min-height: 30px;
        font-size: 11.5px;
    }

    .sante-post-bottom-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 16px 0;
    }

    .sante-share-action-group {
        justify-content: flex-start;
        width: 100%;
        gap: 8px;
    }

    .sante-authority-badge {
        align-self: flex-start;
        font-size: 11.5px;
    }
}

@media (max-width: 420px) {
    .sante-byline-share-btn {
        padding: 6px;
        width: 34px;
        height: 34px;
        min-height: 34px;
        border-radius: 50%;
    }

    .sante-byline-share-btn .sante-btn-label {
        display: none;
    }

    .sante-byline-share-btn i {
        font-size: 13px;
        margin: 0;
    }
}

@media (max-width: 576px) {
    .sante-single-post-wrap {
        padding-top: 14px !important;
        padding-bottom: 40px !important;
    }

    .sante-post-container {
        padding: 0 12px;
    }

    .sante-post-main-content {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .sante-post-heading-block {
        margin-bottom: 14px;
        padding-bottom: 12px;
    }

    .sante-breadcrumb-list {
        font-size: 12px;
        gap: 6px;
    }

    .sante-post-title {
        font-size: 19.5px;
        line-height: 1.35;
        margin-bottom: 10px;
        letter-spacing: -0.01em;
    }

    .sante-post-title .sante-title-break {
        display: inline;
    }

    .sante-article-content {
        font-size: 15.5px;
        line-height: 1.75;
    }

    .sante-article-content p {
        margin-bottom: 1.2rem;
    }

    .sante-article-content h2 {
        font-size: 18px;
        margin: 26px 0 10px 0;
        padding-left: 10px;
        border-left-width: 3px;
    }

    .sante-article-content h3 {
        font-size: 16px;
        margin: 20px 0 8px 0;
    }

    .sante-toc-box {
        padding: 12px 14px;
        margin: 14px 0 20px 0;
        border-radius: 10px;
    }

    .sante-toc-title {
        font-size: 13.5px;
    }

    .sante-toc-header {
        padding-bottom: 7px;
    }

    .sante-toc-list {
        margin-top: 4px;
        gap: 0;
    }

    .sante-toc-list li a {
        padding: 3px 4px;
        font-size: 13px;
        gap: 7px;
    }

    .sante-toc-list li.toc-level-2 .toc-num-badge {
        font-size: 12px;
        min-width: 16px;
    }

    .sante-author-bio-card {
        padding: 20px 16px;
        margin: 24px 0;
        border-radius: 14px;
    }

    .sante-author-bio-inner {
        gap: 14px;
    }

    .sante-author-bio-topbar {
        padding-bottom: 10px;
        gap: 8px;
    }

    .sante-author-bio-kicker {
        font-size: 10.5px;
    }

    .sante-cchn-pill {
        font-size: 10px;
        padding: 2px 6px;
    }

    .sante-author-bio-profile {
        gap: 14px;
        align-items: center;
    }

    .sante-author-bio-avatar-wrap {
        width: 72px;
        height: 72px;
    }

    .sante-doc-verified-dot {
        width: 18px;
        height: 18px;
        bottom: 0px;
        right: 0px;
    }

    .sante-author-bio-name {
        font-size: 17px;
        text-wrap: balance;
    }

    .sante-author-bio-role {
        font-size: 11.5px;
        text-wrap: balance;
    }

    .sante-author-bio-degrees {
        font-size: 12px;
        line-height: 1.4;
        text-wrap: pretty;
    }

    .sante-author-bio-desc {
        font-size: 13.5px;
        line-height: 1.65;
        text-align: left;
        text-wrap: pretty;
        word-break: normal;
        overflow-wrap: break-word;
    }

    .sante-author-bio-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding-top: 12px;
    }

    .sante-author-bio-badges {
        justify-content: flex-start;
        gap: 6px;
    }

    .sante-bio-tag {
        font-size: 11px;
        padding: 3px 8px;
    }

    .sante-author-bio-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
    }

    .sante-author-book-btn {
        width: 100%;
        padding: 10px 14px;
        font-size: 13px;
        min-height: 42px;
    }

    .sante-author-bio-link {
        width: 100%;
        justify-content: center;
        text-align: center;
        font-size: 12.5px;
        padding: 4px 0;
    }

    .sante-post-featured-image-wrap {
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .sante-post-navigation {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 24px 0;
    }

    .sante-nav-card {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }

    .sante-nav-thumb {
        width: 48px;
        height: 48px;
        border-radius: 6px;
    }

    .sante-nav-title {
        font-size: 12.5px;
        line-height: 1.35;
    }

    .sante-sidebar-doctor-widget {
        padding: 18px 14px !important;
        border-radius: 14px;
    }

    .sante-doc-avatar-wrapper {
        width: 96px;
        height: 96px;
    }

    .doc-online-status {
        bottom: 6px;
        right: 6px;
        width: 14px;
        height: 14px;
    }

    .sante-sidebar-doc-name {
        font-size: 16px;
    }

    .sante-sidebar-widget {
        padding: 16px 14px;
        border-radius: 12px;
    }

    .sante-sidebar-posts-title {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .sante-sidebar-posts-list {
        gap: 10px;
    }

    .sante-sidebar-post-thumb {
        width: 64px;
        height: 48px;
    }

    .sante-sidebar-post-item-title {
        font-size: 12.5px;
    }

    /* Mobile In-Article CTA Banner & Hotline Refinement */
    .post-cta-booking,
    .sante-cta-box {
        padding: 22px 14px 18px !important;
        margin: 24px 0 !important;
        border-radius: 14px !important;
    }

    .post-cta-booking h3,
    .post-cta-booking > div:first-child,
    .sante-cta-box h3,
    .sante-cta-box > div:first-child {
        font-size: 15px !important;
        line-height: 1.35 !important;
        margin-bottom: 8px !important;
    }

    .post-cta-booking p,
    .sante-cta-box p {
        font-size: 13.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 12px !important;
    }

    .post-cta-btn,
    .sante-cta-btn {
        display: flex !important;
        width: 100% !important;
        padding: 12px 12px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        border-radius: 10px !important;
        white-space: normal !important;
        word-break: break-word !important;
        box-sizing: border-box !important;
        min-height: 44px;
        justify-content: center !important;
    }

    .post-contact-info,
    .sante-contact-info {
        gap: 6px !important;
        margin-top: 14px !important;
        padding-top: 12px !important;
        font-size: 12px !important;
    }

    .post-contact-info span,
    .sante-contact-info span {
        padding: 7px 10px !important;
        font-size: 12px !important;
        line-height: 1.45 !important;
        border-radius: 6px !important;
        text-align: left !important;
    }

    /* Mobile Callouts & Content Grids */
    .post-box-warning,
    .post-box-info,
    .post-box-tip,
    .post-box-contrarian,
    .sante-callout,
    .sante-callout-danger,
    .sante-callout-gold,
    .sante-contrarian {
        padding: 14px 14px !important;
        margin: 16px 0 !important;
        border-radius: 8px !important;
    }

    .post-box-title,
    .sante-callout-title,
    .sante-contrarian-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
    }

    .post-card-feature,
    .sante-feature-box {
        padding: 14px 14px !important;
        border-radius: 8px !important;
    }

    .sante-procedure-highlight-card {
        padding: 16px 14px !important;
        margin: 16px 0 !important;
    }

    .sante-quote-box {
        padding: 16px 14px !important;
        margin: 18px 0 !important;
    }

    .sante-faq-box {
        padding: 14px 12px !important;
    }

    .sante-article-content table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
