@charset "utf-8";

.latest_articles {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}
.latest_articles_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.latest_articles_title {
  font-size: 24px;
  font-weight: 600;
}
.latest_article {
  box-sizing: border-box;
  width: calc(33.333% - 16px);
  border: 1px solid #eef3f7;
  transition: transform 0.15s ease;
}
.latest_article_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.latest_article_content {
  padding: 16px;
}
.latest_article_content_title {
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}
.latest_article_content_details_date {
  margin-bottom: 8px;
  color: #6e7c89;
  font-size: 12px;
}
.latest_article_content_details_categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.latest_article_content_details_category {
  padding: 0 8px;
  background-color: #0e1a25;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}
.latest_article_content_details_category.anymind {
  background-color: #e04f49;
}
.latest_article_content_details_category.ec {
  background-color: #3db161;
}
.latest_article_content_details_category.im {
  background-color: #b077e9;
}
.latest_article_content_details_category.dm {
  background-color: #5cc9ec;
}
.latest_article_content_details_category.pg {
  background-color: #3980c3;
}
.latest_article_content_details_category.cg {
  background-color: #ffab2d;
}

@media screen and (max-width: 1040px) {
  .latest_article {
    width: calc(50% - 12px);
  }
}

@media screen and (min-width: 641px) {
  .latest_article:hover {
    transform: scale(1.04, 1.04);
  }
}

@media screen and (max-width: 640px) {
  .latest_articles {
    padding: 40px 20px;
  }
  .latest_article {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .latest_articles_title {
    font-size: 20px;
  }
}
