/* [project]/src/styles/AboutSection.css [client] (css) */
.about-section {
  align-items: stretch;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 40px;
  display: flex;
}

.about-text {
  font-size: var(--font-size-body);
  color: #eee;
  flex: 1.1;
  padding-right: 30px;
  font-weight: 400;
  line-height: 1.7;
}

.about-title {
  color: #fff;
  margin: 0 0 25px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
}

.about-image-wrapper {
  border-radius: 12px;
  flex: 1;
  width: 100%;
  max-width: 680px;
  height: 635px;
  margin-left: auto;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px #00000080;
}

.comparison-slider {
  cursor: ew-resize;
  -webkit-user-select: none;
  user-select: none;
  background-color: #1a1a1a;
  border-radius: 12px;
  flex: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.comparison-image-base, .comparison-image-overlay {
  pointer-events: none;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.comparison-handle {
  pointer-events: none;
  z-index: 10;
  background-color: #0000;
  width: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
}

.comparison-handle-button {
  background-color: var(--color-primary);
  color: #fff;
  border: 4px solid #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 10px #0006;
}

@media (max-width: 1024px) {
  .about-section {
    text-align: center;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
  }

  .about-text {
    text-align: center;
    padding-right: 0;
  }

  .about-image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 350px;
    margin: 20px auto 0;
  }

  .about-title {
    font-size: 32px;
  }
}

/*# sourceMappingURL=src_styles_AboutSection_css_65f1660e._.single.css.map*/