/* ==============================
   GLOBAL BLOG STYLES (ELIXIR MEDEX)
   ============================== */

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* ---------- Container ---------- */
.blog-container {
  max-width: 900px;
  margin: 60px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.blog-container:hover {
  transform: translateY(-5px);
}

/* ---------- Header Image ---------- */
.blog-header img {
  /* width: 100%;
  height: auto; */
  border-radius: 10px ;
  margin-left: 30px;
  margin-top: 10px;
  
}

/* ---------- Blog Content ---------- */
.blog-content {
  padding: 30px;
}

.blog-date {
  font-size: 14px;
  color: #888;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 28px;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

/* ---------- Author Section ---------- */
.author-section {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border-left: 4px solid #007bff;
  padding-left: 15px;
  background-color: #f5f9ff;
  border-radius: 8px;
  padding: 10px 15px;
}

.author-section img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-section h4 {
  margin: 0;
  font-size: 18px;
  color: #007bff;
}

.author-section p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #555;
}

/* ---------- Headings ---------- */
h2 {
  font-size: 22px;
  margin-top: 25px;
  color: #0056b3;
}

h3 {
  font-size: 20px;
  margin-top: 20px;
  color: #007bff;
}

/* ---------- Highlight Boxes ---------- */
.highlight {
  background-color: #e7f1ff;
  padding: 15px;
  border-left: 4px solid #007bff;
  border-radius: 6px;
  font-size: 15px;
  margin: 25px 0;
}

.highlight strong {
  color: #0056b3;
}

/* ---------- Lists ---------- */
ul {
  padding-left: 25px;
  margin-bottom: 20px;
}

ul li {
  margin-bottom: 8px;
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
  background-color: #f1f1f1;
  margin-top: 40px;
}
  .btn-primary {
      border-radius: 8px;
      font-weight: 600;
    }
/* ---------- Responsive Design ---------- */
@media (max-width: 768px) {
  .blog-container {
    margin: 20px;
  }

  .blog-content {
    padding: 20px;
  }

  .blog-title {
    font-size: 24px;
  }

  .author-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .author-section img {
    margin-bottom: 10px;
  }
}
