/*==========================================================
    ABOUT
==========================================================*/

.about {
  padding: 120px 0;

  background: #ffffff;
}

.about-grid {
  display: grid;

  grid-template-columns: 52% 48%;

  gap: 60px;

  align-items: start;
}

.about-image {
  width: 100%;

  height: 100%;
}

.about-image img {
  width: 100%;

  height: 100%;

  min-height: 580px;

  object-fit: cover;

  border-radius: 24px;

  display: block;
}

.about-content {
  width: 100%;
}

.about-content > p {
  margin-bottom: 32px;

  color: #64748b;

  line-height: 1.8;
}

.about-content h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);

  color: #0f172a;

  margin: 12px 0 18px;

  line-height: 1.1;
}

.about-features {
  display: grid;

  gap: 16px;
}

.about .btn-primary {
  display: inline-flex;

  margin-top: 50px;
}

.feature {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  transition: 0.3s;
}

.feature i {
  width: 58px;

  height: 58px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 16px;

  background: linear-gradient(135deg, #2563eb, #38bdf8);

  color: #ffffff;

  font-size: 1.3rem;

  flex-shrink: 0;
}

.feature h4 {
  color: #0f172a;

  margin-bottom: 4px;

  font-size: 1.15rem;
}

.feature p {
  color: #64748b;

  line-height: 1.7;
}

.feature:hover {
  transform: translateX(8px);
}

@media (max-width: 991px) {
  .about {
    padding: 10px 0 30px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-image {
    order: -1;
    width: calc(100% + 60px);
    margin-left: -30px;
    height: 280px;
  }

  .about-image img {
    width: 100%;
    height: 280px;
    min-height: 0;
    object-fit: cover;
  }

  .about-content {
    width: calc(100% + 40px);
    margin-left: -15px;
    padding: 0;
    box-sizing: border-box;
  }

  .about-content > p {
    line-height: 1.6;
  }

  .about-features {
    line-height: 1.6;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.95rem;
  }
}

@media (min-width: 992px) {
  .about {
    padding-top: 30px;
  }
}
