/* ── Our Key Values ── */

.values {
  padding: 5rem 4.2%;
  background: #fff;
}

.values__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: start;
  gap: 3.5rem;
}

.values__text {
  flex: 0 0 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  align-self: stretch;
}

.values__heading {
  font-size: clamp(2rem, 3vw, 2.53rem);
  font-weight: 800;
  color: #025e90;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.values__desc {
  font-size: clamp(0.95rem, 1.3vw, 1.115rem);
  font-weight: 500;
  color: #383838;
  line-height: 1.68;
  letter-spacing: -0.01em;
}

.values__btn {
  display: inline-block;
  background: #155573;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.75;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s;
}

.values__btn:hover {
  background: #0e3f57;
}

.values__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.625rem;
}

.values__card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 229px;
  display: flex;
  align-items: center;
}

.values__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 35%, rgba(35, 130, 176, 0.9) 55%);
}

.values__card-content {
  position: relative;
  padding: 2rem;
  color: #fff;
  max-width: 380px;
}

.values__card-title {
  font-size: clamp(1.75rem, 2.6vw, 2.34rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 0.75rem;
}

.values__card-desc {
  font-size: clamp(0.9rem, 1.2vw, 1.115rem);
  font-weight: 500;
  line-height: 1.5;
}
