/* ==================================================
   DESIGN TOKENS
   ================================================== */
:root {
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Libre Baskerville', Georgia, serif;

  --color-primary: #0E2A3A;
  --color-accent: #2E8B8B;
  --color-bg: #FAFAF8;
  --color-text: #2A2E32;
  --color-muted: #6B7280;

  --article-width: 720px;
  --line-height-body: 1.75;
}

/* ==================================================
   BASE / RESET
   ================================================== */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: var(--line-height-body);
  background: var(--color-bg);
  color: var(--color-text);
}

.container {
  max-width: 80%;
  margin: auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: var(--article-width);
}

/* ==================================================
   TYPOGRAPHY
   ================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-primary);
}

.article-title {
  font-size: 2.3rem;
  margin: 2.4rem 0 1.2rem;
  color: var(--color-primary);
}

.article-title a {
  color: inherit;
  text-decoration: none;
}

.article-intro {
  font-size: 1.18rem;
  line-height: 1.7;
  color: #3E4A52;
  margin-bottom: 2.8rem;
}

.article-content p {
  margin-bottom: 1.4em;
}

.article-content h2 {
  border-top: 1px solid #E2E6EA;
  padding-top: 2.2rem;
  margin-top: 3.2rem;
}

.article-content h3 {
  margin-top: 2.4rem;
}

.screen-reader-text { display: none; }

/* ==================================================
   HEADER & SEARCH
   ================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #E6EBEF;
  padding-top: 30px;
  transition: box-shadow 0.3s ease;
}

.site-header.is-sticky {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 0;
}

.header-search form.search-form {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 2px;
  background: #fff;
}

.header-search input.search-field {
  border: none !important;
  padding: 6px 10px;
  font-size: 13px;
  outline: none;
  width: 180px;
}

.header-search input.search-submit {
  background: #004a5d;
  color: white;
  border: none;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 2px;
}

/* ==================================================
   NAVIGATION & LOGO
   ================================================== */
.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  max-height: 76px;
  width: auto;
  height: auto;
}

.primary-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.primary-nav a {
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text);
}

.primary-nav a:hover {
  color: var(--color-accent);
}

/* ==================================================
   ARTICLE CONTENT & LAYOUT
   ================================================== */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.5rem;
  align-items: start;
}

.article-main { max-width: 720px; }

.article-sidebar {
  position: sticky;
  top: 120px;
}

.article-content img, .article-featured-image img {
  max-width: 668px;
  width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
  border-radius: 12px;
}

.alignleft { float: left; margin: 0 25px 20px 0; max-width: 45%; }
.alignright { float: right; margin: 0 0 20px 25px; max-width: 45%; }

.entry-content::after {
  content: "";
  display: table;
  clear: both;
}

/* ==================================================
   AUTHOR BOXES
   ================================================== */
.author-box {
  background: #F6FAFB;
  padding: 2rem;
  margin: 4rem 0 3rem;
  border-radius: 10px;
}

.author-box-inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.author-avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.author-details h4 { margin: 0; color: var(--color-primary); }

.author-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-muted);
  margin: 0.3rem 0 0.6rem;
}

.author-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #3E4A52;
  margin: 0;
}

/* ==================================================
   SPECIAL EDITORIAL BLOCKS
   ================================================== */
.key-takeaways, .faq-section, .citation-block {
  padding: 1.8rem;
  margin: 3.5rem 0;
  border-radius: 10px;
}

.key-takeaways { background: #F4F8F7; border-left: 4px solid var(--color-accent); }
.faq-section { background: #F8FAFC; border: 1px solid #E3E9EF; }
.citation-block { background: #F1F5F7; }

.key-takeaways h2, .key-takeaways h3, 
.faq-section h2, .faq-section h3 {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

/* ==================================================
   ARCHIVE ITEMS
   ================================================== */
.archive-item {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  padding: 1.75rem;
  border-bottom: 1px solid #E6EBEF;
}

.archive-thumb { width: 300px; flex-shrink: 0; }
.archive-thumb img { float: none !important; border-radius: 8px; }

.archive-item-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.35rem; }

.archive-item-meta {
  font-size: 0.75rem;
  color: #7A8894;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.archive-item-category {
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
}

/* ==================================================
   FOOTER GRID & NEWSLETTER (66% Width Logic)
   ================================================== */
.site-footer {
  background: #0d2533;
  color: #ffffff;
  padding: 2rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

/* Proportions: Sides 0.5, Center 2 (Center = 66% of total) */
.footer-column.footer-left,
.footer-column.footer-right {
  flex: 0.5;
}

.footer-column.footer-center {
  flex: 2;
}

.footer-column h4 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  line-height: 2;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover { color: #ffffff; }

/* NEWSLETTER CARD */
.vitality-subscribe-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 0px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.subscribe-header h3 {
  color: #ffffff !important;
  font-size: 28px;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  margin: 10px !important;
}

.subscribe-header h3 span { color: #4db2b3 !important; font-style: italic; }

.subscribe-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 25px;
}

.input-group {
  display: flex;
  gap: 10px;
  background: #ffffff;
  padding: 6px;
  border-radius: 50px;
  max-width: 500px;
  margin: 0 auto;
}

.input-group input[type="email"] {
  flex: 1;
  border: none;
  padding: 10px 20px;
  outline: none;
  border-radius: 50px;
}

.input-group button {
  background: #004a5d;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
}

.subscribe-assurance {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.site-info {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 20px;
}

/* ==================================================
   RESPONSIVENESS
   ================================================== */
@media (max-width: 900px) {
  .footer-grid-container {
    flex-direction: column;
    align-items: center;
  }
  .footer-column {
    flex: 1 !important;
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container { max-width: 95%; }
  .article-layout { grid-template-columns: 1fr; }
  .header-search { justify-content: center; width: 100%; }
  .archive-item { flex-direction: column; align-items: flex-start; }
  .archive-thumb { width: 100%; }
}

@media (max-width: 600px) {
  .alignleft, .alignright { float: none; display: block; margin: 0 auto 20px; max-width: 100%; }
  .input-group { flex-direction: column; background: transparent; }
  .input-group input[type="email"] { background: #fff; margin-bottom: 10px; }
}

.authority-citation {
  margin-top: 14px;
  padding: 12px 14px;
  border-left: 3px solid #2c8f8b;
  background: #f7faf9;
  font-size: 14px;
  line-height: 1.5;
}

.authority-citation strong {
  display: block;
  margin-bottom: 4px;
  color: #1f3b3a;
}

.authority-citation a {
  color: #2c8f8b;
  text-decoration: none;
}

.authority-citation a:hover {
  text-decoration: underline;
}
/* Container styling */
.article-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 25px;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Clean sans-serif contrast */
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Styling the Author Link */
.article-author a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.article-author a:hover {
    color: #0073aa; /* Subtle brand blue */
    text-decoration: underline;
}

/* Refined Separator */
.article-meta-separator {
    display: inline-block;
    width: 4px;
    height: 4px;
    background-color: #ccc;
    border-radius: 50%; /* Changes the dot to a clean circle */
    margin: 0 4px;
}

/* Date Styling */
.article-date {
    font-style: italic;
    color: #888;
    text-transform: none; /* Keeps date readable */
}
.article-title {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: #004d4d;
    margin: 20px 0;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
}

/* Responsive adjustment for mobile screens */
@media (max-width: 768px) {
    .article-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
}
/* Sidebar Container */
.article-sidebar {
    padding-left: 30px; /* Creates breathing room from the main content */
    border-left: 1px solid #f0f0f0; /* Subtle divider */
    padding-top: 30px;
}

/* Sidebar Section Headings (Recent Articles, Archives) */
.article-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #004d4d;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0f2f2; /* Subtle underline for sectioning */
}

/* List Reset */
.article-sidebar ul {
    list-style: none;
    padding: 0;
}

/* Individual List Item */
.article-sidebar li {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column; /* Stack title and date vertically */
}

/* Article Link in Sidebar */
.article-sidebar li a {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-bottom: 4px;
}

.article-sidebar li a:hover {
    color: #007a7a;
}

/* Sidebar Date Styling */
.article-sidebar li .post-date, 
.article-sidebar li span:not(a) {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.article-sidebar li {
    padding: 8px;
    margin-left: -8px; /* Offset the padding to keep alignment */
    border-radius: 4px;
    transition: background 0.3s ease;
}

.article-sidebar li:hover {
    background: #f9fdfd;
}
/* Container for the entire section */
.article-disclaimers {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px; /* Space between the two boxes */
}

/* Base style for both disclaimer boxes */
.article-disclaimer, 
.article-transparency {
    padding: 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    border-left: 4px solid; /* Creates a distinct "callout" bar */
}

/* Medical Disclaimer Specifics */
.article-disclaimer {
    background-color: #fff9f9; /* Soft red tint for caution */
    border-color: #e57373;
    color: #7f4f4f;
}

/* Transparency/Affiliate Notice Specifics */
.article-transparency {
    background-color: #f4f9f9; /* Soft teal tint to match your brand */
    border-color: #007a7a;
    color: #3e5a5a;
}

/* Typography for the bold labels */
.article-disclaimer strong,
.article-transparency strong {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Link Styling */
.article-disclaimers a {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
    opacity: 0.85;
}

.article-disclaimers a:hover {
    opacity: 1;
}
.article-disclaimers {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* Styling the Sidebar Section Titles */
.sidebar-title {
    font-family: 'Playfair Display', serif; /* Elegant serif to match article title */
    font-size: 1.25rem;
    font-weight: 700;
    color: #004d4d; /* Deep teal from your brand palette */
    
    /* Layout & Spacing */
    margin-top: 0;
    margin-bottom: 24px;
    padding-bottom: 12px;
    
    /* Decorative Underline */
    border-bottom: 2px solid #e0f2f2; /* Very light teal line */
    position: relative;
    
    /* Typography Polish */
    letter-spacing: 0.02em;
    text-transform: none; /* Keep it natural title case */
}

/* Optional: Accent line for more 'premium' feel */
.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px; /* Sits directly on top of the border-bottom */
    left: 0;
    width: 40px; /* Small accent width */
    height: 2px;
    background-color: #007a7a; /* Brighter brand teal */
}
/* Navigation Container */
.primary-nav {
    display: flex;
    justify-content: flex-end; /* Aligns menu to the right as seen in your layout */
    align-items: center;
    padding: 10px 0;
}

/* The Menu List */
#menu-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px; /* Generous spacing between links */
}

/* Individual Menu Items */
.menu-item a {
    text-decoration: none;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444; /* Soft dark grey for better readability */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

/* Hover Effect: Changes color to Brand Teal */
.menu-item a:hover,
.current-menu-item a {
    color: #007a7a;
}

/* Modern Animated Underline on Hover */
.menu-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #007a7a;
    transition: width 0.3s ease;
}

.menu-item a:hover::after,
.current-menu-item a::after {
    width: 100%;
}

/* Styling the "Current" active page link */
.current-menu-item a {
    font-weight: 700;
}
/* Styling the last menu item as a subtle button */
.menu-item:last-child a {
    border: 1.5px solid #007a7a;
    padding: 8px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.menu-item:last-child a:hover {
    background-color: #007a7a;
    color: #fff;
}

.menu-item:last-child a::after {
    display: none; /* Removes the underline from the button-style link */
}
/* Container for the search form */
.header-search {
    display: flex;
    align-items: center;
    background: #f4f9f9; /* Very light brand tint */
    border-radius: 30px; /* Modern pill shape */
    padding: 4px;
    border: 1px solid #e0eded;
    transition: all 0.3s ease;
    max-width: 300px;
}

.header-search:focus-within {
    border-color: #007a7a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 122, 122, 0.1);
}

/* The Search Input Field */
.header-search input[type="search"],
.header-search .search-field {
    border: none;
    background: transparent;
    padding: 8px 15px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    width: 100%;
}

.header-search input::placeholder {
    color: #999;
    font-style: italic;
}

/* The Search Button */
.header-search button,
.header-search .search-submit {
    background-color: #004d4d; /* Dark brand teal */
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.header-search button:hover,
.header-search .search-submit:hover {
    background-color: #007a7a; /* Brighter teal on hover */
}
.header-search {
    background: transparent;
    border: none;
    border-bottom: 2px solid #e0eded;
    border-radius: 0;
}

.header-search:focus-within {
    border-bottom-color: #007a7a;
}
/* Container for the archive title */
.archive-item-title {
    margin: 0 0 10px 0;
    line-height: 1.1;
    font-family: 'Playfair Display', serif; /* Consistent serif for headlines */
}

/* The actual link inside the title */
.archive-item-title a {
    font-size: 1.3rem; /* Large enough to be the focal point of the card */
    font-weight: 600;
    color: #004d4d; /* Deep brand teal */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Interactive Hover State */
.archive-item-title a:hover {
    color: #007a7a; /* Transitions to the brighter brand teal */
    transform: translateX(4px); /* Subtle "nudge" effect to indicate playfulness/energy */
}

/* Responsive adjustment for tablet/mobile */
@media (max-width: 768px) {
    .archive-item-title a {
        font-size: 1.3rem;
    }
}
/* Style for the Read More link */
.archive-read-more {
    display: inline-flex;
    align-items: center;
    margin-top: 15px;
    padding: 10px 22px;
    
    /* Typography */
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    
    /* Colors & Border */
    color: #004d4d; /* Deep brand teal */
    background-color: transparent;
    border: 2px solid #004d4d;
    border-radius: 30px; /* Pill shape */
    
    /* Animation */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover State: Fill the button */
.archive-read-more:hover {
    background-color: #004d4d;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 77, 77, 0.2);
    transform: translateY(-2px); /* Subtle lift */
}

/* Specific styling for the arrow if it's a character in the text */
.archive-read-more::after {
    content: ' →'; /* Adds a cleaner arrow via CSS if not in HTML */
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.archive-read-more:hover::after {
    transform: translateX(4px); /* Arrow "shoots" forward on hover */
}

/* 1. Archive Item Container */
.archive-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #f0f4f4; /* Subtle separator between items */
    transition: transform 0.3s ease;
}

/* 2. Archive Item Title */
.archive-item-title {
    margin: 0 0 12px 0;
    line-height: 1.25;
}

.archive-item-title a {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #004d4d; /* Brand primary color */
    text-decoration: none;
    transition: color 0.2s ease;
}

.archive-item-title a:hover {
    color: #007a7a;
}

/* 3. Archive Item Meta (Category & Date) */
.archive-item-meta {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0px;
    color: #889;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.archive-item-meta .category {
    color: #007a7a;
    font-weight: 700;
}

/* 4. Archive Excerpt/Content */
.archive-item-excerpt p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* 5. Refined Read More Button */
.archive-read-more {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    border: 2px solid #004d4d;
    border-radius: 50px; /* Perfect pill shape */
    color: #004d4d;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.archive-read-more:hover {
    background-color: #004d4d;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 77, 77, 0.2);
    transform: translateY(-2px);
}

/* Arrow animation */
.archive-read-more::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.archive-read-more:hover::after {
    transform: translateX(5px);
}
/* Ensure the link/container doesn't shrink the 400px image */
.archive-thumb {
    flex: 0 0 400px; /* Do not grow, do not shrink, stay 400px */
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    display: block;
}

.archive-thumb-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Add breathing room between image and text */
.archive-item-content {
    flex: 1;
    padding-left: 10px;
}

/* Hover effect */
.archive-item:hover .archive-thumb-img {
    transform: scale(1.04);
}

/* 1. The Container (Prevents Layout Breaking) */
.article-content {
    /* Ensures the parent container handles overflow */
    word-wrap: break-word;
}

/* Wrap your tables in a div with this class if possible, 
   or use this selector to target them directly */
.article-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.95rem;
    color: #444;
    display: block; /* Allows horizontal scrolling on small screens */
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e1e8ed;
    border-radius: 8px;
}

/* 2. Header Styling */
.article-content th {
    background-color: #004d4d; /* Deep Brand Teal */
    color: #ffffff;
    font-weight: 700;
    text-align: left;
    padding: 15px 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

/* 3. Cell Styling */
.article-content td {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f4f4;
    line-height: 1.5;
}

/* 4. Zebra Striping for Readability */
.article-content tr:nth-child(even) {
    background-color: #f9fdfd; /* Very light teal tint */
}

/* 5. Hover Effect for Rows */
.article-content tr:hover {
    background-color: #f0f9f9;
}

/* 6. Responsive Handling */
@media (max-width: 768px) {
    .article-content th, 
    .article-content td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}
/* 1. Footer Container Adjustments */
.site-footer {
    background-color: #001a1a; /* Matching your dark footer background */
    padding-top: 60px;
    padding-bottom: 20px; /* Space for the copyright bar */
    color: #ffffff;
}

/* 2. The Copyright Bar */
.footer-copyright {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider line */
    text-align: center;
}

.footer-copyright p {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6); /* Muted white for legal text */
    letter-spacing: 0.5px;
    margin: 0;
}

/* 3. Credits/Links within Copyright */
.footer-copyright a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-copyright a:hover {
    color: #00c2c2; /* Vitality teal highlight */
}