.no-banner .dnd-section>.row-fluid{

  max-width: 100%;

}
.blog-area {
  height: 320px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1440px;
  gap: 70px;
}
.blog-inner {
  max-height: 500px;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: initial;
  align-items: initial;
  align-self: initial;
  overflow: initial;
  border-radius: 0px;
  background-size: cover;
  text-align: left;
}
.blog-inner p {
  margin-bottom: 17px;
}
h3.blog-header__title {
  line-height: 30px;
  margin-bottom: 13.5px;
}
.blog-header-right {
  position: relative;
  height: 300px;
  /* border-radius: 7px; */
  overflow: hidden;
  width: 100%;
  margin: auto;
}

.blog-image-right {
  width: 100% !important;
  height: 100% !important;
  position: relative;
  overflow: hidden;
}

.blog-image-right img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-position: center center;
  opacity: 1;
  transition: none 0s ease 0s;
  object-fit: contain !important;
  vertical-align: middle;
}
.readmorebtn {

  background-color: rgb(255, 29, 94);
  width: fit-content;
  height: auto;
  margin: 0px;
  padding: 10px 35px;
  line-height: 23px;
  text-align: center;
  opacity: 1;
  border-radius: 20px;
  transform: scale(1);
  transition: all 0.2s ease 0s;
}
.readmorebtn a {

  font-family: "header bold";
  border-radius: 20px;
  color: rgb(255, 255, 255);

}

.readmorebtn:hover{
  color: white;
  transform: scale(1.05);
}

@media only screen and (max-width: 1024px){
  .blog-area{
    gap: 30px;
    margin-bottom: 40px;
    height: auto; 
  }
}
@media only screen and (max-width: 1000px){
  .blog-area {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 23px;
  }
  .blog-header-right {
    margin-top: 30px;
    margin-bottom: 30px;
    position: relative;
  }
  h3.blog-header__title {
    font-size: 23px;
    line-height: 25px;
    margin-bottom: 11.5px;
  }
  .blog-inner p {
    font-size: 15px;
    margin-bottom: 15px;
  }
}