body {
  background: #f6f8fc;
}

.solution-page {
  padding: 140px 0 70px;
}

.solution-heading {
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dbe4f3;
}

.solution-title {
  margin: 0;
  color: #1a2a44;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.2;
}

.solution-subtitle {
  margin: 8px 0 0;
  font-size: 15px;
  color: #5f6f87;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.solution-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-item {
  margin-bottom: 24px;
}

.solution-link {
  display: flex;
  align-items: stretch;
  min-height: 206px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(13, 44, 103, 0.08);
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.solution-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(13, 44, 103, 0.15);
}

.solution-cover {
  width: 280px;
  min-height: 206px;
  background: #eff4ff;
  overflow: hidden;
  flex-shrink: 0;
}

.solution-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-link:hover .solution-cover img {
  transform: scale(1.06);
}

.solution-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px;
}

.solution-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.solution-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(47, 122, 249, 0.12);
  color: #2f7af9;
  font-size: 14px;
  font-weight: 700;
}

.solution-name {
  margin: 0;
  color: #1a2a44;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 600;
}

.solution-desc {
  margin: 0;
  color: #5f6f87;
  font-size: 15px;
  line-height: 1.8;
}

.solution-cta {
  margin-top: 20px;
  color: #2f7af9;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.solution-cta:after {
  content: "  >";
  font-weight: 700;
}

@media (max-width: 991px) {
  .solution-page {
    padding: 34px 0 52px;
  }

  .solution-heading {
    margin-bottom: 22px;
    padding-bottom: 12px;
  }

  .solution-title {
    font-size: 28px;
  }

  .solution-link {
    min-height: 0;
  }

  .solution-cover {
    width: 230px;
  }

  .solution-content {
    padding: 20px;
  }

  .solution-name {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  .solution-page {
    padding-top: 26px;
  }

  .solution-title {
    font-size: 22px;
  }

  .solution-subtitle {
    font-size: 12px;
    letter-spacing: 1.2px;
  }

  .solution-link {
    display: block;
  }

  .solution-cover {
    width: 100%;
    min-height: 176px;
    max-height: 210px;
  }

  .solution-content {
    padding: 18px 16px 20px;
  }

  .solution-topline {
    margin-bottom: 10px;
  }

  .solution-index {
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .solution-name {
    font-size: 19px;
  }

  .solution-desc {
    font-size: 14px;
    line-height: 1.7;
  }
}
