.internship-main {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.internship-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.internship-item {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 6px;
  align-items: flex-start;
}

.internship-image {
  flex: 0 0 30%;
  max-width: 30%;
}

.internship-image img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #ccc;
}

.internship-text {
  flex: 1;
}

.internship-text h2 {
  color: var(--metu-red);
  font-size: 20px;
  margin-bottom: 10px;
}

.internship-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .internship-item {
    flex-direction: column;
    align-items: center;
  }

  .internship-image,
  .internship-text {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .internship-text h2 {
    font-size: 18px;
  }

  .internship-text p {
    font-size: 15px;
  }
}

.internship-cta {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-box {
  flex: 1 1 300px;
  background: #f4f4f4;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 25px;
  background-color: #cf0a2c; /* METU red */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #a30822;
}

.cta-button.secondary {
  background-color: #003366;
}

.cta-button.secondary:hover {
  background-color: #001f40;
}