.aqa-blogposts-teaser__wrapper{
 position:relative;
 /*padding:0px 16px;*/
 margin-top:100px;
 margin-bottom:100px;
 /*padding:0px 16px;*/
 padding:0px 32px; /*important for tag index page */
}

.hs-blog-listing .aqa-blogposts-teaser__wrapper{
 margin-top:50px;
 margin-bottom:50px;
}

.aqa-blogposts-teaser__teaser {
  display: grid;
  grid-template-columns: 4fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px; 
}

.aqa-blogposts-teaser__item:nth-child(1) {
  grid-area: 1 / 1 / 3 / 2;
  height: 100%;
}
.aqa-blogposts-teaser__item:nth-child(2) {
  grid-area: 1 / 2 / 2 / 3;
}
.aqa-blogposts-teaser__item:nth-child(3) {
  grid-area: 2 / 2 / 3 / 3;
}

.aqa-blogposts-teaser__item:only-child {
  grid-column: 1 / -1;
}

.aqa-blogposts-teaser__item {
  display: flex;
  flex-direction: column;
}

.aqa-blogposts-teaser__item .image-link{
  height: 100%;
}

.aqa-blogposts-teaser__item .image-link img{
  height: 100%;
  object-fit: cover;
}

@supports (hanging-punctuation: first) and (font: -apple-system-body) and (-webkit-appearance: none) {
.aqa-blogposts-teaser__item .image-link img{
  height: unset!important;
  }
}

.aqa-blogposts-teaser__item:nth-child(1) .aqa-blogposts-teaser__title-link-wrapper{
  align-items: center;
}

/* h2.aqa-blogposts-teaser__title{
  font-style: normal;
  font-weight: 400;
  font-size: 11.52px;
  line-height: 120%;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top:8px;
} */

h3.aqa-blogposts-teaser-teaser__title{
  margin-top: 8px;
  margin-bottom: 20px;
}

.aqa-blogposts-teaser__title-link-wrapper{
  display: flex;
  align-items: flex-end;
}

.img,
.aqa-blogposts-teaser__item-title {
  flex-grow: 1;
}

.aqa-blogposts-teaser__item-title{
  margin-top:8px;
}

h3.aqa-blogposts-teaser__item-title,
.aqa-blogposts-teaser__item-title a{
  /*font-family: 'URW DIN';*/
  color: #2D2D2D;
  font-weight: 600;
  line-height: 130%;
  font-size: 14px;
  text-transform: uppercase;
}

.aqa-blogposts-teaser__btn{
  display: flex;
  background: #05A535;
  border: 1px solid #05A535;
  border-radius: 40px;
  width:fit-content;
  padding:15px 23px;
}

.aqa-blogposts-teaser__btn a{
  font-weight: 600;
  font-size: 13.725px;
  color:#fff;
  line-height: 22px;
  
}

@media only screen and (min-width : 769px) {
  .aqa-blogposts-teaser__item:nth-child(2) .image-link,
  .aqa-blogposts-teaser__item:nth-child(3) .image-link{
    height: auto;
    aspect-ratio:16/9;
  }
}


@media only screen and (max-width : 768px) {
  .aqa-blogposts-teaser__teaser {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .aqa-blogposts-teaser__item {
    grid-area: auto !important;
    height: auto;
  }

  .aqa-blogposts-teaser__item:nth-child(1),
  .aqa-blogposts-teaser__item:nth-child(2),
  .aqa-blogposts-teaser__item:nth-child(3) {
    grid-area: auto;
  }
}