/* Ebenhaezer George Renaldi Muljadi - 2702230461 */

.about-container {
  padding: 2rem;
  max-width: 1200px;
  margin: 5rem auto;
}

.about-quote {
  text-align: center;
  margin-bottom: 3rem;
}

.about-quote h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c2c2c;
}

.about-quote p {
  font-style: italic;
  margin-top: 0.5rem;
  color: #2c2c2c;
}

.about-story {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.about-story img {
  width: 100%;
  border-radius: 1rem;
  object-fit: contain;
  max-height: 400px;
}

.about-text h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-text p {
  line-height: 1.6;
  color: #2c2c2c;
}

.read-more-content {
  overflow: hidden;
  max-height: 160px;
  position: relative;
  transition: max-height 0.4s ease;
}

.read-more-content.expanded {
  max-height: 1000px;
}

.read-more-btn {
  margin-top: 0.5rem;
  background-color: #2c2c2c;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  cursor: pointer;
}

.vision-mission {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.vision, .mission {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vision-img, .mission-img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
  max-height: 300px;
}

.vision-text h2,
.mission-text h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vision-text p,
.mission-text ul {
  line-height: 1.6;
  color: #2c2c2c;
}

.mission-text ul {
  list-style: disc;
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .about-story {
    flex-direction: row;
    align-items: center;
  }

  .about-story img,
  .about-text {
    flex: 1;
  }

  .vision, .mission {
    flex-direction: row;
    align-items: center;
  }

  .vision-img, .mission-img {
    flex: 1;
  }

  .vision-text, .mission-text {
    flex: 2;
    padding: 0 1.5rem;
  }
}