.futureblog-wrapper {
  background: #210905;
  border-radius: 30px;
  overflow: hidden;
  padding: 27px;
  display: flex;
  gap: 40px;
}

.futureblog-img img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.futureblog-img img {
  width: 100%;
  height: 504px;
  object-position: center;
  border-radius: 12px;
}

.futureblog-text {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding-right: 55px;
    gap: 15px;
}

.blog-btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 85px 0px  20px;
}

.post-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.singel-post-wrapper {
  background: #210905;
  border-radius: 18px;
  padding: 21px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-img img {
  width: 100%;
  height: 258px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}

.post-img {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.post-data {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.post-meta-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.futureblog {
    margin-top: 50px;
}
.futureblog-text h3 {
    text-align: left;
}
span.categories {
    background: #FC54381A;
    border: 1px solid #FC5438;
    border-radius: 26px;
    padding: 6px 16px;
    font-size: 15px;
    line-height: 21px;
}
span.post-date {
    font-size: 15px;
    line-height: 21px;
    text-transform: uppercase;
}