.articles-page{
  padding: 0 0 120px;
}

.articles-page__title{
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.articles-list{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.article-card{
  display: block;
  min-height: 300px;
  border: 1px solid #1D201F33;
  border-radius: 10px;
  background: #FDFDFD;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.article-card:hover{
  border-color: rgba(1, 55, 62, .35);
  box-shadow: 0 10px 30px rgba(29, 32, 31, .06);
}

.article-card__inner{
  min-height: 300px;
  height: 100%;
  padding: 20px;
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 15px;
}

.article-card__image{
  min-height: 260px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.article-card__image-bg{
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform .45s ease;
  will-change: transform;
}

.article-card:hover .article-card__image-bg{
  transform: scale(1.04);
}

.article-card__content{
  min-width: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.article-card__date-row{
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-card__date-icon{
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  flex: 0 0 20px;
}

.article-card__date{
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
  color: #1E1E1E;
}

.article-card__title{
  margin-top: 30px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #1E1E1E;
}

.article-card__bottom{
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 1px solid #00000033;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-card__more-text{
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.article-card__arrow{
  flex: 0 0 24px;
  color: #1D201F;
  transition: transform .2s ease;
}

.article-card:hover .article-card__arrow{
  transform: translate(2px, -2px);
}

.article-card.is-hidden{
  display: none;
}

.articles-page__more-wrap{
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.articles-page__more-btn{
  width: 100%;
  max-width: 300px;
  min-height: 58px;
  border: 1px solid #01373E;
  border-radius: 999px;
  background: #01373E;
  color: #fff;
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: .2s ease;
}

.articles-page__more-btn:hover{
  background: #fff;
  color: #01373E;
}

.articles-page__empty{
  margin-top: 60px;
  padding: 28px;
  border-radius: 20px;
  background: #F8F8F8;
  color: rgba(29, 32, 31, .72);
  font-size: 17px;
  line-height: 1.45;
}

@media (max-width: 1200px){
  .articles-page__title{
    font-size: 58px;
  }

  .article-card__date{
    font-size: 17px;
  }

  .article-card__title{
    font-size: 22px;
  }

  .article-card__more-text{
    font-size: 18px;
  }
}

@media (max-width: 960px){
  .articles-list{
    grid-template-columns: 1fr;
  }

  .articles-page__title{
    font-size: 46px;
  }

  .article-card__inner{
    grid-template-columns: 40fr 60fr;
    min-height: 280px;
  }

  .article-card__image{
    min-height: 240px;
  }

  .article-card__date{
    font-size: 16px;
  }

  .article-card__title{
    margin-top: 22px;
    font-size: 21px;
  }

  .article-card__more-text{
    font-size: 17px;
  }
}

@media (max-width: 480px){
  .articles-page{
    padding-bottom: 90px;
  }

  .articles-page__title{
    font-size: 36px;
  }

  .articles-list{
    margin-top: 40px;
  }

  .article-card__inner{
    grid-template-columns: 1fr;
    padding: 16px;
    min-height: auto;
  }

  .article-card__image{
    min-height: 220px;
    height: 220px;
  }

  .article-card__content{
    min-height: auto;
  }

  .article-card__date-row{
    gap: 8px;
  }

  .article-card__date-icon{
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }

  .article-card__date{
    font-size: 15px;
  }

  .article-card__title{
    margin-top: 18px;
    font-size: 19px;
    line-height: 1.15;
  }

  .article-card__bottom{
    margin-top: 22px;
  }

  .article-card__more-text{
    font-size: 16px;
  }

  .article-card__arrow{
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .articles-page__more-btn{
    min-height: 54px;
    font-size: 16px;
  }

  .articles-page__empty{
    margin-top: 40px;
    padding: 22px;
    font-size: 15px;
  }
}