.statusko-services-overview,
.statusko-services-overview * {
  box-sizing: border-box;
}

.statusko-services-overview {
  --overview-text: #3f3f3f;
  --overview-muted: #747474;
  --overview-orange: #f58220;
  width: calc(100% - (var(--statusko-page-gutter, 24px) * 2));
  max-width: var(--statusko-page-max, 1232px);
  margin: 0 auto;
  padding: 54px 0 40px;
  color: var(--overview-text);
  font-family: "Mulish", sans-serif;
}

.statusko-services-overview__hero {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: center;
  min-height: 430px;
}

.statusko-services-overview__hero-content {
  min-width: 0;
}

.statusko-services-overview__title,
.statusko-services-overview__catalog-title {
  margin: 0;
  color: var(--overview-text);
  font-weight: 900;
  letter-spacing: 0;
}

.statusko-services-overview__title {
  font-size: 34px;
  line-height: 1.15;
}

.statusko-services-overview__title span {
  color: var(--overview-orange);
}

.statusko-services-overview__lead {
  max-width: 680px;
  margin: 14px 0 24px;
  color: var(--overview-muted);
  font-size: 16px;
  line-height: 1.45;
}

.statusko-services-overview__finder .services-finder {
  max-width: 720px;
}

.statusko-services-overview__hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.statusko-services-overview__hero-visual img {
  display: block;
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
}

.statusko-services-overview__layout {
  display: grid;
  grid-template-columns: minmax(0, var(--statusko-content-max, 908px)) var(--statusko-sidebar-width, 292px);
  gap: 36px;
  align-items: start;
  margin-top: 40px;
}

.statusko-services-overview__catalog {
  display: grid;
  gap: var(--statusko-layout-gap, 32px);
  min-width: 0;
}

.statusko-services-overview__catalog-title {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.2;
  text-align: center;
}

.statusko-services-section {
  display: grid;
  grid-template-columns: 152px minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(63, 63, 63, 0.07);
}

.statusko-services-section__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px;
  text-align: center;
}

.statusko-services-section__intro img {
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.statusko-services-section:hover .statusko-services-section__intro img {
  transform: translateY(-3px);
}

.statusko-services-section__intro h2 {
  margin: 0;
  color: var(--overview-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0;
}

.statusko-services-section__intro p {
  margin: 8px 0 0;
  color: var(--overview-muted);
  font-size: 12px;
  line-height: 1.35;
}

.statusko-services-section__body {
  display: grid;
  gap: 18px;
  min-width: 0;
}

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

.statusko-services-section__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  min-height: 104px;
  padding: 18px 18px 16px;
  border: 1px solid #e9e9e9;
  border-radius: 22px;
  background: #fff;
  color: var(--overview-text);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.statusko-services-section__card:hover,
.statusko-services-section__card:focus-visible {
  border-color: #ffb066;
  box-shadow: 0 8px 20px rgba(245, 130, 32, 0.1);
  color: var(--overview-text);
  outline: none;
  transform: translateY(-2px);
}

.statusko-services-section__card-copy {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.statusko-services-section__card strong {
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.statusko-services-section__card small {
  color: var(--overview-muted);
  font-size: 12px;
  line-height: 1;
}

.statusko-services-section__arrow {
  position: relative;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--overview-orange);
  border-radius: 50%;
}

.statusko-services-section__arrow::before {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--overview-orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9h9M9.5 5.5 13 9l-3.5 3.5' fill='none' stroke='%23000' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M4 9h9M9.5 5.5 13 9l-3.5 3.5' fill='none' stroke='%23000' stroke-width='1.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.statusko-services-section__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 8px;
  min-width: 164px;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 32px;
  background: #efefef;
  color: var(--overview-text);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.statusko-services-section__more:hover,
.statusko-services-section__more:focus-visible {
  background: var(--overview-orange);
  color: #fff;
  outline: none;
}

.statusko-services-overview__sidebar {
  position: sticky;
  top: 110px;
}

.statusko-services-overview__order-card {
  width: 100%;
  max-width: none;
}

@media (prefers-reduced-motion: reduce) {
  .statusko-services-section__card,
  .statusko-services-section__intro img {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .statusko-services-overview__hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

  .statusko-services-overview__layout {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 24px;
  }

  .statusko-services-section {
    grid-template-columns: 136px minmax(0, 1fr);
    padding: 18px;
  }
}

@media (max-width: 860px) {
  .statusko-services-overview {
    width: min(calc(100% - 28px), 720px);
    padding: 30px 0 24px;
  }

  .statusko-services-overview__hero {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .statusko-services-overview__hero-visual {
    grid-row: 1;
  }

  .statusko-services-overview__hero-visual img {
    width: min(100%, 430px);
  }

  .statusko-services-overview__hero-content {
    text-align: center;
  }

  .statusko-services-overview__lead {
    margin-inline: auto;
  }

  .statusko-services-overview__layout {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .statusko-services-overview__sidebar {
    position: static;
    width: min(100%, 360px);
    margin: 28px auto 0;
  }

}

@media (max-width: 620px) {
  .statusko-services-overview {
    width: min(calc(100% - 20px), 430px);
    padding: 20px 0 20px;
  }

  .statusko-services-overview__hero {
    min-height: 0;
  }

  .statusko-services-overview__hero-visual img {
    width: min(100%, 350px);
  }

  .statusko-services-overview__title {
    font-size: 26px;
  }

  .statusko-services-overview__lead {
    margin: 10px auto 18px;
    font-size: 13px;
    line-height: 1.45;
  }

  .statusko-services-overview__catalog-title {
    font-size: 22px;
  }

  .statusko-services-section {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 12px;
    border-radius: 24px;
  }

  .statusko-services-section__intro {
    padding: 14px 12px 4px;
  }

  .statusko-services-section__intro img {
    width: 64px;
    height: 64px;
    margin-bottom: 8px;
  }

  .statusko-services-section__intro p {
    max-width: 250px;
  }

  .statusko-services-section__cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .statusko-services-section__card {
    min-height: 86px;
    padding: 16px 12px;
    border-radius: 18px;
  }

  .statusko-services-section__card-copy {
    gap: 10px;
  }

  .statusko-services-section__card strong {
    font-size: 13px;
  }

  .statusko-services-section__more {
    width: 100%;
    min-width: 0;
  }

}
