/**
 * Estilos globales para las tarjetas de noticias del proyecto NorthSpices
 * Reutilizable en section-home-noticias y section-woo-cat-noticias
 */
.thm-news-card {
  transition: transform 0.3s ease;
  display: block;
  text-decoration: none;
}
.thm-news-card:hover .thm-news-card__img-wrap {
  box-shadow: none;
}
.thm-news-card:hover .thm-news-card__img-wrap img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.thm-news-card:hover .thm-news-card__title {
  color: var(--verde-norths, #2cad6e);
}
.thm-news-card__img-wrap {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
  line-height: 0;
  aspect-ratio: 1 / 0.96;
  transition: all 0.5s ease;
  margin-bottom: 24px;
  position: relative;
}
.thm-news-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease;
}
.thm-news-card__badge {
  font-family: var(--theme-font-two);
  font-weight: 300;
  font-size: 16px;
  line-height: 129%;
  letter-spacing: -5%;
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--verde-norths, #2cad6e);
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 5px;
  z-index: 999;
}
.thm-news-card__title {
  font-family: var(--theme-font-two);
  font-weight: 600;
  font-size: 20px;
  color: var(--theme-black);
  margin: 0;
  transition: color 0.3s ease;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: center;
}
.thm-news-card__date {
  color: var(--theme-gray);
  font-family: var(--theme-font-two);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  text-align: center;
  text-transform: capitalize;
}
