:root {
  --primary-blue: #174EA6;
  --accent-blue: #4285F4;
  --text-dark: #202124;
  --text-secondary: #5f6368;
  --background-light: #f8f9fa;
  --border-light: #e8eaed;
  --highlight-yellow: #fbbc04;
  --white: #ffffff;
  --reading-width: 85ch;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background:
  repeating-linear-gradient(to right, transparent, transparent 40px, rgba(255, 255, 255, 0.4) 40px, rgba(255, 255, 255, 0.4) 43px),
  repeating-linear-gradient(to bottom, transparent, transparent 40px, rgba(255, 255, 255, 0.4) 40px, rgba(255, 255, 255, 0.4) 43px),
  linear-gradient(to right, rgba(229, 217, 216, 0.15), rgba(232, 228, 210, 0.15) 100%);
  font-size: 16px;
  overflow-x: hidden;
}

 /* Modern Header Design */
.header-container {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.95);
}

header {
  height: 100%;
  margin: 0 auto;
  padding: 0rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  width: 140px; 
  height: 100%;
  display: flex;
  flex-direction: column;
}

.engraved1, .engraved2 {
    font-weight: bold;
    padding: 3px 8px;
    border: none;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: -2px;
    text-shadow: 1px 1px 0 #fff, -1px -1px 0 #c3c2c2;
}

.engraved1 {
  color: #f9f4f4;
  background-color: #e90c0c;
  font-size: 25px;
}

.engraved2 {
  color: #202124;
  background-color: #fbbc04;
  box-shadow: inset 0 1px 0 #fff;
  font-size: 23px;
}


nav ul:not(.submenu) {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  justify-content: center;
  margin-right: 25px;
}

nav > ul > li {
  position: relative;
}

.top-nav {
  text-decoration: none;
  color: rgba(6, 14, 46, 0.97);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.top-nav:hover {
  color: var(--primary-blue);
}

.top-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight-yellow);
  transition: width 0.3s ease;
}

.top-nav:hover::after {
  width: 100%;
}

.mobile-menu-icon {
  display: none;
  font-size: 24px;
  margin-right: 15px;
  cursor: pointer;
  color: var(--primary-blue);
}

/*Submenu*/

.submenu {
  width: 180px;
  display: flex;
  flex-direction: column;
  background: #fff;
  position: absolute;
  list-style: none;
  top: 52px;
  left: -5px;
  padding: 18px 0;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  z-index: 800;
  transition: all 0.3s ease;
}

nav ul li:hover .submenu {
  visibility: visible;
  opacity: 1;
  top: 52px;
  gap: 0.8rem;
}

.submenu::before {
  content: '';
  height: 0;
  width: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  position: absolute;
  top: -12px;
  left: 20px;
}

.submenu>li>a {
  display: block;
  color: #1d2655;
  padding: 4px 6px 6px 14px;
  font-size: 1.1rem;
  margin-top: 4px;
  transition: all 0.3s ease;
  list-style: none;
  text-decoration: none;
}

.submenu>li>a:hover {
  background: #0074c7;
  color: #fff;
  transform: scale(1.1);
  padding-left: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

/* Main Content Grid */
.main-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  min-height: 100vh;
}

/* Article Styling */
article {
  max-width: 1200px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.article-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.article-category {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

h1 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.article-subtitle {
  font-size: 1.28rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.75rem;
}

/* Enhanced Article Image */
.article-image-container {
  margin: 3rem 0;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.article-image-container:hover {
  transform: translateY(-2px);
}

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


/* Article Content */
.article-content p {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  line-height: 1.8;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

#articleIntro:first-of-type::first-letter {
  font-size: 3.2rem;
  float: left;
  padding: 0.1em 0.1em 0 0;
  color: #6c4ea9;
  line-height: 0.8;
  font-weight: bold;
}

.insideLink {
  color: #3560B1;
  font-weight: 700;
}

.insideLink:hover {
  text-decoration: underline;
}

sup {
  color: #782477;
}

#referenceCont p {
  font-size: 1.1rem;
}

.article-content h2 {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 3rem 0 1.5rem 0;
  color: var(--text-dark);
  position: relative;
}

.article-content h2::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 60%;
  background: var(--highlight-yellow);
  border-radius: 2px;
}

ol {
  background-color: #e2ebdee5;
  padding: 10px 40px;
  border-radius: 4px;
  margin-bottom: 20px;
}

ol > li {
  margin-left: 10px;
  padding: 7px;
  font-size: 1.2rem;
}

/*Infographics*/
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.8rem 0;
  padding: 1.3rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.infographic-item {
  text-align: center;
  padding: 1rem;
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.infographic-item > p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.heart, .brain {
  background-color: rgb(203, 36, 53);
}

.eye, .immune, .weight {
  background-color: rgb(80, 108, 202);
}

.digestion, .antioxidant {
  background-color: #418a2b;
}

.hair, .bone, .skin {
  background-color: #7196ae;
}

.protein, .sugar, .hydration {
  background-color: #7e317d;
}

.infographic-icon {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1rem;
}

.pull-quote {
  font-size: 1.25rem;
  color: #1f2f40;
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #1e70a7;
  background: white;
  font-style: italic;
  box-shadow: 
    -4px 10px 15px rgba(211, 161, 169, 0.8), 
    4px 10px 20px rgba(238, 228, 169, 0.8);
}

.hashtags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: #2f5072;
  font-size: 1.3rem;
  margin-top: 15px;
  font-weight: 500;
}

.mailContainer {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
}

.mailContainer a {
display: flex;
justify-content: center;
align-items: center;
margin-top: 10px;
min-width: 15%;
text-decoration: none;
background-color: #6a6aad;
padding: 8px 12px;
border-radius: 8px;
}

.mailContainer>a>p {
  margin-right: 15px;
  color: white;
  font-weight: bold;
}

.takeaway {
  margin: 30px 0px;
  padding:14px 25px;
  border-radius:10px;
  background:linear-gradient(180deg, rgba(107,76,255,0.03), transparent);border:1px solid rgba(107,76,255,0.04)
}

.takeaway li { 
  margin:0;
  list-style: none;
  font-size: 1.2rem;
  line-height: 2.5rem;
}


/*Social-share section*/

.social-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2.3rem 1rem;
}

.social-share span {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-weight: 700;
  color: #444242;
  font-size: 1.3rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding: 0.7rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: none;
  cursor: pointer;
  vertical-align: middle;
}

.share-btn.facebook { background: #1877F2; color: white; }
.share-btn.twitter { background: #1f282e; color: white; }
.share-btn.instagram { background: linear-gradient(45deg,  #c13651, #b170ac, #4d3cbb); color: white; }

.share-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*Related posts*/

.related-posts {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 2rem 1.8rem;
  margin: 2rem auto;
  border: 1px solid #eaeaea;
  width: 100%;
}

.related-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  margin-top: 0;
  text-align: center;
  color: #333;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.related-post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.related-post-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  -webkit-touch-callout: none; 
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.related-post-content {
  padding: 1rem;
}

.related-post-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.related-post-title a {
  color: rgb(50, 91, 161);
  text-decoration: underline;
}

.related-post-excerpt {
  margin-top: 15px;
  font-size: 1rem;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Modern Sidebar */
aside {
  position: sticky;
  top: 120px;
  height: fit-content;
  animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInRight {
  from {
      opacity: 0;
      transform: translateX(30px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.sidebar-section {
  background-color: #ffffffd3;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: 
    -3px 8px 15px rgba(211, 161, 169, 0.8), 
    4px 10px 20px rgba(238, 228, 169, 0.8);
}

.sidebar-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.3rem;
  color: var(--text-dark);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--highlight-yellow);
}

/* Enhanced Recommended Reading */
.recommended-reading-box {
  display: flex;
  align-items: center;
  min-height: 100px;
  width: 100%;
  background: white;
  margin: 12px 0;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.recommended-reading-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-color: var(--border-light);
}

.reading-image {
  width: 90px;
  height: auto;
  object-fit: cover;
  border-right: 1px solid var(--border-light);
}

.reading-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reading-title {
  margin-bottom: 0.5rem;
}

.reading-title a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.reading-title a:hover {
  color: var(--primary-blue);
}

.reading-date {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Feedback Section */
.feedback-cta {
background: linear-gradient(135deg, #174EA6 0%, #4285F4 100%);
padding: 1.5rem;
border-radius: 12px;
border: 1px solid rgba(255,255,255,0.15);
box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.feedback-title {
font-size: 1.4rem;
color: var(--white);
margin-bottom: 0.75rem;
line-height: 1.3;
}

.feedback-subtext {
color: rgba(255,255,255,0.9);
font-size: 0.9rem;
margin-bottom: 1.25rem;
line-height: 1.5;
}

.feedback-button {
display: flex;
align-items: center;
justify-content: space-between;
background: var(--white);
color: var(--primary-blue);
padding: 0.75rem 1.25rem;
border-radius: 8px;
text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 2px solid transparent;
}

.feedback-button:hover {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255,255,255,0.2);
border-color: rgba(255,255,255,0.3);
}

.button-text {
font-weight: 600;
margin-right: 0.75rem;
}

.feedback-icon {
width: 24px;
height: 24px;
opacity: 0.9;
transition: transform 0.3s ease;
}

.feedback-button:hover .feedback-icon {
transform: translateX(3px);
}


/* Footer */
.footer {
  background: #1e293b;
  color: white;
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 4fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #a05c6b;
  font-weight: bold;
}

.footer-bottom {
  border-top: 1px solid #334155;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #94a3b8;
}

/* Scroll Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Animation */
.loading-skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Responsive Design */

@media screen and (min-width: 621px) and (max-width: 1050px) {

  .main-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .header-container {
    padding: 0;
  }

  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    gap: 0;
  }

  .logo {
    width: 120px;
    flex-shrink: 0;
  }

  .engraved1 {
    font-size: 18px;
  }

  .engraved2 {
    font-size: 16px;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  nav ul:not(.submenu) {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.nav-active {
    display: flex;
  }


  .top-nav {
    padding: 12px 15px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
    display: block;
  }

  .top-nav::after {
    display: none;
  }

  .mobile-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0;
    cursor: pointer;
    color: #000;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 5px;
  }

  .submenu {
    width: 100%;
    display: none;
    flex-direction: column;
    position: static;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    top: auto;
    left: auto;
  }

  .submenu::before {
    display: none;
  }

  .submenu.show {
    display: flex;
  }

  .submenu > li > a {
  padding: 8px 10px;
  margin-left: 20px;
  font-size: 0.95rem;
  text-align: left;
  border-bottom: none;
  }


  .submenu > li > a:hover {
    background: #0074c7;
    color: #fff;
    transform: none;
    padding-left: 30px;
    box-shadow: none;
  }

  .unfold {
    cursor: pointer;
    position: relative;
  }

  .unfold::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .sidebar-section {
    padding: 1rem;
    width: 90%;
    margin: 25px auto;
  }
  
  aside {
    position: static;
  }

  .feedback-cta {
    padding: 1.5rem;
    width: 55%;
    margin-top: 25px;
  }
  
  .reading-date {
    font-size: 0.7rem;
  }

  article {
    width: 95%;
    margin: 0 auto;
  }
  
  h1 {
      font-size: 2.5rem;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .related-posts {
    padding: 2rem 1.3rem;
    margin: 2rem auto;
    width: 95%;
  }

.related-post-image {
  width: 100%;
  height: 330px;
}

.related-post-excerpt {
  margin: 25px 0;
  font-size: 1.1rem;
}


  .footer-content > div {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 640px) {

  .header-container {
    padding: 0;
  }

  header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    gap: 0;
  }

  .logo {
    width: 120px;
    flex-shrink: 0;
  }

  .engraved1 {
    font-size: 18px;
  }

  .engraved2 {
    font-size: 16px;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
  }

  nav ul:not(.submenu) {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    background: #fff;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-links.nav-active {
    display: flex;
  }


  .top-nav {
    padding: 12px 15px;
    font-size: 1rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
    display: block;
  }

  .top-nav::after {
    display: none;
  }

  .mobile-menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0;
    cursor: pointer;
    color: #000;
    flex-shrink: 0;
    background: none;
    border: none;
    padding: 5px;
  }

  .submenu {
    width: 100%;
    display: none;
    flex-direction: column;
    position: static;
    padding: 0;
    margin: 0;
    background: #fbfbf9a3;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    top: auto;
    left: auto;
  }

  .submenu::before {
    display: none;
  }

  .submenu.show {
    display: flex;
  }

  .submenu > li > a {
    padding: 8px 10px;
    margin-left: 20px;
    font-size: 0.95rem;
    text-align: left;
    border-bottom: none;
  }
  

  .submenu > li > a:hover {
    background: #0074c7;
    color: #fff;
    transform: none;
    padding-left: 30px;
    box-shadow: none;
  }

  .unfold {
    cursor: pointer;
    position: relative;
  }

  .unfold::after {
    content: ' ▼';
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .main-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sidebar-section {
    padding: 1rem;
    width: 95%;
    margin: 15px auto;
  }

  aside {
    position: static;
  }

  .feedback-cta {
    padding: 1.5rem;
    width: 90%;
    margin-top: 25px;
  }

  article {
    width: 97%;
    margin: 0 auto;
  }

  h1 {
    font-size: 2rem;
  }

  .article-subtitle {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 1.3rem;
  }

  .article-image-container {
    width:  100%;
    margin: 3rem auto;
  }

  .article-content h2 {
    font-size: 1.4rem;
    margin: 2.5rem 0 1.5rem 0;
    color: var(--text-dark);
    position: relative;
  }

  .article-content p {
    margin-bottom: 1.3rem;
    font-size: 1.1rem;
  }

  .pull-quote {
    font-size: 1.1rem;
  }

  ol > li {
    font-size: 1.1rem;
  }

  .takeaway li { 
    margin:10px 0;
    font-size: 1.1rem;
    line-height: 2.3rem;
  }

  .share-btn {
    padding: 0.5rem 0.8rem;
    display: block;
  }

  .share-btn svg {
    padding-top: 5px;
    width: 25px;
    height: 21px;
    max-width: 27px;
  }

  /*Related Posts*/

  .related-posts {
    padding: 1.7rem 0.9rem;
    margin: 2rem auto;
    width: 98%;
  }

  .related-post-content {
    padding: 1rem 0.5rem;
  }

  .related-posts-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .related-post-image {
    height: 300px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    padding: 0 25px;
  }

  .footer-section {
    margin-bottom: 0;
  }

  .footer-bottom {
    padding: 15px 25px;
  }
}