/* Investimentos activos — página Yields (estilo estate-card) */
.yield-invest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yield-invest-card.estate-card {
  border-radius: 18px;
}

.yield-invest-card.estate-card:active {
  transform: none;
}

.yield-invest-card .estate-card__media {
  aspect-ratio: auto;
  height: auto;
  background: #eef5f1;
}

.yield-invest-card .estate-card__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transform: none !important;
  transition: none;
}

.yield-invest-card:hover .estate-card__img,
.yield-invest-card:focus-within .estate-card__img {
  transform: none !important;
}

.yield-invest-card .estate-card__overlay {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 55%,
    rgba(4, 14, 10, 0.82) 100%
  );
}

.yield-invest-card .estate-card__tag {
  background: rgba(15, 157, 88, 0.92);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 2px 10px rgba(15, 157, 88, 0.35);
}

.yield-invest-card .estate-card__metrics {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.yield-invest-card .estate-metric:nth-child(2n)::after {
  display: none;
}

.yield-invest-card .estate-metric:nth-child(odd):not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #e8eeea;
}

.yield-invest-card .estate-metric--wide {
  grid-column: 1 / -1;
  text-align: left;
  padding-top: 8px;
  margin-top: 4px;
  border-top: 1px solid #eef2ef;
}

.yield-invest-card .estate-metric--wide::after {
  display: none !important;
}

.yield-invest-card--skeleton .estate-card__media.sk-block {
  aspect-ratio: 16 / 9;
  min-height: 120px;
}
