/* Solution list redesign - independent style */
.gsee-solution-page,
.gsee-solution-page * {
  box-sizing: border-box;
}

.gsee-solution-page {
  --gsee-red: #e60033;
  --gsee-blue: #1f5ab8;
  --gsee-navy: #061b49;
  --gsee-text: #202833;
  --gsee-muted: #687485;
  --gsee-line: #e2e9f3;
  background:
    radial-gradient(circle at 90% 5%, rgba(31, 90, 184, .08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fc 45%, #ffffff 100%);
  padding: 36px 0 76px;
  overflow: hidden;
}

.gsee-solution-page a {
  color: inherit;
  text-decoration: none;
}

.gsee-solution-page img {
  max-width: 100%;
  display: block;
}

.gsee-solution-container {
  width: min(1360px, calc(100vw - 72px));
  margin: 100px auto 0 auto;
}

.gsee-solution-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
  color: #7a8493;
  font-size: 14px;
}

.gsee-solution-breadcrumb a {
  color: #687485;
  transition: color .18s ease;
}

.gsee-solution-breadcrumb a:hover,
.gsee-solution-breadcrumb a:last-child {
  color: var(--gsee-red);
}

.gsee-solution-breadcrumb span {
  color: #b3bdca;
}

.gsee-solution-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 34px;
}

.gsee-solution-hero-main {
  position: relative;
  min-height: 245px;
  padding: 48px 54px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(6, 27, 73, .94), rgba(25, 56, 108, .92)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 48px);
  box-shadow: 0 22px 58px rgba(6, 27, 73, .16);
  overflow: hidden;
}

.gsee-solution-hero-main::before {
  content: "";
  position: absolute;
  left: 54px;
  top: 38px;
  width: 58px;
  height: 4px;
  border-radius: 99px;
  background: var(--gsee-red);
}

.gsee-solution-kicker {
  margin-top: 26px;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
}

.gsee-solution-hero h1 {
  max-width: 840px;
  margin: 14px 0 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.gsee-solution-hero-desc {
  max-width: 880px;
  margin-top: 20px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.85;
}

.gsee-solution-hero-desc,
.gsee-solution-hero-desc * {
  color: rgba(255,255,255,.82) !important;
  font-size: 16px !important;
  line-height: 1.85 !important;
}

.gsee-solution-hero-desc p {
  margin: 0 0 8px;
}

.gsee-solution-hero-side {
  display: flex;
  align-items: stretch;
}

.gsee-solution-count {
  width: 100%;
  min-height: 245px;
  border-radius: 28px;
  border: 1px solid rgba(6, 27, 73, .08);
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.gsee-solution-count strong {
  color: var(--gsee-red);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}

.gsee-solution-count span {
  margin-top: 12px;
  color: var(--gsee-navy);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
}

.gsee-solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.gsee-solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 42% minmax(0, 1fr);
  min-height: 282px;
  border: 1px solid rgba(6, 27, 73, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .075);
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease, box-shadow .22s ease, border-color .22s ease;
}

.gsee-solution-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.gsee-solution-card:hover {
  border-color: rgba(230, 0, 51, .22);
  box-shadow: 0 24px 58px rgba(15, 23, 42, .12);
}

.gsee-solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--gsee-red), var(--gsee-blue));
  opacity: 0;
  transition: opacity .22s ease;
}

.gsee-solution-card:hover::before {
  opacity: 1;
}

.gsee-solution-card-img {
  position: relative;
  min-height: 282px;
  background: linear-gradient(180deg, #f7f9fc, #edf2f7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  overflow: hidden;
}

.gsee-solution-card-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 54px;
  background-image: repeating-linear-gradient(90deg, rgba(6,27,73,.08) 0 1px, transparent 1px 42px);
  opacity: .4;
}

.gsee-solution-card-img img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 94%;
  max-height: 230px;
  object-fit: contain;
  transition: transform .28s ease;
  filter: drop-shadow(0 16px 22px rgba(6, 27, 73, .12));
}

.gsee-solution-card:hover .gsee-solution-card-img img {
  transform: scale(1.04);
}

.gsee-solution-card-body {
  position: relative;
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gsee-solution-card-index {
  color: rgba(6, 27, 73, .14);
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 18px;
}

.gsee-solution-card-title {
  color: var(--gsee-navy);
  font-size: 24px;
  line-height: 1.28;
  font-weight: 900;
  transition: color .18s ease;
}

.gsee-solution-card-title:hover {
  color: var(--gsee-red);
}

.gsee-solution-card-desc {
  margin-top: 14px;
  color: #5b6678;
  font-size: 15px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gsee-solution-card-desc,
.gsee-solution-card-desc * {
  color: #5b6678 !important;
  font-size: 15px !important;
  line-height: 1.75 !important;
}

.gsee-solution-card-desc p {
  margin: 0;
}

.gsee-solution-card-more {
  margin-top: auto;
  padding-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gsee-red);
  font-size: 15px;
  font-weight: 900;
}

.gsee-solution-card-more i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(230, 0, 51, .08);
  font-style: normal;
  transition: transform .18s ease, background .18s ease;
}

.gsee-solution-card:hover .gsee-solution-card-more i {
  transform: translateX(4px);
  background: rgba(230, 0, 51, .14);
}

@media (max-width: 1180px) {
  .gsee-solution-container {
    width: min(1120px, calc(100vw - 40px));
  }

  .gsee-solution-hero {
    grid-template-columns: 1fr;
  }

  .gsee-solution-count {
    min-height: 140px;
  }

  .gsee-solution-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .gsee-solution-page {
    padding: 24px 0 50px;
  }

  .gsee-solution-container {
    width: calc(100vw - 28px);
  }

  .gsee-solution-hero-main {
    min-height: 210px;
    padding: 38px 24px 30px;
    border-radius: 22px;
  }

  .gsee-solution-hero-main::before {
    left: 24px;
    top: 28px;
  }

  .gsee-solution-hero h1 {
    font-size: 32px;
  }

  .gsee-solution-count {
    border-radius: 22px;
  }

  .gsee-solution-card {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .gsee-solution-card-img {
    min-height: 230px;
  }

  .gsee-solution-card-body {
    padding: 26px 24px;
  }

  .gsee-solution-card-title {
    font-size: 21px;
  }
}
