/* ===== Exchange Programme Cards ===== */
.exchange-cards {
  display: flex;
  gap: 32px;
  margin: 80px 0;
}

.exchange-card {
  flex: 1;
  position: relative;
  display: flex;
  border-radius: 20px;
  padding: 24px;
  border: none;
  border-bottom: 1px solid #03489f;
  background: #e6f0f8;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.3s;
}

.exchange-card:hover {
  box-shadow: 0 8px 32px rgba(3, 72, 159, 0.12);
}

.exchange-card-image {
  width: 261px;
  height: 248px;
  aspect-ratio: 261 / 248;
  border-radius: 20px;
  overflow: hidden;
}

.exchange-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exchange-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 28px 32px 36px;
}

.exchange-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.exchange-card-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  color: #03489f;
  margin: 0;
}

.exchange-card-arrow {
  flex-shrink: 0;
  transition: transform 0.2s;
}

.exchange-card:hover .exchange-card-arrow {
  transform: translate(2px, -2px);
}

.exchange-card-desc {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #00243d;
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .exchange-cards {
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
  }
  .exchange-card-title {
    font-size: 22px;
  }

  .exchange-card-desc {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .exchange-card {
    flex-direction: column;
  }
  .exchange-card-image {
    aspect-ratio: 16 / 9;
  }

  .exchange-card-content {
    padding: 20px 0px 0px;
  }

  .exchange-card-title {
    font-size: 20px;
  }

  .exchange-card-desc {
    font-size: 14px;
  }
}

@media (max-width: 479px) {
  .exchange-cards {
    gap: 20px;
  }

  .exchange-card-image {
    width: 100%;
  }

  .exchange-card-content {
    padding: 20px 0px 0px;
  }

  .exchange-card-title {
    font-size: 18px;
  }
}
