/* About page — content-oriented layout (no absolute blocks) */
.about-page .site-header {
  padding: 78px 123px;
}

.about-page {
  background: #030e1f;
  min-height: 100vh;
}

.about-page__frame {
  position: relative;
  min-height: 100vh;
}

.about-page__layout {
  position: relative;
  z-index: 6;
  max-width: 100%;
  margin: 0 auto;
  padding: 500px 123px 120px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.about-page__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 452px;
  gap: 112px;
  align-items: start;
}

.about-page__block {
  position: relative;
}

.about-page__title,
.about-page__section-title {
  margin: 0;
  font-family: "Conthrax SemiBold", var(--font-family), sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.34;
  color: #fff;
  font-size: clamp(20px, 1.9vw, 38px);
}

.about-page__section-title {
  font-size: clamp(18px, 1.5vw, 30px);
}

.about-page__divider {
  width: 100%;
  height: 2px;
  margin: 18px 0 24px;
  background: #79dbff;
}

.about-page__intro-text,
.about-page__section-text {
  margin: 0;
  font-family: "Conthrax Regular", var(--font-family), sans-serif;
  font-weight: 300;
  text-align: justify;
  letter-spacing: 0.05em;
  line-height: 1.38;
  color: #79dbff;
  font-size: clamp(14px, 1.1vw, 24px);
}

.about-page__intro-text p,
.about-page__section-text p {
  margin: 0 0 18px;
}

.about-page__intro-text p:last-child,
.about-page__section-text p:last-child {
  margin-bottom: 0;
}

.about-page__intro-text .white_text,
.about-page__section-text .white_text {
  color: #fff;
}

.about-page__map {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
  border: 2px solid rgba(121, 219, 255, 0.55);
}

.about-page__block--director {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.about-page__director-card {
  width: 100%;
  aspect-ratio: 452 / 677;
  background: url("/images/main/about-director.png") center top / cover no-repeat;
  border: 2px solid rgba(66, 201, 255, 0.55);
}

.about-page__director-role,
.about-page__director-name {
  width: 100%;
  margin: 0;
  text-align: right;
  font-family: "Conthrax SemiBold", var(--font-family), sans-serif;
  letter-spacing: 0.05em;
}

.about-page__director-role {
  margin-top: 24px;
  color: #fff;
  font-size: clamp(16px, 1.2vw, 26px);
  line-height: 1.25;
}

.about-page__director-name {
  margin-top: 14px;
  color: #79dbff;
  font-size: clamp(16px, 1.2vw, 26px);
}

@media (max-width: 1200px) {
  .about-page__layout {
    padding: 430px 24px 90px;
    gap: 40px;
  }

  .about-page__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-page__block--director {
    align-items: flex-start;
  }

  .about-page__director-role,
  .about-page__director-name {
    text-align: left;
  }
}
