.sticky-tab-group {
  overflow: clip;
  isolation: isolate;

  --st-section-bg: #131313;
  --st-section-color: #fff;
  --st-header-bg: #000;
  --st-header-border: #ffffff26;
  --st-shadow: #00000040;
}

.sticky-tab-group--light {
  --st-section-bg: #f4f4f4;
  --st-section-color: #1a1a1a;
  --st-header-bg: #fff;
  --st-header-border: rgba(0, 0, 0, 0.12);
  --st-shadow: rgba(0, 0, 0, 0.08);
}

.sticky-tab-group h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1;
}

.sticky-tab-group p {
  margin-bottom: 0;
  font-size: inherit;
  line-height: inherit;
}

.sticky-tab {
  background-color: var(--st-section-bg);
  color: var(--st-section-color);
  position: relative;
  overflow: clip;
}

.sticky-tab__sticky {
  z-index: 1;
  top: calc(var(--nav-bar-height) - 1px);
  flex-flow: column;
  margin-top: -1px;
  display: flex;
  position: sticky;
  box-shadow: 0 0.25em 0.5em 0 var(--st-shadow);
}

.sticky-tab__sticky::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 100vh;
  background-color: var(--st-header-bg);
}

.sticky-tab__inner {
  background-color: var(--st-header-bg);
  border-top: 1px solid var(--st-header-border);
  border-bottom: 1px solid var(--st-header-border);
  justify-content: space-between;
  align-items: center;
  padding-top: 2em;
  padding-bottom: 2em;
}

.sticky-tab__content {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.sticky-tab__heading {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
}

.sticky-tab__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25em;
  font-weight: 500;
  line-height: 1;
}

.sticky-tab__subtitle {
  margin: 0;
  font-size: 0.9375em;
  line-height: 1.4;
  opacity: 0.5;
}

.sticky-tab > .container {
  padding-top: 3em;
  padding-bottom: 3em;
}

.sticky-tab__placeholder {
  height: 66vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .sticky-tab-group .sticky-tab__title {
    font-size: 1.6em;
  }
}
