.HEADER {
  background-color: #0b1d26;
}


/* To prevent content from hiding under the fixed header */
.main-content {
  padding-top: 0px; /* Reduce top padding */
  margin-top: 0px; /* Ensure no extra margin */
}

/* Article / Blog Post Styles */
article {
  background-color: #ffffff;
  color: #0B1D26; /* Ensure text remains readable */
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
}

article section {
  margin-bottom: 40px;
}

article section h2 {
  font-size: 1.75rem;
  color: #0B1D26;                     /* Yellow accent for subheadings */
  margin-bottom: 10px;
}

article p,
article li {
  font-size: 18px;                    /* Use main site's fz-18 equivalent */
  color: #000;
  line-height: 1.8;
}

/* Lists in the article */
article ul,
article ol {
  margin-left: 20px;
  padding-left: 20px;
}

article li {
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .main-content {
    padding-top: 100px;
  }

  article {
    margin: 20px;
  }

  article section h2 {
    font-size: 1.5rem;
  }

  article p,
  article li,
  footer p {
    font-size: 16px;
  }
}

/* Blog Header Container */
.blog-header-container {
  text-align: center;
  background-color: #ffffff; /* White background */
  padding: 40px 20px 0; /* Padding to align everything */
  margin-top: 50px; /* Adjusted to reduce excessive spacing */
}

/* Blog Title Styling */
/* Styling for the Blog Card */
.blog-card {
  max-width: 900px;
  
  margin: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

/* Title & Author Styling */
.blog-title {
  font-size: 30px;
  font-weight: bold;
  color: #0B1D26;
}

.blog-author {
  font-size: 16px;
  color: #555;
  font-style: italic;
}

/* Image Styling */


/* Blog Image Container */
.blog-image-container {
  width: 100%;
  max-width: 700px; /* Smaller image */
  margin: 10px auto; /* Reduce spacing */
  text-align: center;
}

.blog-featured-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.image-credit {
  font-size: 14px;
  margin-top: 5px;
  float: left;
  color: #777;
}
/* Share Button Dropdown */
.share-dropdown {
  display: flex;
  justify-content: flex-end; /* Aligns button to the right */
  margin: 10px 20px;
}

/* Dropdown Menu Positioning */
#shareMenu {
  display: none;
  position: absolute;
  margin-top: 40px;
  right: 0;
  background-color: white;
  min-width: 180px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  padding: 10px 0;
  z-index: 100;
}

#shareMenu.show {
  display: block;
}

#shareMenu a {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

#shareMenu a:hover {
  background-color: #f1f1f1;
}

#shareMenu i {
  margin-right: 10px;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .blog-title {
      font-size: 30px;
  }

  .blog-author {
      font-size: 16px;
  }

  .blog-header-container {
      padding: 30px 15px 0;
  }

  .blog-image-container {
      max-width: 95%;
  }
}
