.webc_post_card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.webc_post_card::before {
  content: none;
}
.webc_post_card__link {
  display: block;
}
.webc_post_card__thumb {
  display: block;
  margin: 0 0 40px;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 384 / 299;
}
.webc_post_card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.webc_post_card__link:hover .webc_post_card__thumb img {
  transform: scale(1.05);
}
.webc_post_card__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: var(--theme-font-two, "Nunito", sans-serif);
  font-weight: 900;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: var(--theme-black, #141518);
  margin-bottom: 40px;
}
.webc_post_card__cat {
  color: var(--theme-black, #141518);
}
.webc_post_card__fecha {
  color: var(--theme-gray, #6D6D6D);
}
.webc_post_card__post-title {
  font-family: var(--theme-font-two, "Nunito", sans-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--theme-black, #141518);
  margin: 0;
  transition: all 300ms ease;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline !important;
}
.webc_post_card__post-title:hover,
.webc_post_card__post-title:focus-visible {
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme-black, #141518) 0%, var(--theme-black, #141518) 100%);
  color: var(--theme-black, #141518);
}
