.section-pad {
  padding: 120px 0 30px;
  overflow: hidden;
}

.section-pad-sm {
  padding: 50px 0 50px;
  overflow: hidden;
}

.section-title {
  font-family: "Candara", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-title-accent {
  color: var(--accent);
}

.section-divider {
  width: 64px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin-bottom: 28px;
}

.section-body {
  font-size: 20px;
  color: var(--mid);
  line-height: 1.35;
  text-align: justify;
}

.info-card {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
  height: 100%;
}

.image-c {
  min-height: 280px;

  border-radius: 18px;

  background-image: url("/foundation/image/about.webp");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  overflow: hidden;
}

.image-card {
  min-height: 400px;
  border-radius: 18px;
  background-image: url("/foundation/image/mission.webp");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.image-mission {
  min-height: 400px;
  border-radius: 18px;
  background-image: url("/foundation/image/mission.png");
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li {
  font-family: "Candara", sans-serif;
  font-size: 1.25rem;
  color: var(--mid);
  padding: 12px 0 12px 30px;
  text-align: justify;
  position: relative;
  border-bottom: 1px solid rgba(232, 185, 106, 0.4);
}

.mission-list li:last-child {
  border-bottom: none;
}

.mission-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-size: 1.3rem;
}

/* SECTION ANIMATION */

.fade-up {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-left {
  opacity: 0;
  transform: translateX(-70px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(70px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

/* ACTIVE */

.show-animation {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* IMPACT SECTION */

.impact-section {
  padding: 30px 0;
  background: #f6edbf;
}

/* TITLE */

.impact-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #173b37;
  margin-bottom: 45px;
  font-family: "Candara", sans-serif;
}

/* MINI CARD */

.impact-mini-card {
  text-align: center;
}

/* NUMBER */

.impact-mini-card h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
  color: #8cc63f;
  font-family: "Candara", sans-serif;
}

/* PLUS / TEXT */

.impact-mini-card span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1px;
  color: #8cc63f;
  text-transform: sentence-case;
  font-family: "Candara", sans-serif;
}

/* SMALL TITLE */

.impact-mini-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1px;
  color: #173b37;
  letter-spacing: 1px;
  font-family: "Candara", sans-serif;
}

/* DESCRIPTION */

.impact-mini-card p {
  font-size: 14px;
  line-height: 1.2;
  color: #555;
  max-width: 210px;
  margin: auto;
  font-family: "Candara", sans-serif;
}

.impact-mini-card {
  height: 125px;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.impact-mini-card p {
  max-width: 220px;
  margin: 0 auto;
}

/* MOBILE */

@media (max-width: 768px) {
  .impact-title {
    font-size: 33px;
  }

  .impact-mini-card h3 {
    font-size: 40px;
  }

  .impact-mini-card span {
    font-size: 18px;
  }

  .impact-mini-card h5 {
    font-size: 15px;
  }

  .impact-mini-card p {
    font-size: 12px;
  }
}
