.resource-filters {
  flex-basis: 270px;
}
@media (max-width: 1100px) {
  .resource-filters {
    flex-basis: 200px;
  }
}

.scb-res-columns {
  display: flex;
  gap: clamp(2rem, 0.571rem + 3.81vw, 4rem);
}
@media (max-width: 700px) {
  .scb-res-columns {
    flex-wrap: wrap;
  }
  .scb-res-columns .scb-res-column, .scb-res-columns .resource-filters {
    flex-basis: 100%;
  }
}

.resources-feed {
  flex: 1;
}

/* Dropdown Menu */
.resource-drop-filters {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.drop-menu {
  background: #fff;
  border: 2px solid var(--scb-border-color);
  border-radius: 10px;
  display: inline-flex;
  flex: 0 0 240px;
  padding: 0.75rem;
  position: relative;
  transition: all 0.4s ease;
  z-index: 59;
}
.drop-menu.active {
  z-index: 60;
}
.drop-menu:not(.active):focus-within {
  border-color: var(--scb-accent-color);
}

ul.drop-list {
  background: #fff;
  border: 2px solid var(--scb-border-color);
  border-radius: 0 0 10px 10px;
  border-top: 0;
  bottom: 0;
  display: none;
  left: -2px;
  margin: auto;
  max-height: 340px;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  right: -2px;
  transform: translateY(calc(100% - 6px));
}
ul.drop-list li:before, ul.drop-list li a:after {
  content: none;
}
ul.drop-list li {
  display: block;
  font-size: 1rem;
  padding: 0;
  text-align: left;
}
ul.drop-list a, ul.drop-list button {
  background: #fff;
  border: 0 !important;
  color: var(--scb-text-color);
  display: block;
  font-weight: 700;
  line-height: 1.1em;
  padding: 20px;
  text-align: left;
  text-decoration: none !important;
  transition: all 0.4s ease;
  width: 100%;
}
ul.drop-list a:hover, ul.drop-list a:focus, ul.drop-list button:hover, ul.drop-list button:focus {
  background: var(--scb-border-color);
  color: #fff;
  text-decoration: none;
}

.drop-activator {
  align-items: center;
  background: none;
  border: 0;
  border-radius: 0;
  color: var(--scb-text-color);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: space-between;
  line-height: 1em;
  margin: 0;
  padding: 0;
  transition: all 0.4s ease;
  width: 100%;
}
.drop-activator:focus {
  outline: 0;
}

span.drop-activator-text, .filter-toggle span {
  display: inline-block;
  padding-right: 2rem;
}

i.chevron-down {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  display: inline-block;
  height: 0.5rem;
  transform: rotate(45deg);
  transform-origin: 75% 50%;
  width: 0.5rem;
}

.drop-activator i {
  color: var(--scb-accent-color);
  transition: all 0.4s ease;
}

.drop-menu.active .drop-activator i, .resource-side-filter.active .filter-toggle i {
  transform: rotate(-135deg);
}

button.drop-clear, button.search-clear {
  align-items: center;
  background: none;
  border: 0;
  bottom: 0;
  color: var(--scb-accent-color);
  cursor: pointer;
  display: inline-flex;
  justify-content: flex-end;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 28px;
  top: 0;
  transition: all 0.4s ease;
  visibility: hidden;
}
.has-selection + button.drop-clear, .has-selection + button.search-clear {
  opacity: 1;
  visibility: visible;
}
button.drop-clear span.clear-help, button.search-clear span.clear-help {
  display: none;
}
button.drop-clear i.clear-x, button.search-clear i.clear-x {
  height: 1rem;
  position: relative;
  width: 1rem;
}
button.drop-clear i.clear-x:before, button.drop-clear i.clear-x:after, button.search-clear i.clear-x:before, button.search-clear i.clear-x:after {
  background: currentColor;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  transform: rotate(45deg);
}
button.drop-clear i.clear-x:after, button.search-clear i.clear-x:after {
  transform: rotate(-45deg);
}
button.drop-clear:hover, button.drop-clear:focus, button.search-clear:hover, button.search-clear:focus {
  color: var(--scb-accent-color);
}

/* Search */
.resource-filters-search {
  background: #fff;
  border: 2px solid var(--scb-border-color);
  border-radius: 10px;
  display: flex;
  flex: 0 0 min(30%, 372px);
  margin: 0 0 0 auto;
  padding: 0.5rem 1rem;
  position: relative;
}
@media (max-width: 700px) {
  .resource-filters-search {
    margin: 0;
  }
}
.resource-filters-search .scb-searchform {
  align-items: center;
  display: flex;
  width: 100%;
}
.resource-filters-search .scb-searchform label svg path {
  fill: var(--scb-accent-color);
}
.resource-filters-search .scb-searchform label {
  align-items: center;
  display: inline-flex;
  margin-right: 0.5rem;
}
.resource-filters-search .scb-searchform input {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: var(--scb-text-color);
  display: inline-block;
  height: auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1em;
  margin: 0;
  padding: 0 3px;
  width: 100%;
}
.resource-filters-search .scb-searchform input::placeholder {
  color: var(--scb-text-color);
}
.resource-filters-search .scb-searchform input:focus {
  border: 0;
  outline: 0;
}
.resource-filters-search .scb-searchform .search-input {
  flex: 1;
}
.resource-filters-search button.search-send {
  background: none;
  border: 0;
  bottom: 0;
  color: var(--scb-accent-color);
  cursor: pointer;
  height: 20px;
  margin: auto;
  opacity: 0.2;
  padding: 0;
  position: absolute;
  right: 0.75rem;
  top: 0;
  transition: all 0.4s ease;
  width: 16px;
}
.resource-filters-search button.search-send:before, .resource-filters-search button.search-send:after {
  bottom: 0;
  content: "";
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
}
.resource-filters-search button.search-send:before {
  background: currentColor;
  height: 2px;
  width: 100%;
}
.resource-filters-search button.search-send:after {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  height: 8px;
  transform: rotate(45deg);
  width: 8px;
}
.resource-filters-search button.search-send:hover, .resource-filters-search button.search-send:focus {
  color: var(--scb-accent-color);
}
.resource-filters-search .scb-searchform:focus-within button.search-send {
  opacity: 1;
}

button.search-clear {
  color: var(--scb-text-color);
  right: 1.7rem;
}

.has-search button.search-clear {
  opacity: 1;
  visibility: visible;
}

.resources-bottom {
  padding-top: 2rem;
  text-align: center;
}

.load-more {
  position: relative;
}

.resource-items-none, .load-more, .loader-anim, .load-more button {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.loader-anim {
  bottom: 0;
  display: flex;
  justify-content: space-between;
  height: 1rem;
  left: 0;
  max-width: 4rem;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}

.load-dot {
  animation: loading 0.8s cubic-bezier(0.55, -0.77, 0.42, 1.79) 0s infinite normal both paused;
  background: var(--scb-primary-color);
  border-radius: 50%;
  display: block;
  height: 1rem;
  width: 1rem;
}
.load-dot:nth-child(2) {
  animation-name: loading-2;
}
.load-dot:nth-child(3) {
  animation-name: loading-3;
}

.resource-items-none.active, .load-more.active, .load-more.active button, .load-more.loading, .load-more.loading .loader-anim {
  opacity: 1;
  visibility: visible;
}

.load-more.loading button {
  opacity: 0;
  transition: all 0.1s ease;
}

.load-more.loading .loader-anim .load-dot {
  animation-play-state: running;
}

@keyframes loading {
  0% {
    transform: translateY(0);
  }
  4% {
    transform: translateY(22%);
  }
  25% {
    transform: translateY(-80%);
  }
  50% {
    transform: translateY(0);
  }
}
@keyframes loading-2 {
  25% {
    transform: translateY(0);
  }
  29% {
    transform: translateY(22%);
  }
  50% {
    transform: translateY(-80%);
  }
  75% {
    transform: translateY(0);
  }
}
@keyframes loading-3 {
  50% {
    transform: translateY(0);
  }
  54% {
    transform: translateY(22%);
  }
  75% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(0);
  }
}
.scorrblocks-featured {
  background: var(--scb-primary-color);
  color: #fff;
  padding: clamp(2rem, 0.571rem + 3.81vw, 4rem) 20px;
}

.scorrblocks-featured-inside {
  margin: 0 auto;
  max-width: 1360px;
  width: 100%;
}

.featured-resource {
  align-items: center;
  display: flex;
  gap: clamp(2rem, 0.571rem + 3.81vw, 4rem);
}

.featured-resource-img {
  border-radius: 50%;
  height: 273px;
  flex: 0 0 273px;
  overflow: hidden;
  width: 273px;
}
.featured-resource-img img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.featured-resource-content {
  flex: 1;
}
.featured-resource-content h2 {
  color: var(--scb-primary-color);
  font-size: clamp(1.5rem, 0.571rem + 2.476vw, 2.8rem);
  margin-bottom: 16px;
}

.featured-type {
  align-items: baseline;
  display: flex;
  gap: 1rem;
}

.featured-type-label {
  color: var(--scb-primary-color);
  font-family: Syne, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.featured-type-category {
  background: var(--scb-background-color);
  border-radius: 99px;
  color: var(--scb-border-color);
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
  padding: 0.75em 1.25em;
  text-transform: uppercase;
}

a.sc-btn {
  background: var(--scb-primary-color);
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0.07em;
  line-height: 1em;
  padding: 1em 1.25em;
}
a.sc-btn:hover, a.sc-btn:focus {
  background: #f5844e;
  color: #fff;
}

.sc-resources-intro {
  background: #fff;
  padding: clamp(2rem, 0.571rem + 3.81vw, 4rem) 20px;
}

.sc-resources-intro-content {
  margin: 0 auto;
  max-width: 1360px;
  width: 100%;
}
.sc-resources-intro-content p {
  color: #2E2E2D;
  font-size: 20px;
  line-height: 1.5em;
}
.sc-resources-intro-content p.sc-pre-head {
  color: #8E8E8E;
  font-size: 17px;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.sc-resources-intro-content h1 {
  font-size: clamp(2rem, 1.196rem + 2.143vw, 3.125rem);
  line-height: 1.3em;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  .resource-filters {
    align-items: baseline;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .resource-filters .drop-menu, .resource-filters .resource-filters-search {
    flex: 1;
    width: 100%;
  }
}