.why-us {
  padding: 6rem 1rem;
}

.why-us__grid {
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25% 25% 40%;
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}

.why-us img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.why-us__left {
  height: 100%;
}
.why-us__middle {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  height: 100%;
}
.why-us__badge {
  background: var(--color-blue-grey-900);
  color: var(--blue-grey-50);
  padding: 1rem 1.2rem;
  border-radius: 14px;
  text-align: center;
}

.why-us__badge strong {
  display: block;
  font-size: 1.3rem;
}

.why-us__badge span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.why-us__content {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.why-us__content a {
  width: fit-content;
}
.why-us__content p {
  text-align: justify;
}
.why-us__pretitle {
  color: var(--color-dark-blue);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: auto;
}
.why-us__lead {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.why-us__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.8rem;
  display: grid;
  gap: 0.6rem;
}

.why-us__bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 500;
}

.why-us__bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-dark-blue);
  font-weight: 700;
}

@media (max-width: 1024px) {
  .why-us__grid {
    grid-template-columns: 35% 60%;
  }
  .why-us__grid .hover-lift:nth-child(1) {
    display: none;
  }

  .why-us__left {
    display: none;
  }
}
@media (max-width: 740px) {
  .why-us__grid {
    grid-template-columns: 1fr;
  }
  .why-us__visual {
    position: relative;
  }
  .why-us__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
}
