/* ========================================
   APIE MUS PUSLAPIS
   ======================================== */

.about-page {
  font-family: "Manrope", sans-serif;
  color: #241b2f;
  background: #ffffff;
}

.about-section {
  padding: 64px 24px 96px;
}

.about-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 40px;
  color: #82788d;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumbs a {
  color: #6d27d8;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.breadcrumbs a:hover {
  opacity: 0.75;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(44px, 7vw, 88px);
}

.about-content {
  max-width: 650px;
}

.about-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #6d27d8;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.about-content h1 {
  max-width: 620px;
  margin: 0 0 24px;
  color: #24162f;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-content p {
  margin: 0 0 18px;
  color: #675d70;
  font-size: 16px;
  line-height: 1.8;
}

.about-content .about-lead {
  color: #3c3047;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

.about-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #44374f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.about-list .material-symbols-rounded {
  flex: 0 0 auto;
  margin-top: 1px;
  color: #6d27d8;
  font-size: 23px;
}

.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 28px;
  background: #f5f0ff;
  box-shadow: 0 22px 55px rgba(74, 38, 112, 0.13);
}

.about-image-wrap::before {
  position: absolute;
  z-index: 1;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 19px;
  pointer-events: none;
  content: "";
}

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

@media (max-width: 920px) {
  .about-section {
    padding-top: 48px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-content {
    max-width: 760px;
  }

  .about-image-wrap {
    width: min(720px, 100%);
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 36px 16px 64px;
  }

  .breadcrumbs {
    margin-bottom: 28px;
    font-size: 13px;
  }

  .about-grid {
    gap: 32px;
  }

  .about-label {
    margin-bottom: 11px;
    font-size: 14px;
  }

  .about-content h1 {
    margin-bottom: 20px;
    font-size: clamp(32px, 10vw, 42px);
  }

  .about-content p,
  .about-content .about-lead {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-list {
    margin-top: 25px;
  }

  .about-list li {
    font-size: 14px;
  }

  .about-image-wrap {
    border-radius: 21px;
    box-shadow: 0 16px 38px rgba(74, 38, 112, 0.12);
  }

  .about-image-wrap::before {
    inset: 10px;
    border-radius: 14px;
  }
}
