.oe-sc-hub {
  color: #111;
  padding: 40px 20px 80px;
}

.oe-sc-hub__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.oe-sc-hub__hero {
  background: linear-gradient(135deg, #f8fff8 0%, #ffffff 50%, #f7fbff 100%);
  border: 1px solid #e7ecef;
  border-radius: 24px;
  padding: 48px 24px;
  margin-bottom: 32px;
}

.oe-sc-hub__label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #effaf2;
  border: 1px solid #d8efdc;
  color: #1d6b36;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
}

.oe-sc-hub__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.35;
  font-weight: 800;
}

.oe-sc-hub__lead {
  margin: 0;
  color: #444;
  font-size: 16px;
  line-height: 1.9;
}

.oe-sc-hub__content {
  margin-top: 36px;
  margin-bottom: 48px;
  line-height: 1.9;
}

.oe-sc-hub__content > *:first-child {
  margin-top: 0;
}

.oe-sc-hub__section {
  margin-top: 52px;
}

.oe-sc-hub__heading {
  margin: 0 0 18px;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.45;
  font-weight: 800;
}

.oe-sc-hub__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.oe-sc-hub__card {
  display: block;
  background: #fff;
  border: 1px solid #e7ecef;
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.oe-sc-hub__card:hover {
  transform: translateY(-2px);
  border-color: #d5dde2;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.oe-sc-hub__card-title {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 800;
}

.oe-sc-hub__card-text {
  margin: 0;
  color: #4a4a4a;
  font-size: 14px;
  line-height: 1.8;
}

.oe-sc-hub__card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
}

.oe-sc-hub__text p {
  margin: 0 0 16px;
  color: #333;
  line-height: 1.9;
}

.oe-sc-hub__empty {
  padding: 22px;
  border: 1px solid #e7ecef;
  border-radius: 18px;
  background: #fafbfc;
  color: #555;
}

.oe-sc-hub__cta {
  margin-top: 56px;
  padding: 32px 24px;
  border-radius: 24px;
  background: #111;
  color: #fff;
}

.oe-sc-hub__cta-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.45;
  font-weight: 800;
  color: #fff;
}

.oe-sc-hub__cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.9;
}

.oe-sc-hub__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.oe-sc-hub__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.oe-sc-hub__button--primary {
  background: #fff;
  color: #111;
}

.oe-sc-hub__button--primary:hover {
  opacity: .9;
}

.oe-sc-hub__button--secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.oe-sc-hub__button--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .oe-sc-hub__grid {
    grid-template-columns: 1fr;
  }

  .oe-sc-hub__hero,
  .oe-sc-hub__cta {
    padding: 34px 18px;
  }
}