/* OVU Article CSS - Consistent with OVU Brand Typography */
/* Updated: January 2025 - CONSOLIDATED VERSION */
/*
   Font System:
   - Headings (H1-H6): Inter (font-weight: 600)
   - Body Text & Paragraphs: Proxima Nova (font-weight: 300)
   - Consistent with main OVU site (ovu.com)
*/


/* ============================================
   ARTICLE BREADCRUMB & METADATA STYLES
   Mobile-First Approach (375px base)
   ============================================ */

/* Breadcrumb Navigation */
.breadcrumb {
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 16px 0;
  padding: 0;
  font-weight: 300;
}

.breadcrumb a {
  color: #2563EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: #1D4ED8;
  text-decoration: underline;
}

/* Article Metadata Container */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 24px 0;
  padding: 12px 0;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  font-weight: 300;
}

/* Individual Metadata Items */
.article-meta > span {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0;
  margin: 0;
  color: #6B7280;
  font-style: normal;
  font-weight: 300;
  white-space: normal;
}

/* Separator between metadata items (optional - using gap instead) */
.article-meta > span:not(:last-child)::after {
  content: "";
  display: none; /* Using flex gap instead of separators for cleaner look */
}

/* Nested spans (like reviewer name) inherit parent styling */
.article-meta > span span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  display: inline;
}

/* Evidence-based badge - slightly emphasized */
.article-meta > span:last-child {
  font-weight: 400;
  color: #059669;
}

/* Links within metadata */
.article-meta a {
  color: #2563EB;
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-meta a:hover {
  color: #1D4ED8;
  text-decoration: underline;
}

/* Tablet & Desktop Adjustments */
@media (min-width: 768px) {
  .breadcrumb {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .article-meta {
    font-size: 15px;
    gap: 16px 24px;
    padding: 16px 0;
  }
}

/* Large Desktop Adjustments */
@media (min-width: 1024px) {
  .article-meta {
    gap: 20px 32px;
  }
}



/* ============================================
           MEDICAL REVIEWER ENHANCEMENT CSS
           ============================================ */

/* Enhanced Article Meta Section */
#post-content .article-meta-enhanced {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin: 16px 0 20px 0 !important;
}

#post-content .meta-row {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    font-size: 14px !important;
    color: #6b7280 !important;
}

#post-content .meta-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    white-space: nowrap !important;
}

#post-content .meta-item + .meta-item::before {
    content: "•" !important;
    margin: 0 6px !important;
    color: #dee2e6 !important;
}

/* Medical Reviewer Link */
#post-content .reviewer-link {
    color: #4f46e5 !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
}

#post-content .reviewer-link:hover {
    color: #3730a3 !important;
    text-decoration: underline !important;
}

/* Verified Badge Icon */
#post-content .verified-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 16px !important;
    height: 16px !important;
    background: #27ae60 !important;
    border-radius: 50% !important;
}

#post-content .verified-badge svg {
    width: 10px !important;
    height: 10px !important;
    fill: white !important;
}

/* Medical Reviewer Box */
#post-content .medical-reviewer-box {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 100%) !important;
    border: 1px solid #d4e3f4 !important;
    padding: 20px !important;
    border-radius: 12px !important;
    margin: 25px 0 !important;
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.08) !important;
}

#post-content .reviewer-header {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 12px !important;
}

/* Reviewer Avatar */
#post-content .reviewer-avatar {
    width: 60px !important;
    height: 60px !important;
    background: white !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    flex-shrink: 0 !important;
}

#post-content .reviewer-avatar-text {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #4f46e5 !important;
}

#post-content .reviewer-info {
    flex: 1 !important;
}

#post-content .reviewer-name {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1b1f23 !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

#post-content .reviewer-title {
    font-size: 14px !important;
    color: #6b7280 !important;
    margin-bottom: 8px !important;
}

/* Reviewer Credentials */
#post-content .reviewer-credentials {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 12px !important;
}

#post-content .credential-tag {
    display: inline-block !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    color: #2c3e50 !important;
}

#post-content .reviewer-bio {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #1b1f23 !important;
    margin-bottom: 12px !important;
}

/* Reviewer CTA Button */
#post-content .reviewer-cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 16px !important;
    background: white !important;
    color: #4f46e5 !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border: 1px solid #4f46e5 !important;
    transition: all 0.2s ease !important;
}

#post-content .reviewer-cta:hover {
    background: #4f46e5 !important;
    color: white !important;
}

#post-content .reviewer-cta svg {
    width: 14px !important;
    height: 14px !important;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    #post-content .meta-row {
        font-size: 13px !important;
    }

    #post-content .medical-reviewer-box {
        margin: 20px 0 !important;
        padding: 16px !important;
    }

    #post-content .reviewer-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    #post-content .reviewer-credentials {
        justify-content: center !important;
    }

    #post-content .reviewer-bio {
        text-align: center !important;
    }

    #post-content .reviewer-cta {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 375px) {
    #post-content .meta-item {
        font-size: 12px !important;
    }

    #post-content .reviewer-name {
        font-size: 16px !important;
    }

    #post-content .reviewer-bio {
        font-size: 13px !important;
    }
}

/* ============================================
   GENERAL CONTENT STYLES
   ============================================ */

/* Main container styling */
#post-content.ovu-article {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 4px !important;
  background: transparent !important;
}

/* Target the actual content area - Using OVU's Proxima Nova */
#post-content .the-post-description,
#post-content .post-body {
  font-family: proxima-nova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  color: #0f172a !important;
}

/* ============================================
   HEADINGS - Fluid Responsive (Premium)
   ============================================ */

#post-content .the-post-description h1,
#post-content .post-body h1,
#post-content h1 {
  font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(30px, 4.8vw, 44px) !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
  margin: 20px 0 25px 0 !important;
  color: #1b1f23 !important;
  letter-spacing: -0.02em !important;
}

#post-content .the-post-description h2,
#post-content .post-body h2,
#post-content h2 {
  font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(22px, 3.2vw, 30px) !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  margin: 35px 0 20px 0 !important;
  color: #1b1f23 !important;
  letter-spacing: -0.01em !important;
  clear: both !important;
}

#post-content .the-post-description h3,
#post-content .post-body h3,
#post-content h3 {
  font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(18px, 2.2vw, 22px) !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin: 25px 0 15px 0 !important;
  color: #1b1f23 !important;
}

#post-content h4 {
  font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(16px, 2vw, 20px) !important;
  line-height: 1.3 !important;
}

/* Paragraphs - Using Proxima Nova */
#post-content .the-post-description p,
#post-content .post-body p {
  font-family: proxima-nova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  margin: 12px 0 !important;
  color: #1b1f23 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
}

/* Body links */
#post-content .the-post-description a,
#post-content .post-body a,
#post-content a {
  color: #1d4ed8 !important;
  text-decoration: underline !important;
}

#post-content .the-post-description a:hover,
#post-content .post-body a:hover,
#post-content a:hover {
  color: #0b3fb5 !important;
}

/* Special text classes */
#post-content .kicker {
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #4f46e5 !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  margin-bottom: 8px !important;
  display: block !important;
}

#post-content .lede {
  font-size: 20px !important;
  line-height: 1.5 !important;
  color: #5b6470 !important;
  margin-bottom: 25px !important;
}

/* ============================================
   CARD PRIMITIVES & CALLOUTS (Consolidated)
   ============================================ */

#post-content .card,
#post-content .callout,
#post-content .clinic-spotlight,
#post-content .expert-box,
#post-content .author-box,
#post-content .help-box {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.06) !important;
  padding: clamp(16px, 2.4vw, 24px) !important;
  margin: clamp(16px, 3vw, 28px) 0 !important;
  color: #0f172a !important;
}

#post-content .callout.quick {
  display: flex !important;
  gap: 15px !important;
  align-items: flex-start !important;
  background: #eef2ff !important;
}

#post-content .callout .icon {
  font-size: 24px !important;
  flex-shrink: 0 !important;
}

/* Quick Answer (hero callout) */
#post-content .quick-answer {
  position: relative !important;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2ff 100%) !important;
  border: 1px solid #e0e7ff !important;
  padding-left: clamp(18px, 3vw, 28px) !important;
}

#post-content .quick-answer:before {
  content: "💡";
  position: absolute !important;
  left: 16px;
  top: 16px;
  font-size: 22px;
}

#post-content .quick-answer h3 {
  margin: 0 0 8px 0 !important;
}

#post-content .quick-answer ul {
  margin: 6px 0 10px 0 !important;
  padding-left: 18px !important;
}

#post-content .quick-answer li {
  margin: 6px 0 !important;
}

/* ============================================
   KEY FACTS GRID - FIXED FOR MOBILE OVERLAP
   ============================================ */

#post-content .keyfacts {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 20px !important;
  margin: 30px 0 !important;
}

#post-content .fact {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  padding: 18px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

#post-content .fact strong {
  display: block !important;
  margin-bottom: 12px !important;
  font-size: 18px !important;
  color: #1b1f23 !important;
  border-bottom: 2px solid #e5e7eb !important;
  padding-bottom: 8px !important;
}

/* FIX FOR PRICE OVERLAP - Desktop */
#post-content .fact p {
  margin: 10px 0 !important;
  line-height: 1.6 !important;
  clear: both !important;
}

/* ============================================
   TABLE STYLES (Consolidated)
   ============================================ */

/* Responsive wrapper for ANY table */
#post-content .table-scroll {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 25px 0 !important;
}

/* Basic data table - CONSOLIDATED */
#post-content .data-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: white !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
  margin: 30px 0 !important;
  font-size: 14px !important;
  overflow: hidden !important;
  table-layout: fixed !important;
}

#post-content .data-table thead {
  background: #2c3e50 !important;
}

#post-content .data-table th {
  font-family: Inter, -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  padding: 16px 15px !important;
  text-align: left !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  color: white !important;
  background: #2c3e50 !important;
  border-bottom: 2px solid #1a252f !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

#post-content .data-table td {
  font-family: proxima-nova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 300 !important;
  padding: 14px 15px !important;
  border-bottom: 1px solid #f0f0f1 !important;
  font-size: 14px !important;
  color: #111827 !important;
  background: white !important;
  line-height: 1.5 !important;
  vertical-align: top !important;
}

#post-content .data-table tbody tr:hover {
  background: #f8f9fa !important;
}

#post-content .data-table tr:last-child td {
  border-bottom: none !important;
}

/* Two-column tables */
#post-content .data-table.two-col th:first-child,
#post-content .data-table.two-col td:first-child {
  width: 40% !important;
}

#post-content .data-table.two-col th:last-child,
#post-content .data-table.two-col td:last-child {
  width: 60% !important;
}

/* ============================================
   BIG TABLE STYLES - Fixed Country Column
   ============================================ */

.big-table-wrapper {
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 30px 0 !important;
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

.big-table-wrapper table.big-table {
  width: 100% !important;
  min-width: 900px !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  font-size: 14px !important;
}

.big-table thead {
  background: #2c3e50 !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 10 !important;
}

.big-table th {
  padding: 16px 15px !important;
  text-align: left !important;
  font-weight: 500 !important;
  font-size: 9px !important;
  color: white !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border-bottom: 1px solid #1a252f !important;
  background: #2c3e50 !important;
}

/* Fix for country column */
.big-table th:first-child,
.big-table td:first-child {
  width: 120px !important;
  min-width: 120px !important;
  max-width: 140px !important;
  font-weight: 500 !important;
  color: #1b1f23 !important;
  background: #f8f9fa !important;
  position: sticky !important;
  left: 0 !important;
  z-index: 5 !important;
}

.big-table tbody tr {
  background: white !important;
  border-bottom: 1px solid #f0f0f1 !important;
}

.big-table tbody tr:hover {
  background: #f8f9fa !important;
}

.big-table td {
  padding: 13px 14px !important;
  color: #374151 !important;
  line-height: 1.5 !important;
  vertical-align: top !important;
  border-right: 1px solid #f0f0f1 !important;
}

.big-table td:last-child {
  border-right: none !important;
}

/* ============================================
   MOBILE STACK TABLES
   ============================================ */

@media (max-width: 768px) {
  #post-content .mobile-stack thead {
    display: none !important;
  }

  #post-content .mobile-stack tbody {
    display: block !important;
  }

  #post-content .mobile-stack tr {
    display: block !important;
    margin-bottom: 15px !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    padding: 15px !important;
    background: white !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
  }

  #post-content .mobile-stack td {
    display: block !important;
    padding: 8px 0 !important;
    border: none !important;
    text-align: left !important;
  }

  #post-content .mobile-stack td:before {
    content: attr(data-label) ": " !important;
    font-weight: 600 !important;
    display: block !important;
    width: 100% !important;
    color: #475569 !important;
    margin-bottom: 5px !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
  }

  #post-content .mobile-stack td:first-child {
    font-weight: 700 !important;
    font-size: 16px !important;
    border-bottom: 1px solid #ecf0f1 !important;
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }

  #post-content .mobile-stack td:first-child:before {
    display: none !important;
  }

  /* Special styling for price cells in mobile stack */
  #post-content .mobile-stack td.price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #047857 !important;
    padding-top: 12px !important;
  }
}

/* ============================================
   STATUS INDICATORS & BADGES
   ============================================ */

#post-content .status-yes {
  color: #27ae60 !important;
  font-weight: 700 !important;
  text-align: center !important;
  font-size: 18px !important;
}

#post-content .status-no {
  color: #e74c3c !important;
  font-weight: 700 !important;
  text-align: center !important;
  font-size: 18px !important;
}

#post-content .status-partial {
  color: #f39c12 !important;
  font-weight: 700 !important;
  text-align: center !important;
  font-size: 18px !important;
}

#post-content .status-maybe {
  color: #95a5a6 !important;
  font-weight: 700 !important;
  text-align: center !important;
  font-size: 18px !important;
}

#post-content .status-na {
  color: #95a5a6 !important;
  text-align: center !important;
  font-size: 14px !important;
}

#post-content .status-changing {
  color: #3498db !important;
  font-weight: 600 !important;
  text-align: center !important;
  font-size: 12px !important;
}

#post-content .status-special {
  background: #e8f8f5 !important;
}

#post-content .badge {
  display: inline-block !important;
  padding: 4px 10px !important;
  font-weight: 600 !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  margin: 0 2px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

#post-content .badge-green {
  background: #d4edda !important;
  color: #155724 !important;
}

#post-content .badge-red {
  background: #f8d7da !important;
  color: #721c24 !important;
}

#post-content .badge-yellow {
  background: #fff3cd !important;
  color: #856404 !important;
}

#post-content .badge-blue {
  background: #d1ecf1 !important;
  color: #0c5460 !important;
}

/* ============================================
   FAQ SECTION - JavaScript Accordion (CMS-Safe)
   ============================================ */

#post-content .faq-section {
  margin: 26px 0 10px 0 !important;
}

#post-content .faq-section h2 {
  margin-bottom: 15px !important;
}

/* FAQ Item Container */
#post-content .faq-item {
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  margin-bottom: 8px !important;
  overflow: hidden !important;
  background: #fff !important;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04) !important;
}

/* FAQ Question (Clickable) */
#post-content .faq-question {
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  user-select: none !important;
  padding: 14px 16px !important;
  font-weight: 800 !important;
  background: #f9fafb !important;
  transition: background 0.2s ease-in-out !important;
}

#post-content .faq-question:hover {
  background: #f1f5f9 !important;
}

/* Plus/Minus Icon */
#post-content .faq-question::after {
  content: '+' !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  color: #6b7280 !important;
  transition: transform 0.2s ease-in-out !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  margin-left: 10px !important;
}

/* H3 inside FAQ question */
#post-content .faq-question h3 {
  margin: 0 !important;
  padding: 0 !important;
  font-size: clamp(16px, 2vw, 18px) !important;
  font-weight: 800 !important;
}

/* FAQ Answer (Hidden by default) */
#post-content .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 16px !important;
  background: white !important;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out !important;
}

/* FAQ Answer paragraphs */
#post-content .faq-answer p {
  margin: 0 0 12px 0 !important;
  line-height: 1.6 !important;
}

#post-content .faq-answer p:last-child {
  margin-bottom: 0 !important;
}

/* OPEN STATE - Applied by JavaScript */
#post-content .faq-item.open .faq-question {
  background: #eef2ff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

#post-content .faq-item.open .faq-question::after {
  content: '−' !important;
  transform: rotate(180deg) !important;
}

#post-content .faq-item.open .faq-answer {
  max-height: 2000px !important;
  padding: 16px !important;
}

#post-content .faq-item.open .faq-answer p:first-child {
  margin-top: 0 !important;
}

/* ============================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================ */

#post-content .btn {
  display: inline-block !important;
  padding: 11px 16px !important;
  border-radius: 12px !important;
  border: 1px solid #d1d5db !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  transition: background .2s ease, box-shadow .2s ease !important;
}

#post-content .btn-primary {
  background: #4f46e5 !important;
  color: #fff !important;
  border-color: #4338ca !important;
}

#post-content .btn-primary:hover {
  background: #4338ca !important;
}

#post-content .btn-quiet {
  background: #f3f4f6 !important;
  color: #111827 !important;
  border-color: #e5e7eb !important;
}

#post-content a:focus-visible,
#post-content .btn:focus-visible {
  outline: 3px solid #818cf8 !important;
  outline-offset: 2px !important;
  border-radius: 10px !important;
}

/* ============================================
   CTA SECTIONS (Internal Links Pattern)
   ============================================ */

#post-content .cta {
  background: linear-gradient(135deg, #eef2ff, #f0fdf4) !important;
  border: 1px solid #e5e7eb !important;
  padding: 30px !important;
  border-radius: 16px !important;
  margin: 35px 0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
}

/* ============================================
   CLINIC SPOTLIGHT & SPECIAL BOXES
   ============================================ */

#post-content .clinic-spotlight h4,
#post-content .expert-box h3,
#post-content .author-box h4 {
  margin-top: 0 !important;
  margin-bottom: 10px !important;
  font-weight: 800 !important;
}

#post-content .clinic-spotlight ul,
#post-content .clinic-spotlight li {
  margin: 8px 0 6px 0 !important;
}

/* Pro tips & notes */
#post-content .pro-tip {
  background: #f0fdf4 !important;
  border-color: #bbf7d0 !important;
}

#post-content .qline {
  border-left: 4px solid #6366f1 !important;
  padding-left: 20px !important;
  background: #f6f7fb !important;
  padding: 15px 15px 15px 20px !important;
  border-radius: 0 8px 8px 0 !important;
  margin: 25px 0 !important;
}

/* Author / Brand commitment box */
#post-content .author-box {
  display: grid !important;
  grid-template-columns: 64px 1fr !important;
  gap: 14px !important;
  align-items: start !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

#post-content .author-box .avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e2e8f0;
  border: 1px solid #e5e7eb;
}

#post-content .author-box ul {
  margin: 8px 0 0 0 !important;
  padding-left: 18px !important;
}

#post-content .author-box li {
  margin: 6px 0 !important;
}

/* ============================================
   TRUST BOX
   ============================================ */

#post-content .trust-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%) !important;
  padding: 24px !important;
  border-radius: 12px !important;
  margin: 30px 0 !important;
  border-left: 4px solid #0891b2 !important;
}

#post-content .trust-box .trust-content {
  display: flex !important;
  align-items: flex-start !important;
  gap: 20px !important;
}

#post-content .trust-box .profile-image {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid white !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

#post-content .trust-box .trust-text {
  flex: 1 !important;
}

#post-content .trust-box h3 {
  margin: 0 0 12px 0 !important;
  color: #0f172a !important;
  font-size: 18px !important;
  font-weight: 600 !important;
}

#post-content .trust-box p {
  color: #475569 !important;
  line-height: 1.6 !important;
  margin: 0 0 12px 0 !important;
  font-size: 15px !important;
}

/* ============================================
   OTHER CONTENT ELEMENTS
   ============================================ */

#post-content .country-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 20px !important;
  margin: 30px 0 !important;
}

#post-content .pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: #f6f7fb !important;
  border: 1px solid #e5e7eb !important;
  padding: 6px 12px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  margin: 4px 4px 4px 0 !important;
}

#post-content .tag {
  display: inline-block !important;
  background: #eef2ff !important;
  color: #3730a3 !important;
  border: 1px solid #e0e7ff !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

#post-content .checklist {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 15px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 20px 0 !important;
}

#post-content .checklist li,
#post-content ol.checklist li {
  list-style: none !important;
  padding-left: 35px !important;
  position: relative !important;
  margin: 10px 0 !important;
}

#post-content .checklist li:before,
#post-content ol.checklist li:before {
  content: "✓" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  color: #22c55e !important;
  font-weight: 900 !important;
  font-size: 20px !important;
}

#post-content .foot {
  font-size: 14px !important;
  color: #6b7280 !important;
  margin-top: 20px !important;
}

#post-content .grid {
  display: grid !important;
  gap: 20px !important;
}

#post-content .grid.twocol {
  grid-template-columns: 1fr 1fr !important;
}

#post-content ul li,
#post-content ol li {
  font-family: proxima-nova, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
  font-weight: 300 !important;
  margin: 8px 0 !important;
  line-height: 1.6 !important;
  color: #1b1f23 !important;
}

#post-content ul li strong,
#post-content ol li strong,
#post-content ul li b,
#post-content ol li b {
  color: #1b1f23 !important;
  font-weight: 700 !important;
}

#post-content .note {
  font-size: 14px !important;
  color: #6b7280 !important;
  font-style: italic !important;
  margin: 15px 0 !important;
}

#post-content .the-post-description img {
  max-width: 100% !important;
  height: auto !important;
}

#post-content .legend {
  background: #f8f9fa !important;
  border: 1px solid #dee2e6 !important;
  border-radius: 8px !important;
  padding: 15px 20px !important;
  margin: 20px 0 !important;
}

#post-content .legend-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 20px !important;
  margin: 10px 0 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

#post-content .legend-list li {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px !important;
}

#post-content .table-note {
  font-size: 13px !important;
  color: #6c757d !important;
  margin-top: 10px !important;
  font-style: italic !important;
}

#post-content .price {
  font-family: monospace !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  color: #047857 !important;
}

/* Compact table modifier */
#post-content .compact-table th,
#post-content .compact-table td {
  padding: 8px 10px !important;
}

/* Striped rows modifier */
#post-content .striped-rows tbody tr:nth-child(even) {
  background: #f8f9fa !important;
}

/* ============================================
   SPECIAL PRICE FORMATTING CLASSES
   ============================================ */

/* For properly formatted price lines */
.price-row {
  display: block !important;
  margin: 8px 0 !important;
  padding: 5px 0 !important;
  border-bottom: 1px dotted #e5e7eb !important;
}

.price-row:last-of-type {
  border-bottom: none !important;
}

.price-label {
  display: inline-block !important;
  font-weight: 600 !important;
  color: #6b7280 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-right: 8px !important;
  min-width: 80px !important;
}

.price-value {
  display: inline-block !important;
  font-weight: 700 !important;
  color: #27ae60 !important;
  font-size: 15px !important;
}

/* ============================================
   ARTICLE META INFORMATION
   ============================================ */

#post-content .article-meta {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 15px 0 25px 0 !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  color: #6b7280 !important;
  font-size: 14px !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

#post-content .article-meta span:first-child {
  color: #374151 !important;
  font-weight: 500 !important;
}

#post-content .article-meta .separator {
  color: #d1d5db !important;
}

/* ============================================
   RELATED ARTICLES
   ============================================ */

#post-content .related-articles {
  margin-top: 40px !important;
  padding: 20px !important;
  background: #f9fafb !important;
  border-radius: 8px !important;
}

#post-content .related-articles h3 {
  margin-bottom: 15px !important;
}

#post-content .related-articles ul {
  list-style: none !important;
  padding: 0 !important;
}

#post-content .related-articles li {
  margin-bottom: 10px !important;
}

#post-content .related-articles a {
  color: #0891b2 !important;
  text-decoration: none !important;
}

#post-content .related-articles a:hover {
  text-decoration: underline !important;
}

/* ============================================
   INFOGRAPHIC CONTAINER
   ============================================ */

#post-content .infographic-container {
  margin: 30px 0 !important;
  text-align: center !important;
}

#post-content .infographic-container img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

#post-content .infographic-container .caption {
  font-size: 13px !important;
  color: #6b7280 !important;
  margin-top: 10px !important;
  font-style: italic !important;
}

/* ============================================
   FEATURED IMAGE
   ============================================ */

#post-content .featured-image {
  margin: 30px 0 !important;
  text-align: center !important;
}

#post-content .featured-image img {
  max-width: 100% !important;
  height: auto !important;
  border-radius: 8px !important;
}

/* ============================================
   TIMELINE VISUAL
   ============================================ */

#post-content .timeline-visual {
  background: #fafbfc !important;
  border-radius: 12px !important;
  padding: 30px 20px !important;
  margin: 30px 0 !important;
  border: 1px solid #e5e7eb !important;
}

#post-content .timeline-visual h3 {
  text-align: center !important;
  color: #1b1f23 !important;
  margin-bottom: 25px !important;
  font-size: 20px !important;
  font-weight: 600 !important;
}

#post-content .timeline-steps {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 15px !important;
}

#post-content .timeline-steps .step {
  flex: 1 1 150px !important;
  background: white !important;
  border-radius: 8px !important;
  padding: 15px !important;
  text-align: center !important;
  border: 1px solid #e5e7eb !important;
  min-width: 140px !important;
}

#post-content .timeline-steps .step.active {
  border-color: #3B5998 !important;
  background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%) !important;
}

#post-content .timeline-steps .week {
  display: block !important;
  font-size: 12px !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 5px !important;
}

#post-content .timeline-steps .phase {
  display: block !important;
  font-size: 16px !important;
  color: #1b1f23 !important;
  font-weight: 600 !important;
  margin-bottom: 5px !important;
}

#post-content .timeline-steps .detail {
  display: block !important;
  font-size: 13px !important;
  color: #6b7280 !important;
  line-height: 1.3 !important;
}

/* ============================================
   MOBILE-SPECIFIC FIXES FOR OVERLAP
   ============================================ */

@media (max-width: 768px) {
  #post-content.ovu-article {
    padding: 20px 6px !important;
  }

  #post-content .the-post-description h1,
  #post-content .post-body h1 {
    font-size: 32px !important;
  }

  #post-content .the-post-description h2,
  #post-content .post-body h2 {
    font-size: 26px !important;
  }

  #post-content .keyfacts {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin: 20px 0 !important;
  }

  #post-content .fact {
    padding: 15px !important;
  }

  /* CRITICAL FIX: Force price text to stack properly */
  #post-content .fact p {
    font-size: 14px !important;
    line-height: 1.8 !important;
    margin: 8px 0 !important;
    display: block !important;
    clear: both !important;
    width: 100% !important;
  }

  /* Style for price labels within paragraphs */
  #post-content .fact p strong,
  #post-content .fact p b {
    display: inline-block !important;
    margin-right: 8px !important;
    color: #6b7280 !important;
    font-size: 13px !important;
  }

  #post-content .country-grid {
    grid-template-columns: 1fr !important;
  }

  #post-content .grid.twocol {
    grid-template-columns: 1fr !important;
  }

  #post-content .checklist {
    grid-template-columns: 1fr !important;
  }

  .big-table-wrapper {
    border-radius: 0 !important;
    margin: 20px -20px !important;
    box-shadow: none !important;
  }

  .big-table {
    font-size: 12px !important;
  }

  .big-table th,
  .big-table td {
    padding: 10px 8px !important;
  }

  .big-table th:first-child,
  .big-table td:first-child {
    width: 90px !important;
    min-width: 90px !important;
    font-size: 13px !important;
  }

  .price-label {
    display: block !important;
    margin-bottom: 3px !important;
  }

  .price-value {
    display: block !important;
    margin-left: 0 !important;
  }

  #post-content .trust-box .trust-content {
    flex-direction: column !important;
    text-align: center !important;
  }

  #post-content .trust-box .profile-image {
    margin: 0 auto !important;
  }

  #post-content .timeline-steps {
    flex-direction: column !important;
  }

  #post-content .timeline-steps .step {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 480px) {
  #post-content.ovu-article {
    padding: 20px 4px !important;
  }

  #post-content .fact {
    padding: 12px !important;
  }

  #post-content .fact p {
    word-break: break-word !important;
    overflow-wrap: anywhere !important;
    hyphens: manual !important;
    font-size: 13px !important;
    line-height: 2 !important;
  }

  /* If content has inline prices, force them to separate lines */
  #post-content .fact p.price-inline {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }
}

@media (max-width: 360px) {
  #post-content.ovu-article {
    padding: 20px 3px !important;
  }

  #post-content .fact p {
    font-size: 12px !important;
    line-height: 2.2 !important;
  }
}

/* ============================================
   ACCESSIBILITY & PRINT
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  #post-content * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

@media print {
  #post-content .btn,
  #post-content .pro-tip,
  #post-content .qline {
    box-shadow: none !important;
  }

  #post-content .data-table {
    page-break-inside: avoid !important;
  }
}

/* Larger big-table header text for readability on desktop */
@media (min-width: 769px) {
  .big-table th {
    font-size: 11px !important;
  }
}
