/* research.css — Top 5 Nederlandse Vrouwelijke Modellen */

.model-card {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.2s ease;
}

.model-card:hover {
  transform: translateY(-2px);
}

.model-photo {
  width: 200px;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.model-info h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.model-meta {
  color: var(--color-muted, #888);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.model-info p:last-child {
  margin-bottom: 0;
}

.sources {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sources h3 {
  font-size: 1.1rem;
}

@media (max-width: 600px) {
  .model-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .model-photo {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
}
