/* Root wrapper */
.about {
  background: #fff;
  padding: 2.5rem 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Two-column top part */
.about__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* LEFT column (numbers/headline) */
.about__stats { flex: 1 1 320px; }

.about__year {
  color: #ffa500;            /* Eurolift yellow */
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .25rem;
}
.about__experience {
  color: #666;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .95rem;
  margin-bottom: .25rem;
}
.about__headline {
  font-size: 1.8rem;
  font-weight: 800;
  margin: .25rem 0 1rem;
}

/* Orange stats card */
.about__card {
  background: #ffa500;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__metric-number {
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1.1;
}
.about__metric-label {
  opacity: .95;
  font-size: .95rem;
}

/* RIGHT column (overlapping images) */
.about__images { 
  flex: 1 1 420px; 
  position: relative; 
  padding: 1rem 0; 
}
.about__image--main {
  aspect-ratio: 22/29; /* Adjust this ratio as needed */
  overflow: hidden;
  width: 74%;
  border-radius: 0rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
}

.about__image--main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* .about__image--secondary {
  position: absolute;
  right: 8%;
  bottom: -10%;
  width: 55%;
  z-index: 10;
} */
.about__image--secondary {
  position: absolute;
  right: -3%;
  bottom: 20%;
  width: 55%;
  z-index: 10;
  aspect-ratio: 20/25; /* Different ratio for secondary image */
  overflow: hidden;
  border-radius: 0rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  border: 12px solid rgba(255, 255, 253, 1);
}

.about__image--secondary img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}


/* Bottom section */
.about__body {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 0 1rem;
}
.about__kicker {
  text-transform: uppercase;
  color: #888;
  letter-spacing: .12em;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}
.about__kicker::after {
  content: '';
  height: 2px;
  width: 60px;
  background: #ffa500;
  display: inline-block;
}
.about__title {
  font-size: 2rem;
  font-weight: 900;
  margin: .25rem 0 .75rem;
}
.about__text { color: #555; }

/* Services bullets */
.about__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .5rem 1.25rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.about__list-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
/* .about__list-item::before {
  content: '';
  width: .75rem;
  height: .75rem;
  background: #f5a002;
  border-radius: 999px;
  flex: 0 0 .75rem;
} */

/* Mobile tweaks */
@media (max-width: 768px) {
  .about__image--secondary {
    position: absolute;  /* Keep the overlap */
    right: 5%;          /* Adjust for mobile */
    bottom: 24%;        /* Adjust for mobile */
    width: 60%;         /* Smaller on mobile but still overlapping */
  }
  .about__image--main {
    aspect-ratio: 22/29; /* Adjust this ratio as needed */
    overflow: hidden;
    width: 82%;
    border-radius: 0rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  }
  .about__card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 24px 0;
  }
  
  .about__wrap,
  .about__body {
    padding: 12px 0;
  }
  
  .about__wrap {
    gap: 20px;
  }
  
  .about__year {
    font-size: 20px;
  }
  
  .about__headline {
    font-size: 16px;
    margin: 4px 0 10 8px;
  }
  
  .about__title {
    font-size: 16px;
  }
  
  .about__card {
    padding: 12px 16px;
    gap: 6px;
  }
  
  .about__metric-number {
    font-size: 16px;
  }
  
  .about__metric-label {
    font-size: 11px;
  }
  
  /* Further adjust overlapping for very small screens */
  .about__image--secondary {
    right: -5%;
    bottom: 20%;
    width: 61%;
  }
  
  .about__image--secondary img {
    border: 2px solid rgba(255, 255, 253, 1);
  }
  
  .about__list {
    gap: 10px;
  }
  
  .about__list-item {
    padding-left: 20px;
    font-size: 12px;
  }
  
  .about__kicker {
    font-size: 11px;
    gap: 6px;
  }
  
  .about__kicker::after {
    width: 40px;
  }
}
