.blogs-section-content {
  display: flex;
  gap: 30px;
  position: relative;
}

.blogs-section {
  overflow: hidden !important;
  margin-bottom: -20px;
}

.blogs-side-div {
  flex: 1;
}

.blogs-div {
  flex: 1;
  border-radius: 5px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.thumbnail-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  /* border-radius: 10px; */
}

.featured-img {
  width: 100%;
  overflow: hidden;
}
.featured-img img {
  width: 100%;
}

.blogs-overlay {
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.1),
      rgba(0, 0, 0, 0)
    ),
    url('#') center/cover no-repeat;
}

.blogs-title-container {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  top: 0;

  padding: 15px 20px;
}
.blogs-title-container h3 {
  margin-top: auto;
}

.blogs-info-container {
  padding: 20px;
  z-index: 12;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.blogs-author-div {
  display: flex;
  justify-content: space-between;
}

.blogs-read-more {
  margin-top: 10px;
  display: flex;
  justify-content: end;
  width: 100%;
}
.blogs-read-more p {
  text-align: end;
}

.blogs-side-div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  justify-content: space-around;
}

.blogs-side-div > h2 {
  border-bottom: 2.5px solid var(--secondary-color);
  padding-bottom: 10px;
}

.latest-blogs-desc {
  width: 90%;
  font-size: var(--font-size-normal);
  line-height: 30px;
}

.blogs-side-div button {
  margin-top: auto;
}
.blogs-coming-soon {
  position: absolute;
  width: 100%;
  height: calc(100% + 60px);

  z-index: 15;
  top: -20px;
  left: -300px;
  right: -20px;
  width: calc(100% + 600px);

  padding: 25px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: not-allowed;
  background: linear-gradient(
    to top,

    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0)
  );
}

@media screen and (max-width: 768px) {
  .blogs-section-content {
    flex-direction: column;
  }
  .latest-blogs-desc {
    width: 100%;
    font-size: var(--font-size-normal);
    line-height: 30px;
  }
}
