/* Solutions — full-width section, small vertical tabs */

.page-solutions .sol-tabs-section {
  padding: clamp(2.75rem, 5vw, 4.5rem) 0 clamp(4rem, 7vw, 6rem);
  background: #fff;
}

.page-solutions .sol-tabs {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid #ececec;
  background: #fff;
  box-shadow: 0 8px 24px rgba(67, 66, 66, 0.05);
}

.page-solutions .sol-tabs__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: #fff;
}

.page-solutions .sol-tabs__tab {
  appearance: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0.7rem 0.85rem;
  min-height: 44px;
  background: #434242;
  color: #fff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  transition: background 0.2s ease;
}

.page-solutions .sol-tabs__tab:hover {
  background: #383737;
}

.page-solutions .sol-tabs__tab:focus-visible {
  outline: 2px solid #EC7626;
  outline-offset: -2px;
  z-index: 1;
}

.page-solutions .sol-tabs__tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #248ECD;
}

.page-solutions .sol-tabs__panels {
  background: #fff;
  border-left: 1px solid #ececec;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  min-width: 0;
}

.page-solutions .sol-tabs__panel[hidden] {
  display: none;
}

.page-solutions .sol-tabs__media {
  margin: 1.5rem 0 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f4;
}

.page-solutions .sol-tabs__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}

.page-solutions .sol-tabs__heading {
  margin: 0 0 0.85rem;
  color: #EC7626;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.page-solutions .sol-tabs__text {
  margin: 0 0 1.15rem;
  color: #616161;
  font-size: 0.92rem;
  line-height: 1.75;
}

.page-solutions .sol-tabs__features-title {
  margin: 0 0 0.65rem;
  color: #434242;
  font-size: 1rem;
  font-weight: 600;
}

.page-solutions .sol-tabs__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.page-solutions .sol-tabs__features li {
  position: relative;
  padding-left: 1.15rem;
  color: #616161;
  font-size: 0.92rem;
  line-height: 1.55;
}

.page-solutions .sol-tabs__features li::before {
  content: ">";
  position: absolute;
  left: 0;
  top: 0;
  color: #EC7626;
  font-weight: 600;
}

@media (max-width: 768px) {
  .page-solutions .sol-tabs {
    grid-template-columns: 1fr;
  }

  .page-solutions .sol-tabs__nav {
    flex-direction: row;
  }

  .page-solutions .sol-tabs__tab {
    flex: 1;
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    padding: 0.65rem 0.5rem;
    min-height: 40px;
  }

  .page-solutions .sol-tabs__tab.is-active::after {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 3px;
    background: #248ECD;
  }

  .page-solutions .sol-tabs__panels {
    border-left: 0;
    border-top: 1px solid #ececec;
  }
}
