/* ========================================
   Images Styles - PuntaCuota
   ======================================== */

[data-content] figure {
  margin: 2rem 0;
  border-radius: 6px;
  overflow: hidden;
}

[data-content] figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.3s ease;
}

[data-content] figure img:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

[data-content] figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: #9aa0a6;
  margin-top: 0.75rem;
  line-height: 1.5;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  [data-content] figure {
    margin: 1.5rem 0;
  }

  [data-content] figcaption {
    font-size: 0.8rem;
    padding: 0;
  }
}
