.news-card {
  position: relative;
  width: 100%;
}
.news-card-wrapper {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid rgba(90, 105, 112, 0.08);
  overflow: hidden;
  cursor: pointer;
}
.news-card__thumbnail {
  width: 100%;
  height: 14.375rem;
  overflow: hidden;
}
.news-card__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.news-card__content {
  display: flex;
}
.news-card__content-left {
  flex-shrink: 0;
  align-self: stretch;
}
.news-card__publish-date {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 6.1875rem;
  min-height: 8rem;
  height: 100%;
  background: #fcca45;
}
.news-card__publish-date span {
  position: relative;
  color: #fff;
  font-family: 'Google Sans';
  z-index: 1;
}
.news-card__publish-date span:nth-child(1) {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 120%;
}
.news-card__publish-date span:nth-child(2) {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
}
.news-card__content-right {
  flex: 1 0 0;
  padding: 0.5rem 1rem;
}
.news-card__category {
  color: #1991c7;
  font-family: 'Google Sans';
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 0.5rem;
}
.news-card__title {
  color: #08354a;
  font-family: 'Google Sans';
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  margin-bottom: 0.375rem;
  height: 3rem;
}
.news-card__excerpt {
  color: rgba(8, 53, 74, 0.7);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.0075rem;
  height: 2.25rem;
}

.news-card__title,
.news-card__excerpt {
  font-family: 'Google Sans';
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  .news-card:hover .news-card__thumbnail img {
    scale: 1.1;
  }
}

@media screen and (max-width: 639.98px) {
  .news-card-wrapper {
    border-radius: 0.75rem;
  }
  .news-card__thumbnail {
    height: 10.477rem;
  }
  .news-card__publish-date {
    width: 4.5rem;
    min-height: 5.625rem;
  }
  .news-card__publish-date span {
    position: relative;
    color: #fff;
    font-family: 'Google Sans';
    z-index: 1;
  }
  .news-card__publish-date span:nth-child(1) {
    font-size: 1.875rem;
  }
  .news-card__publish-date span:nth-child(2) {
    font-size: 0.75rem;
    line-height: 160%;
  }
  .news-card__content-right {
    padding: 0.375rem 0.5rem 0rem;
  }
  .news-card__category {
    font-size: 0.625rem;
    margin-bottom: 0.3125rem;
  }
  .news-card__title {
    font-size: 0.75rem;
    line-height: 120%;
    margin-bottom: 0.1875rem;
    height: 1.75rem;
  }
  .news-card__excerpt {
    font-size: 0.625rem;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.00625rem;
    height: auto;
  }
}
