.novedades { background: #f7f7f7; }
.novedades .section-title { padding-bottom: 12px; }
.novedad-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid #e7e7e7;
  border-radius: 16px;
  transition: transform .2s, box-shadow .2s;
}
.novedad-card:hover, .novedad-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px #00000014;
  color: var(--default-color);
}
.novedad-card:focus-visible { outline: 3px solid var(--accent-color); outline-offset: 4px; }
.novedad-image { position: relative; aspect-ratio: 1; background: #eee; }
.novedad-image img { width: 100%; height: 100%; object-fit: cover; }
.novedad-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000a;
  color: #fff;
}
.novedad-content { padding: 20px; }
.novedad-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow-wrap: anywhere;
  min-height: 4.5em;
  line-height: 1.5;
}
.novedad-content > span { color: var(--accent-color); font-weight: 600; font-size: .9rem; }
@media (prefers-reduced-motion: reduce) {
  .novedad-card { transition: none; }
  .novedad-card:hover, .novedad-card:focus-visible { transform: none; }
}
