/* 1. Program Section Header */
.program-section {
  background-color: #4b0082;
  margin-top: 100px;
  width: 100%;

  /* Flex */
  display: flex;
  align-items: center;
}

.program-content {
  display: flex;
  gap: 20px;
  margin-top: 100px;
  margin-bottom: 100px;
}

/* Image */
.program-image-column {
  display: flex;
  width: 20%;
  margin-left: 0;
}

.program-image {
  aspect-ratio: 1;
  object-fit: auto;
  object-position: center;
  width: 215px;
}

/* Text */
.program-text-column {
  display: flex;
  flex-direction: column;
  justify-content: space-around;

  width: 80%;
  margin-left: 20px;
  color: white;
}

.program-title {
  letter-spacing: -0.56px;
  color: white;
}

@media (max-width: 1000px) {
  .program-description {
    font-size: 20px;
  }
  .program-image-column {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .program-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .program-image-column {
    width: 100%;
    margin-bottom: 20px;

    justify-content: center;
  }

  .transcript-icon {
    margin-top: 50px;
  }

  .program-image {
    width: 150px;
    text-align: center;
  }

  .program-text-column {
    width: 100%;
    align-items: center;
  }

  .program-title {
    margin-top: 10px;
    text-align: center;
  }

  .program-description {
    width: 85%;
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
  }
}

/* 2. Academic System */
.requirement-section {
  margin-top: 100px;
  margin-bottom: 100px;
}

.requirement-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Left, Text */
.requirement-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;

  width: 40%;
  margin-left: 0;
  margin-right: 5%;
}

/* Right, Details */
.details-column {
  display: flex;
  flex-direction: column;
  width: 50%;
  gap: 2rem;
}

/* Detail */
.detail-item {
  display: flex;
  flex-direction: column;
}

.detail-title {
  font-weight: bold;
  color: #4b0082;
  background-color: #f9f4ff;
  border-bottom: dotted 1px #4b0082;

  padding: 2px 8px;
}

.detail-description {
  margin-top: 14px;
}

@media (max-width: 1000px) {
  .requirement-content {
    gap: 2rem;
  }

  .requirement-text-column {
    width: 50%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .requirement-content {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .requirement-text-column {
    width: 80%;
    align-items: center;
  }

  .requirement-description {
    text-align: center;
  }

  .details-column {
    width: 70%;
  }

  .detail-title {
    text-align: center;
  }
  .detail-description {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .requirement-text-column {
    width: 90%;
  }
  .details-column {
    width: 90%;
  }

  .detail-title {
    font-size: 20px;
  }
}

/* 3. Ideal for section */
.ideal-for-section {
  align-self: center;
  margin-top: 100px;
  margin-bottom: 100px;
  width: 100%;
}

.ideal-for-content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}

/* For text coolumn */
.ideal-for-text-column {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-left: 0;
}

.ideal-for-label {
  border-radius: 5px;
  background-color: #4b0082;
  align-self: start;
  color: #fff;
  padding: 2px 46px;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 0;
}

.ideal-for-description {
  margin-top: 2rem;
  color: #4b0082;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 600;
}

/* For image column */
.ideal-for-image-column {
  display: flex;
  flex-direction: column;
  width: 50%;
  margin-left: 20px;
}

.ideal-for-image {
  aspect-ratio: 1.49;
  object-fit: auto;
  object-position: center;
  width: 100%;
  margin-top: 4px;
  flex-grow: 1;
}

@media (max-width: 1000px) {
  .ideal-for-description {
    font-size: 28px;
    line-height: 1.2;
  }
}

@media (max-width: 768px) {
  .ideal-for-content {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .ideal-for-label {
    margin-top: 0;
    font-size: 24px;
    width: 100%;
    text-align: center;
  }

  .ideal-for-text-column {
    width: 80%;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .ideal-for-description {
    text-align: center;
  }
}
