.nova {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 200ms ease-in-out;
  will-change: transform;
  transition: 300ms ease-in-out;
  margin-bottom: 2.5em;
  background-color: var(--color-fondo);
}

.nova:hover {
  transition: transform 200ms ease-in-out, box-shadow 100ms;
}

.nova > div:empty,
.novas_titulo:empty,
.nova__texto:empty,
.nova__data:empty,
.nova__etiquetas > div:empty {
  display: none;
}

.novas_titulo:hover {
  color: var(--color);
}

.nova__data {
  color: var(--color2);
}

.nova__imaxe {
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
}

.nova__imaxe img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  transition: transform 500ms ease-in-out;
  border-radius: var(--bradius);
}

.nova__imaxe a {
  display: flex;
  border-radius: var(--bradius);
}

.nova__imaxe > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-fondo);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bradius);
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 350ms ease-in-out;
}

.nova__imaxe > a::before {
  background-color: #40191e55;
}

.nova__imaxe > a:hover::before {
  opacity: 1;
  transition: 350ms ease-in-out;
}

.nova__imaxe > a::after {
  content: url('data:image/svg+xml,<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" x="0" y="0" viewBox="0 0 74.1 74.1" style="enable-background:new 0 0 74.1 74.1" xml:space="preserve"><style>.st1{fill:%23fff}</style><path class="st1" d="M49.5 39H39.1v10.5H35V39H24.6v-3.8H35V24.6h4.1v10.6h10.4V39z"/><path class="st1" d="M37.1 74.1C16.6 74.1 0 57.5 0 37.1 0 16.6 16.6 0 37.1 0c20.4 0 37.1 16.6 37.1 37.1a37.2 37.2 0 0 1-37.1 37zm0-71.1C18.3 3 3 18.3 3 37.1s15.3 34.1 34.1 34.1 34.1-15.3 34.1-34.1C71.1 18.3 55.9 3 37.1 3z"/></svg>');
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  opacity: 0;
  display: block;
  align-items: center;
  justify-content: center;
  transition: 300ms ease-out;
}

.nova__imaxe > a:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%);
  transition: 300ms cubic-bezier(0.46, 0.22, 0.44, 0.97) 150ms;
}

.nova__txt {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-inline: 0.5em;
}

.nova__titulo {
  position: relative;
  border-bottom: 1px solid transparent;
  margin-bottom: 0.5em;
}

.nova__titulo > h2 {
  color: var(--color);
  font-size: 28px;
  line-height: 1.3;
  transition: all 300ms;
  margin-block: 0.3em;
  padding: 0;
  display: inline;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.nova__texto {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 16px;
  line-height: 28px;
  display: -webkit-box;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.nova__titulo > h2,
.nova__texto {
  text-align: center;
}

.nova__data {
  font-size: 14px;
  color: var(--color2);
  margin-top: 0.3em;
  text-align: center;
}

.nova__etiquetas {
  box-sizing: border-box;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 1em;
  row-gap: 0.5em;
  transition: all 300ms;
  margin: 1.5em 0;
  color: var(--color2);
}

span[class^="novas_etq_link"] {
  display: inline-block;
  transition: all 300ms;
  color: var(--color2);
  font-size: 12px;
  font-weight: normal;
}

span[class^="novas_etq_link"]:hover {
  transition: all 300ms;
  cursor: pointer;
  color: var(--color);
}

.nova__etiquetas > div:not(:empty) {
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  align-items: center;
  justify-content: center;
}

#cxcli3-lanuncios-0-panel.trw_grid_0_4 {
  box-sizing: border-box;
  /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important; */
  gap: 2em 1.5em;
}

@media only screen and (max-width: 888px) {
  .nova:hover {
    transform: translateY(0%);
  }
}
