/* ========================================
   Case Study Detail — V2 Polish
   Image placeholders + gallery
   ======================================== */

/* === Image Placeholder === */
.image-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8ecf1 0%, #d1d8e0 100%);
  border: 2px dashed var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl);
  text-align: center;
  min-height: 250px;
}

.image-placeholder-icon {
  width: 48px;
  height: 48px;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  opacity: 0.5;
}

.image-placeholder-text {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-secondary);
  max-width: 300px;
}

.image-placeholder-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: var(--space-xs);
}

/* Gallery with mix of real images and placeholders */
.case-detail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gutter);
  margin: var(--space-2xl) 0;
}

.case-detail-gallery img,
.case-detail-gallery picture img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.case-detail-gallery picture {
  display: block;
}

.case-detail-gallery .image-placeholder {
  min-height: 300px;
}

@media (max-width: 768px) {
  .case-detail-gallery {
    grid-template-columns: 1fr;
  }
}
