.doc-card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.doc-card:hover {
  transform: scale(1.025) translateY(-4px);
  border-color: rgba(192, 57, 43, 0.6) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5) !important;
}

.doc-card img {
  transition: opacity 0.3s ease;
}

.doc-card:hover img {
  opacity: 1 !important;
}

/* Stamp "Made in Argentina" — animación de entrada */
.stamp {
  animation: stampIn 0.5s cubic-bezier(0.22, 0.68, 0, 1.4) 0.6s both;
}

@keyframes stampIn {
  from {
    opacity: 0;
    transform: scale(1.3) rotate(-8deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(-6deg);
  }
}

.news-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease;
}

.news-item:last-child {
  border-bottom: none;
}

.news-item:hover {
  border-color: rgba(192, 57, 43, 0.3);
}

.news-item .bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #dc2626;
  flex-shrink: 0;
  margin-top: 5px;
}

.news-item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  font-weight: 400;
}
