/* ==========================================================================
   VALUES & MISSION COMPONENT
   Used in: about.html
   Note: Uses .section-header from titles.css for title
   ========================================================================== */

.values {
  padding: 6rem 1.5rem;
  background-color: var(--color-primary);
  color: var(--color-bg-light);
}

.values .section-header__label {
  color: var(--color-white-40);
}

.values .section-header__title {
  color: var(--color-bg-light);
}

.values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.values-card {
  text-align: center;
}

.values-card__icon-wrapper {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-white-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.values-card__icon {
  font-size: 2.5rem;
  color: var(--color-bg-light);
}

.values-card__title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-bg-light);
}

.values-card__description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-white-70);
}

.values__quote-wrapper {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--color-white-10);
}

.values__quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
  color: var(--color-bg-light);
  margin-bottom: 1.5rem;
}

.values__quote-author {
  text-align: center;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values__quote {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .values__quote {
    font-size: 2rem;
  }
}
