:root {
  --font-xs: 12px;
  --font-s: 14px;
  --font-base: 16px;
  --font-m: clamp(18px, 2vw, 24px);
  --font-l: clamp(26px, 2.8vw, 32px);
  --font-xl: clamp(32px, 3.5vw, 40px);
}

.about .principles .principles__intro {
  text-align: center;
}
.about .principles .principles__intro .section-head {
  align-items: center;
}
.about .principles .principles__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about .principles .principles__desc p {
  font-size: var(--font-s);
  line-height: 1.8;
}
.about .principles .principles__desc p br {
  display: none;
}
.about .principles .principles__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.about .principles .principles-card {
  flex: 1;
  padding: 20px;
  background-color: #f9fafb;
  border: 1px solid #1a2d70;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transform: translateY(24px);
}
.about .principles .principles-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about .principles .principles-card__label {
  font-size: var(--font-s);
  color: #ed703a;
}
.about .principles .principles-card__heading {
  margin-top: 4px;
  margin-bottom: 14px;
  font-size: var(--font-base);
  font-weight: bold;
  line-height: 1.4;
  color: #1a2d70;
}
.about .principles .principles-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about .principles .principles-card__body p {
  font-size: var(--font-s);
  line-height: 1.8;
  color: #4a5565;
}
.about .judgment {
  width: 100%;
}
.about .judgment .judgment__inner {
  width: 100%;
  max-width: 1280px;
  padding: 24px 16px;
  margin-inline: auto;
  background-color: #f9fafb;
  border-radius: 16px;
}
.about .judgment .judgment__intro {
  text-align: center;
}
.about .judgment .judgment__intro .section-head {
  align-items: center;
}
.about .judgment .judgment__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about .judgment .judgment__desc p {
  font-size: var(--font-s);
  line-height: 1.8;
}
.about .judgment .judgment__desc p br {
  display: none;
}
.about .judgment .judgment__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.about .judgment .judgment__item {
  padding: 20px;
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}
.about .judgment .judgment__item-head {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: auto 1fr;
  gap: 0 12px;
  align-items: center;
  margin-bottom: 20px;
}
.about .judgment .judgment__item-icon {
  display: grid;
  grid-row: 1/3;
  place-items: center;
  width: 44px;
  height: 44px;
  background-color: #1a2d70;
  border-radius: 10px;
}
.about .judgment .judgment__item-icon img {
  width: 24px;
  height: 24px;
}
.about .judgment .judgment__item-number {
  font-size: var(--font-s);
  color: #ed703a;
}
.about .judgment .judgment__item-title {
  font-size: var(--font-m);
  font-weight: bold;
  line-height: 1.35;
  color: #1a2d70;
}
.about .judgment .judgment__item-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about .judgment .judgment__column {
  flex: 1;
  padding: 16px;
  background-color: #f9fafb;
  border-radius: 12px;
}
.about .judgment .judgment__column-head {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  font-size: var(--font-s);
  font-weight: bold;
  color: #1a2d70;
}
.about .judgment .judgment__column-head img {
  width: 20px;
  height: 20px;
}
.about .judgment .judgment__column-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.about .judgment .judgment__column-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.about .judgment .judgment__column-list li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background-color: #1a2d70;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .about .principles .principles__desc {
    gap: 24px;
  }
  .about .principles .principles__desc p {
    font-size: var(--font-base);
  }
  .about .principles .principles__desc p br {
    display: inline;
  }
  .about .principles .principles__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
  .about .principles .principles-card {
    padding: 24px;
  }
  .about .principles .principles-card__heading {
    font-size: var(--font-m);
  }
  .about .principles .principles-card__body p {
    font-size: var(--font-base);
    line-height: 26px;
  }
  .about .judgment {
    width: 98%;
  }
  .about .judgment .judgment__inner {
    padding: 40px 20px;
  }
  .about .judgment .judgment__desc {
    gap: 24px;
  }
  .about .judgment .judgment__desc p {
    font-size: var(--font-base);
  }
  .about .judgment .judgment__desc p br {
    display: inline;
  }
  .about .judgment .judgment__item {
    padding: 28px;
  }
  .about .judgment .judgment__column {
    padding: 20px 24px;
  }
  .about .judgment .judgment__column-list li {
    font-size: var(--font-s);
    line-height: 22px;
  }
}
@media screen and (min-width: 1024px) {
  .about .principles .principles__cards {
    display: flex;
    gap: 24px;
  }
  .about .principles .principles-card {
    padding: 32px;
  }
  .about .judgment .judgment__inner {
    padding: 62px 24px;
    border-radius: 24px;
  }
  .about .judgment .judgment__list {
    gap: 48px;
  }
  .about .judgment .judgment__item {
    padding: 40px;
    border-radius: 24px;
  }
  .about .judgment .judgment__item-head {
    gap: 0 24px;
    margin-bottom: 40px;
  }
  .about .judgment .judgment__item-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }
  .about .judgment .judgment__item-icon img {
    width: 32px;
    height: 32px;
  }
  .about .judgment .judgment__item-title {
    font-size: var(--font-l);
    line-height: 1.2;
  }
  .about .judgment .judgment__item-content {
    flex-direction: row;
    gap: 24px;
  }
  .about .judgment .judgment__column {
    padding: 24px 32px;
    border-radius: 16px;
  }
  .about .judgment .judgment__column-head {
    margin-bottom: 16px;
    font-size: var(--font-base);
  }
  .about .judgment .judgment__column-head img {
    width: 24px;
    height: 24px;
  }
}
