.internship-cards-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
}

.internship-cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.internship-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 280px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.2s ease;
}

.internship-card:hover {
  transform: translateY(-5px);
}

.internship-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.internship-card h2 {
  font-size: 20px;
  color: var(--metu-red);
  margin: 16px 0 8px;
}

.intern-link {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--metu-red);
  font-weight: 500;
  text-decoration: underline;
}

.intern-link:hover {
  color: #900a24;
}
