.img-wrapper {
  width: 100%;
  aspect-ratio: 2 /1;
  margin-bottom: 12px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.blog-item {
  padding-bottom: 20px;

  h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
  }
  p {
    font-size: 14px;
  }
  a {
    color: #e87c00;
  }
}

.blog-container {
  min-height: 100vh;

  ul li {
    list-style-type: disc;
    margin-bottom: 12px;
  }
}

.blog-img {
  width: 100%;
  object-fit: cover;
  height: 600px;
}
.mb-4 {
    margin-bottom: 1.24rem !important;
}
.px-4 {
    padding-inline: 1.24rem;
}

@media screen and (max-width: 768px) {
  .blog-img {
    height: 400px;
  }
    
}


@media screen and (max-width: 640px) {
    .blog-img {
      height: 200px;
    }
      
  }