.services-showcase {
  padding: 90px 0;
  background: linear-gradient(135deg, #f5eee3 0%, #fffaf3 100%);
}

.services-showcase .services-kicker {
  display: block;
  margin-bottom: 10px;
  color: #d84b39;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.services-showcase .content h3 {
  margin-bottom: 14px;
  color: #17313d;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.12;
}

.services-showcase .services-intro {
  max-width: 620px;
  margin-bottom: 24px;
  color: #5d727a;
  font-size: 17px;
  line-height: 1.65;
}

.services-showcase .services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.services-showcase .service-card {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  min-height: 76px;
  padding: 15px 42px 15px 15px;
  color: #17313d;
  font-weight: 700;
  line-height: 1.35;
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(13, 47, 69, .1);
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(13, 47, 69, .04);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.services-showcase .service-card .service-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  margin: 0;
  color: #d84b39;
  font-size: 20px;
  background: rgba(216, 75, 57, .1);
  border-radius: 12px;
}

.services-showcase .service-card .service-card-icon i {
  color: inherit;
  font-size: inherit;
}

.services-showcase .service-card .service-card-arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  color: #d84b39;
  font-size: 17px;
  opacity: .62;
  transform: translateY(-50%);
  transition: transform .25s ease, opacity .25s ease;
}

.services-showcase .service-card:hover {
  color: #17313d;
  background: #fff;
  border-color: rgba(216, 75, 57, .34);
  box-shadow: 0 14px 30px rgba(13, 47, 69, .1);
  transform: translateY(-3px);
}

.services-showcase .service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(3px, calc(-50% - 3px));
}

.services-showcase .service-card:focus-visible {
  outline: 3px solid rgba(216, 75, 57, .3);
  outline-offset: 3px;
}

.services-showcase .services-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 24px;
}

.services-showcase .services-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  color: #fff;
  font-weight: 700;
  background: #d84b39;
  border-radius: 10px;
  transition: .25s ease;
}

.services-showcase .services-cta a:hover {
  color: #fff;
  background: #bc3829;
  transform: translateY(-2px);
}

.services-showcase .services-cta small {
  color: #5d727a;
}

.services-showcase .work-gallery {
  width: 100%;
  padding-bottom: 3px;
  border-radius: 20px;
}

.services-showcase .work-gallery figure {
  position: relative;
  height: 510px;
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
}

.services-showcase .work-gallery figure::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(5, 29, 42, .78));
}

.services-showcase .work-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-showcase .work-gallery .swiper-slide:nth-child(1) img {
  object-position: 42% center;
}

.services-showcase .work-gallery .swiper-slide:nth-child(2) img {
  object-position: center 34%;
}

.services-showcase .work-gallery figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 25px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.services-showcase .work-gallery-prev,
.services-showcase .work-gallery-next {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #0d2f45;
  background: rgba(255, 250, 243, .92);
  border: 0;
  border-radius: 50%;
  transform: translateY(-70%);
  transition: .25s ease;
}

.services-showcase .work-gallery-prev { left: 14px; }
.services-showcase .work-gallery-next { right: 14px; }

.services-showcase .work-gallery-prev:hover,
.services-showcase .work-gallery-next:hover {
  color: #fff;
  background: #d84b39;
}

.services-showcase .work-gallery-pagination {
  position: relative;
  bottom: auto;
  margin-top: 14px;
}

.services-showcase .work-gallery-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(13, 47, 69, .35);
  opacity: 1;
  transition: .25s ease;
}

.services-showcase .work-gallery-pagination .swiper-pagination-bullet-active {
  width: 28px;
  background: #d84b39;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .services-showcase { padding: 65px 0; }
  .services-showcase .services-gallery { order: -1; }
  .services-showcase .work-gallery figure { height: 480px; }
}

@media (max-width: 575px) {
  .services-showcase { padding: 48px 0; }
  .services-showcase .content h3 { font-size: 32px; }
  .services-showcase .services-intro { font-size: 16px; }
  .services-showcase .services-grid { grid-template-columns: 1fr; }
  .services-showcase .service-card { min-height: 68px; }
  .services-showcase .work-gallery figure { height: 390px; }
  .services-showcase .work-gallery-prev,
  .services-showcase .work-gallery-next { width: 44px; height: 44px; }
  .services-showcase .services-cta { display: block; }
  .services-showcase .services-cta a { justify-content: center; width: 100%; text-align: center; }
  .services-showcase .services-cta small { display: block; margin-top: 10px; text-align: center; }
}
