/* About page */

.store-page--about .about-content {
  max-width: 100%;
  width: 100%;
}

.about-section {
  margin-bottom: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e8e8e8;
}

.about-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.about-section__title {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: #24262B;
}

.about-section__intro {
  margin: -0.5rem 0 1.75rem;
  max-width: none;
  font-size: 1rem;
  line-height: 1.65;
  color: #6f7273;
}

.about-prose p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #303030;
}

.about-prose p:last-child {
  margin-bottom: 0;
}

.about-origin {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-origin {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
  }

  .about-origin--text-only {
    grid-template-columns: 1fr;
  }
}

.about-origin__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.about-values {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.about-values__item {
  padding: 1.5rem 1.35rem 1.4rem;
  background: #fafafa;
  border: 1px solid #ececec;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-values__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(36, 38, 43, 0.08);
}

.about-values__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.about-values__icon {
  flex-shrink: 0;
  font-size: 1.35rem;
  line-height: 1;
  color: #24262B;
}

.about-values__item h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #24262B;
}

.about-values__item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #6f7273;
}

.about-team__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .about-team__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-team__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  text-align: center;
}

.about-team__profile {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.about-team__photo {
  width: 100%;
  margin: 0 0 1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f0f0f0;
}

.about-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team__name {
  width: 100%;
  max-width: 100%;
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  color: #24262B;
}

.about-team__role {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6f7273;
}

.about-team__bio {
  width: 100%;
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: #6f7273;
}

@media (max-width: 575px) {
  .about-team__grid {
    grid-template-columns: 1fr;
  }

  .about-team__profile {
    max-width: 160px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-values__item {
    transition: none;
  }

  .about-values__item:hover {
    transform: none;
  }
}
