.nb-small-hero {
  background: #1e1e1e;
  padding: 220px 80px 80px;
  font-family:
    "DM Sans",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #fff;
}

.nb-small-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 90%;
}

.nb-small-hero__inner > * {
  max-width: 768px;
  color: #fff;
}

.nb-small-hero__breadcrumbs {
  margin-bottom: 24px;
}

.nb-small-hero__breadcrumbs-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nb-small-hero__breadcrumbs-link,
.nb-small-hero__breadcrumbs-current {
  font-size: 14px;
  line-height: 1.5;
  color: #ffffff;
}

.nb-small-hero__breadcrumbs-link {
  text-decoration: none;
}

.nb-small-hero__breadcrumbs-separator {
  font-family:
    "Roboto",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 14px;
}

.nb-small-hero__title {
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}

.nb-small-hero__body {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 768px;
}

.nb-small-hero__body-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* JS can remove this when expanded */
}

.nb-small-hero__body-text.is-expanded {
  line-clamp: initial;
  -webkit-line-clamp: initial;
  overflow: visible;
}

.nb-small-hero__toggle {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

.nb-small-hero__toggle-label {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  color: #ff8000;
}

.nb-small-hero__toggle-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nb-small-hero__toggle-icon svg {
  transform: rotate(0deg); /* down arrow by default */
}

.nb-small-hero__toggle.is-expanded .nb-small-hero__toggle-icon svg {
  transform: rotate(180deg);
}

.nb-small-hero__cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  background: #ff8000;
  color: #1e1e1e;
  border: 1px solid #ff8000;
  font:
    900 14px/1 "DM Sans",
    sans-serif;
  text-decoration: none;
  width: fit-content;
}
.nb-small-hero__cta:hover {
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .nb-small-hero {
    padding: 48px 20px 64px;
  }

  .nb-small-hero__title {
    font-size: 32px;
  }

  .nb-small-hero__body-text {
    font-size: 16px;
  }
}
