@charset "utf-8";

.news_article {
  box-sizing: border-box;
  width: calc(33.333% - 16px);
  border: 1px solid #eef3f7;
  transition: transform 0.15s ease;
}
.news_article_img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.news_article_content {
  padding: 16px;
}
.news_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;
}
.news_article_content_details_date {
  margin-bottom: 8px;
  color: #6e7c89;
  font-size: 12px;
}
.news_article_content_details_categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.news_article_content_details_category {
  padding: 0 8px;
  background-color: #0e1a25;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}
.news_article_content_details_category.AnyMindGroup {
  background-color: #e04f49;
}
.news_article_content_details_category.EcommerceD2C {
  background-color: #3db161;
}
.news_article_content_details_category.InfluencerMarketing {
  background-color: #b077e9;
}
.news_article_content_details_category.DigitalMarketing {
  background-color: #5cc9ec;
}
.news_article_content_details_category.PublisherGrowth {
  background-color: #3980c3;
}
.news_article_content_details_category.CreatorGrowth {
  background-color: #ffab2d;
}

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

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

@media screen and (max-width: 640px) {
  .news_article {
    width: 100%;
  }
}
