.page_title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.5;
  color: #333;
  margin-bottom: 1em;
}

.article_list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}
.article_list__item {
  width: calc(50% - 15px);
}
.article_list__link {
  display: block;
  height: 100%;
  color: #333;
  text-decoration: none;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  transition-duration: 0.3s;
}
.article_list__link:focus, .article_list__link:hover {
  transform: scale(1.1);
}
.article_list__img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.article_list__info {
  padding: 20px;
}
.article_list__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.article_list__date {
  font-size: 1.3rem;
  color: var(--primary-color);
}
.article_list__category {
  font-size: 1.2rem;
  color: #fff;
  background-color: var(--primary-color);
  padding: 0.6em 1.85em;
  border-radius: 15px;
}
.article_list__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
}

.article_list__link:hover {
  transition-duration: 0.3s;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.article_list__link:hover .article_list__date {
  color: #EB9845;
}
.article_list__link:hover .article_list__category {
  background-color: #EB9845;
}
.article_list__link:hover .article_list__title {
  color: #EB9845;
}

@media screen and (max-width: 960px) {
  .article_list__item {
    width: calc(50% - 15px);
  }
}
@media screen and (max-width: 600px) {
  .article_list {
    gap: 20px;
  }
  .article_list__item {
    width: 100%;
  }
}

/*# sourceMappingURL=article_list.css.map */
