.page-about .about-story {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(2.5rem, 4vw, 3rem);
  background: #fff;
}

.page-about .about-story__inner,
.page-about .about-team__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-about .about-story__header {
  max-width: 42rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.page-about .about-story__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.page-about .about-story__intro {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.page-about .about-story__hero {
  margin: 0 0 2.5rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.page-about .about-story__hero img {
  display: block;
  width: 100%;
  height: clamp(16rem, 38vw, 28rem);
  object-fit: cover;
}

.page-about .about-story__body {
  direction: rtl;
  text-align: start;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
}

.page-about .about-story__body > :first-child {
  margin-top: 0;
}

.page-about .about-story__body > :last-child {
  margin-bottom: 0;
}

.page-about .about-story__body h2,
.page-about .about-story__body h3,
.page-about .about-story__body h4 {
  color: #000;
  line-height: 1.5;
}

.page-about .about-story__body h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.page-about .about-story__body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.page-about .about-story__body p + p,
.page-about .about-story__body ul,
.page-about .about-story__body ol,
.page-about .about-story__body blockquote,
.page-about .about-story__body figure,
.page-about .about-story__body h2,
.page-about .about-story__body h3,
.page-about .about-story__body h4 {
  margin-top: 1.25rem;
}

.page-about .about-story__body ul,
.page-about .about-story__body ol {
  padding-inline-start: 1.25rem;
  list-style-position: outside;
}

.page-about .about-story__body ul {
  list-style-type: disc;
}

.page-about .about-story__body ol {
  list-style-type: decimal;
}

.page-about .about-story__body li > p {
  margin: 0;
}

.page-about .about-story__body li + li {
  margin-top: 0.35rem;
}

.page-about .about-story__body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.page-about .about-story__body a:hover {
  color: var(--color-primary-hover);
}

.page-about .about-story__body img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.85rem;
}

.page-about .about-team {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 5vw, 4rem);
  background: #fff;
}

.page-about .about-team__title {
  margin: 0 0 2rem;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  color: #000;
}

.page-about .about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.page-about .about-team__card {
  min-width: 0;
}

.page-about .about-team__photo {
  position: relative;
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #f3f4f6;
}

.page-about .about-team__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-about .about-team__caption {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  left: 0.85rem;
  padding: 0.65rem 0.75rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  direction: rtl;
  text-align: start;
}

.page-about .about-team__role {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--color-text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.page-about .about-team__name {
  display: block;
  color: #000;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .page-about .about-team__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .page-about .about-story {
    padding: 2rem 0 2rem;
  }

  .page-about .about-team__grid {
    grid-template-columns: 1fr;
    max-width: 18rem;
    margin-inline: auto;
  }
}
