body.searchOn {
    overflow: hidden !important;
  }
  
  .stoplight-subheader {
    padding: 15px var(--padding) 0;
    border-top: 1px var(--border) solid;
  }
  
  .stoplight-subheader-inner {
    display: flex !important;
    gap: 0 var(--padding);
    justify-content: space-between;
    align-items: center;
    max-width: var(--screen);
    margin: 0 auto !important;
  }
  
  @media screen and (max-width: 550px) {
    .stoplight-subheader-inner {
      flex-flow: column nowrap;
      align-items: stretch;
    }
  }
  
  .stoplight-categories h3 {
    display: none;
  }
  
  .stoplight-categories ul {
    list-style: none;
    margin: 0 !important;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0 30px;
    padding: 0;
  }
  
  @media screen and (max-width: 767px) {
    .stoplight-categories ul {
      gap: 0 20px;
    }
  }
  
  @media screen and (max-width: 550px) {
    .stoplight-categories ul {
      flex-shrink: 0;
    }
    .stoplight-categories .widget-module {
      display: flex;
      overflow-x: scroll;
      padding-bottom: 15px;
    }
  }
  
  .stoplight-categories a {
    padding: 5px 0 4px;
    display: block;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.4em;
    color: var(--text));
    margin-top: 1px;
    transition: all 0s, color 0.1s;
  }
  
  .stoplight-categories a:hover {
    color: var(--text-hover);
  }
  
  .stoplight-categories a.active {
    padding: 5px 9px 4px 9px;
    border-radius: 4px;
    background: var(--blue);
    font-weight: 600;
    color: var(--white);
    transition: all 0;
  }
  
  .stoplight-categories a.active:hover {
    color: var(--white);
  }
  
  .stoplight-categories a .filter-link-count {
    display: none;
  }
  
  #openSearch {
    display: flex;
    align-items: center;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    font-size: .875rem;
    line-height: 1em;
    padding: 8px 10px 7px 11px;
  }
  
  #openSearch svg {
    margin-right: 9px;
    fill: var(--text);
    height: 12px;
    width: 12px;
    transition: all 0.1s;
  }
  
  #openSearch:hover {
    border-color: var(--blue);
  }
  
  #fullscreenSearch {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--off-white);
    z-index: 9;
    overflow-y: scroll;
  }
  
  #closeSearch {
    display: block;
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(0,0,0,0.05);
    border-radius: 100%;
    line-height: 0;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
  }
  
  #closeSearch:hover {
    background: rgba(0,0,0,0.03);
  }
  
  #closeSearch svg {
    height: 30px;
    width: 30px;
    fill: var(--medium-gray);
  }
  
  #fullscreenSearch .hs-search-field {
    display: flex;
    flex-flow: column nowrap;
    width: calc(100% - (2 * var(--padding)));
    padding: calc(2 * var(--padding)) 0;
    margin: 0 auto;
    max-width: 1000px;
  }
    
  #fullscreenSearch .hs-search-field__input {
    width: calc(100% - 60px);
    padding: 22px 30px 20px 30px;
    font-family: 'Inter',sans-serif;
    font-size: 30px;
    border-radius: 8px;
    color: var(--text);
    background: var(--off-white);
    border: 1px var(--border) solid;
  }
    
  #fullscreenSearch .hs-search-field__input::placeholder {
    color: var(--text) !important;
    opacity: 0.5 !important;
  }
    
  #fullscreenSearch .hs-search-field__input::-ms-placeholder {
    color: var(--text) !important;
    opacity: 0.5 !important;
  }
    
  #fullscreenSearch .hs-search-field__input::-moz-placeholder {
    color: var(--text) !important;
    opacity: 0.5 !important;
  }
  
  #fullscreenSearch .hs-search-field__input::-webkit-input-placeholder {
    color: var(--text) !important;
    opacity: 0.5 !important;
  }
  
  #fullscreenSearch .hs-search-field__input:focus-visible {
    background: var(--background);
    outline: none;
  }
  
  .hs-search-field__suggestions {
    margin-top: 30px;
  }
  
  a.stoplight-search-result.see-more {
    display: inline-block;
    border-radius: 4px;
    margin: 40px 0 0 0;
    padding: 16px 20px !important;
    background: var(--off-background);
    font-weight: 500;
    font-size: 1.125rem;
    line-height: 1;
  }
  
  a.stoplight-search-result:not(.see-more) {
    display: flex;
    padding: 30px 20px 30px 0;
    border-bottom: 1px var(--border) solid;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
  }
  
  a.stoplight-search-result .result-image-box {
    width: 25%;
    flex-shrink: 0;
  }
  
  a.stoplight-search-result .result-image-container {
    padding-top: 52.475%;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
  }
  
  a.stoplight-search-result img.result-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    transition: transform 0.2s;
  }
  
  a.stoplight-search-result:focus {
    outline: none;
  }
  
  a.stoplight-search-result:hover img.result-image,
  a.stoplight-search-result:focus img.result-image {
    transform: scale(1.05);
  }
  
  a.stoplight-search-result .result-text {
    opacity: 1;
    transition: opacity 0.2s;
  }
  
  a.stoplight-search-result:hover .result-text,
  a.stoplight-search-result:focus .result-text {
    opacity: 0.6;
  }
  
  a.stoplight-search-result .result-title {
    font-size: 22px;
    line-height: 1.35em;
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  a.stoplight-search-result .result-description {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 300;
    opacity: 0.8;
  }
  
  a.stoplight-search-result.see-more:hover,
  a.stoplight-search-result.see-more:focus {
    padding: 16px 20px !important;
    background: var(--blue);
    color: var(--white);
  }
  
  @media screen and (max-width:950px) {
    a.stoplight-search-result .result-image-box {
      width: 120px;
    }
    a.stoplight-search-result .result-image-container {
      padding-top: 100%;
    }
  }
  
  @media screen and (max-width:767px) {
    #fullscreenSearch .hs-search-field {
      padding: var(--padding) 0;
    }
    #fullscreenSearch .hs-search-field__input {
      margin-top: 70px;
      font-size: 20px;
    }
    .hs-search-field__suggestions {
      margin-top: 10px;
    }
    a.stoplight-search-result:not(.see-more) {
      padding: 20px 10px 20px 0;
      gap: 20px;
    }
    a.stoplight-search-result .result-title {
      font-size: 18px;
    }
  }
  
  @media screen and (max-width:550px) {
    a.stoplight-search-result:not(.see-more) {
      padding: 30px 0;
      flex-flow: column nowrap;
      align-items: flex-start;
    }
    a.stoplight-search-result .result-image-box {
      width: 100%;
    }
    a.stoplight-search-result .result-image-container {
      padding-top: 52.475%;
    }
  }
  
  /* DARK MODE */
  
  @media (prefers-color-scheme: dark) {
    #closeSearch {
      background: rgba(255,255,255,0.05);
    }
    #closeSearch:hover {
      background: rgba(255,255,255,0.03);
    }
    #closeSearch svg {
      fill: rgba(255,255,255,0.5);
    }
    #fullscreenSearch {
      background: var(--off-midnight);
    }
    #fullscreenSearch .hs-search-field__input {
      background: var(--off-midnight);
    }  
    a.stoplight-search-result.see-more {
      background: rgba(255,255,255,0.1);
    }
  }