/* ============================================
   Images Styles - VelocidadBets
   ============================================ */

/* Article figures */
article figure {
  margin: 2rem 0;
  max-width: 100%;
}

article figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

article figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #6B6B6B;
  margin-top: 0.75rem;
  padding: 0 1rem;
  line-height: 1.5;
}

/* Hero image specific */
[data-content="hero"] figure {
  max-width: 800px;
  margin: 0 auto;
}

[data-content="hero"] figure img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Content section images */
[data-content] figure {
  margin: 2rem auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  article figure {
    margin: 1.5rem 0;
  }
  
  article figure img {
    border-radius: 6px;
  }
  
  article figcaption {
    font-size: 0.8125rem;
    padding: 0 0.5rem;
  }
  
  [data-content="hero"] figure {
    max-width: 100%;
  }
  
  [data-content="hero"] figure img {
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  article figure {
    margin: 1.25rem 0;
  }
  
  article figcaption {
    font-size: 0.75rem;
  }
}
