.pro-service-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
  gap: 28px;
  align-items: start;
}

.pro-service-content {
  min-width: 0;
}

.pro-service-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.pro-category-card {
  overflow: hidden;
  border: 1px solid #e3edf7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 42, 67, .08);
}

.pro-category-card h2 {
  margin: 0;
  padding: 22px 22px 16px;
  color: #071f3a;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 900;
}

.pro-category-links {
  display: grid;
  gap: 10px;
  padding: 0 18px 20px;
}

.pro-category-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #e3edf7;
  border-radius: 14px;
  background: #f8fbff;
  color: #102a43;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease;
}

.pro-category-links a span {
  flex: 0 0 auto;
  color: #ff8a00;
  font-size: 20px;
  line-height: 1;
  transition: transform .22s ease, color .22s ease;
}

.pro-category-links a:hover {
  transform: translateX(4px);
  border-color: rgba(15, 76, 255, .26);
  background: #eef6ff;
  color: #0F4CFF;
  box-shadow: 0 12px 26px rgba(15, 76, 255, .1);
}

.pro-category-links a:hover span {
  transform: translateX(3px);
  color: #0F4CFF;
}

.pro-category-links a.is-active {
  border-color: #e31b23;
  background: #e31b23;
  color: #fff;
  box-shadow: 0 16px 34px rgba(227, 27, 35, .22);
}

.pro-category-links a.is-active span {
  color: #fff;
}

@media (max-width: 991px) {
  .pro-service-layout {
    grid-template-columns: 1fr;
  }

  .pro-service-sidebar {
    position: static;
    top: auto;
  }
}
