.blog-section .blog-list {
  /* display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem; */
}

/* Card Container */
.blog-section .blog-list .blog-card {
  /* width: 300px; */
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

/* Hover Effect */
.blog-section .blog-list .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Image */
.blog-section .blog-list .blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Content Wrapper (flex box for equal height + alignment) */
.blog-section .blog-list .blog-card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 1rem;
}

/* Title */
.blog-section .blog-list .blog-card h4 {
  font-size: 18px;
  margin-bottom: 0.5rem;
  color: #1d3557;
  display: -webkit-box;
  -webkit-line-clamp: 2;        /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.4em * 2);  /* Optional: Adjust line height (if needed) */
  line-height: 1.4em;
}

/* Text */
.blog-section .blog-list .blog-card p {
  color: #555;
  flex-grow: 1;
  /* Pushes the button down */
  display: -webkit-box;
  -webkit-line-clamp: 4;        /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.8em * 4);  /* Optional: Adjust line height (if needed) */
  line-height: 1.8em;
}

/* Button */
.blog-section .blog-list .blog-card .btn {
  margin-top: 1rem;
  padding: 10px 16px;
  background-color: #3f2b96;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
}

.blog-main-card .blog-main-title {
  margin-bottom: 10px;
}

.blog-main-image {
  margin-top: 10px;
  margin-bottom: 20px;
  border-radius: 15px;
}

.blog-main-image img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.blog-main-card .reviewer-card {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  margin-left: 10px;
}

.blog-main-card .reviewer-img {
  border-radius: 50%;
  border: 1px solid #3f3c86;
  width: 50px;
  height: 50px;
}

.blog-main-card .reviewer-info p {
  margin-bottom: 0px;
  font-size: 14px !important;
  font-weight: lighter;
  line-height: 1.3rem !important;
}

.blog-main-card .reviewer-info p a {
  color: #3f3c86;
  text-decoration: underline;
}

.blog-main-card .blog-update-para {
  font-size: 12px !important;
  font-weight: 600;
  line-height: 1.3rem !important;
}

.blog-main-card .blog-iamge img {
  margin-bottom: 15px;
}

.display-docs-card {
  padding: 15px;
  border-radius: 10px !important;
  position: relative;
  border: none !important;
  background-color: #fff;
}

.display-docs-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-height: 500px;
  overflow-y: auto;
  position: relative;
  border: none !important;
  padding-right: 8px;
  overflow-x: hidden;
}

.display-docs-card-inner::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.display-docs-card-inner::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.display-docs-card-inner::-webkit-scrollbar-thumb {
  background: #3f3c86;
  border-radius: 4px;
  height: 50px;
}

.display-docs-card-inner::-webkit-scrollbar-thumb:hover {
  background: #3f3c86;
}

.display-docs-card-heading {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 10px auto;
}

.doctor-card-new {
  background-color: #e6f3fe;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.doctor-card-new .doc-image img {
  width: 100px;
  height: 100px;
}

.doctor-card-new .doc-info .doctor-doctor-name {
  color: #3f3c86;
  font-size: 16px !important;
  font-weight: 600;
}

.doctor-card-new .doc-info p {
  font-size: 14px !important;
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: start;
  line-height: 1.3rem !important;
}

.Citations p {
  font-style: italic !important;
  color: #3f3c86 !important;
  margin-bottom: 5px;
}