/* Image Styles for FutbolQuota */

/* Article images */
article figure {
  margin: var(--space-xl) auto;
  max-width: 100%;
}

article figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

article figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
  padding: 0 var(--space-md);
}

/* Hero image specifics */
[data-content="hero"] figure {
  margin: var(--space-xl) auto 0;
  max-width: var(--content-width);
}

[data-content="hero"] figure img {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  article figure {
    margin: var(--space-lg) auto;
  }
  
  article figure img {
    border-radius: 8px;
  }
  
  article figcaption {
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  article figure img {
    border-radius: 6px;
  }
}
