.blog-article-selector{
  padding: 96px 0 32px 0;
}
.blog-article-selector-main{
  display: flex;
  gap: 24px;
}
.blog-article-selector-inner{
  flex: 0 0 auto;
  width: calc( 33.33333333% - 16px);
}
.blog-article-selector-image{
  height: 200px;
  position: relative;
}
.blog-article-selector-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-article-selector-image:before{
  content: "";
  position: absolute;
  height: 44px;
  width: 44px;
  background: url('../../images/plus-icon.svg') no-repeat;
  background-size: contain;
  left: 16px;
  bottom: 16px;
  opacity: 0;
  transition: all .3s ease-in-out;
}
.blog-article-selector-image:hover:before{
  opacity: 1;
}
.blog-lp-article-title a{
  display: inline-block;
  margin-top: 16px;
  font-family: 'Larsseit';
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  color: var(--primary);
  transition: all .3s ease-in-out;
}
.blog-lp-article-title a:hover{
  color: var(--primary-text-hover);
}

@media(max-width: 1024px){
  .blog-article-selector-main{
    gap: 16px;
  }
  .blog-article-selector-inner{
    flex: 0 0 auto;
    width: calc( 33.33333333% - 8px);
  }
  .blog-article-selector-image{
    height: 144px;
  }
}

@media(max-width: 767px){
  .blog-article-selector{
    padding: 56px 24px 24px 24px;
  }
  .blog-article-selector-main{
    flex-wrap: wrap;
  }
  .blog-article-selector-inner{
    width: 100%;
  }
  .blog-article-selector-image{
    height: 199px;
  }
  .blog-lp-article-title a{
    font-size: 16px;
    line-height: 24px;
  }
}