.personality-result-intro {
  max-width: 560px;
  margin: 0 auto 30px;
  text-align: center;
  line-height: 1.9;
}

.trait-list {
  display: grid;
  gap: 20px;
  margin-top: 35px;
}

.trait-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fcfdfc;
}

.trait-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 11px;
}

.trait-heading h3 {
  margin: 0;
  font-size: 17px;
}

.trait-heading strong {
  color: var(--dark);
  font-size: 20px;
}

.trait-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--pale);
}

.trait-meter i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.trait-item p {
  margin: 12px 0 0;
  color: #63726b;
  font-size: 13px;
  line-height: 1.8;
}

.personality-type-box {
  margin-top: 32px;
  padding: 28px;
  border-radius: 20px;
  background: #f4f2e9;
  text-align: center;
}

.personality-profile-image-link {
  display: block;
  width: min(100%, 280px);
  margin: 0 auto 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(51, 70, 63, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.personality-profile-image-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(51, 70, 63, 0.17);
}

.personality-profile-image-link:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.personality-profile-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.personality-type-box h2 {
  margin: 8px 0 13px;
  color: var(--dark);
}

.personality-type-box p {
  margin: 0;
  line-height: 1.9;
}

@media (max-width: 600px) {
  .trait-item {
    padding: 17px;
  }

  .personality-type-box {
    padding: 22px 18px;
  }

  .personality-profile-image-link {
    width: min(100%, 230px);
    margin-bottom: 20px;
    border-radius: 20px;
  }
}
