/* blog container */
.blog_container {
  background-image: url("") !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 0rem;
  height: 100px !important;
  background-color: #020202;
}

.blog-banner {
  padding: 60px 20px 30px;
  overflow: hidden;
  position: relative;
}

.blog-banner .row {
  align-items: center;
}

.blog-banner h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.blog-banner .subtitle {
  font-size: 18px;
  line-height: 1.6;
  max-width: 500px;
}

.banner-image {
  text-align: right;
}

.banner-image img {
  max-width: 100%;
  height: auto;
}

/* Responsive fix for smaller screens */
@media screen and (max-width: 768px) {
  .blog-banner .row {
    flex-direction: column;
  }

  .banner-image img {
    margin-top: 40px;
  }

  .banner-text,
  .banner-image {
    text-align: center;
  }

  .blog-banner h1 {
    font-size: 36px;
  }

  .blog-banner .subtitle {
    font-size: 16px;
  }
}

/* Latest Posts Section */
.latest-posts {
  padding: 30px 20px;
}

.section-title {
  font-size: 28px;
  color: #161616;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}

.post-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
}

.post-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.post-image img {
  max-width: 100%;
  height: auto;
}

.post-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-content h3 {
  font-size: 20px;
  color: #2d7761;
  margin-bottom: 15px;
}

.post-content p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.meta {
  font-size: 13px;
  color: #666;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.meta i {
  margin-right: 6px;
  color: #2d7761;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .post-card {
    flex-direction: column;
  }

  .col-6 {
    flex: 100% !important;
    max-width: 100%;
  }

  .post-image {
    padding: 20px;
  }

  .post-content {
    padding: 20px;
  }
}

/* featured-posts */

.featured-posts {
  padding: 30px 20px;
}

.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.see-all-btn {
  border: 1px solid #010101;
  padding: 10px 20px;
  border-radius: 20px;
  color: #010101;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
}

.see-all-btn:hover {
  background-color: #010101;
  color: white;
}

.featured-posts .posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 25px;
}

.featured-posts .post-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.featured-posts .post-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-posts .post-thumb img {
  max-width: 100%;
  height: auto;
}

.featured-posts .post-body {
  padding: 20px;
}

.featured-posts .post-body h3 {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #161616;
}

.featured-posts .meta {
  font-size: 13px;
  color: #555;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.featured-posts .meta i {
  margin-right: 5px;
  color: #2d7761;
}

/* Responsive */
@media screen and (max-width: 375px) {
  .featured-posts .posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}
