@keyframes arrow-shoot {
  0% {
    background-position: center;
    opacity: 1;
  }
  44% {
    background-position: 200% center;
    opacity: 0;
  }
  45% {
    background-position: -200% center;
    opacity: 0;
  }
  100% {
    background-position: center;
    opacity: 1;
  }
}
.category-filter-container {
  margin: 0 0 3rem 0;
  padding-bottom: 2rem;
  border-bottom: 1px solid #C5964C;
}
@media (min-width: 1024px) {
  .category-filter-container {
    margin-bottom: 4rem;
  }
}
.category-filter-container .category-filter-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}
.category-filter-container .category-filter-main .filter-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.category-filter-container .category-filter-main .filter-left .filter-label {
  font-size: 1.6rem;
  color: #2c2c2c;
  font-weight: 500;
}
.category-filter-container .category-filter-main .filter-left .select-wrap {
  position: relative;
}
.category-filter-container .category-filter-main .filter-left .select-wrap select,
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-trigger {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  min-width: 140px;
  padding: 12px 45px 12px 20px;
  border: 1px solid #C5964C;
  border-radius: 4px;
  background-color: #f5f4f1;
  font-size: 1.4rem;
  color: #2D293F;
  cursor: pointer;
  transition: all 0.2s ease;
  height: 5rem;
  text-align: left;
  width: 100%;
}
.category-filter-container .category-filter-main .filter-left .select-wrap select.department-trigger,
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-trigger.department-trigger {
  min-width: 210px;
}
.category-filter-container .category-filter-main .filter-left .select-wrap select:focus,
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-trigger:focus {
  outline: none;
  border-color: var(--color-text-main);
  background-color: #fff;
}
.category-filter-container .category-filter-main .filter-left .select-wrap::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.333' d='m.667.667 5 5 5-5'/%3E%3C/svg%3E") center center no-repeat;
  border-radius: 50%;
  pointer-events: none;
}
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-list {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  width: 100%;
  background-color: #f5f4f1;
  border-radius: 4px;
  padding: 0.8rem 0;
  margin: 0;
  list-style: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  z-index: 10;
  overflow: hidden;
}
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-list li {
  margin: 0 0 4px 0;
  padding: 8px 20px;
  font-size: 1.5rem;
  color: #2D293F;
  cursor: pointer;
  transition: background-color 0.25s ease-in-out;
}
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-list li.active-item, .category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-list li:hover {
  background-color: rgba(197, 150, 76, 0.15);
}
.category-filter-container .category-filter-main .filter-left .select-wrap .dropdown-list li:last-child {
  margin: 0;
}
.category-filter-container .category-filter-main .filter-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap {
  position: relative;
  width: 100%;
  max-width: 350px;
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap span {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap span svg {
  width: 18px;
  height: 18px;
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap .lmn-search-input {
  width: 100%;
  padding: 12px 16px 12px 55px;
  border: 1px solid #C5964C;
  border-radius: 4px;
  background-color: #f5f4f1;
  font-size: 1.4rem;
  color: #2D293F;
  transition: all 0.2s ease;
  height: 5rem;
  cursor: text;
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap .lmn-search-input:focus {
  outline: none;
  border-color: var(--color-text-main);
  background-color: #fff;
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap .lmn-search-input::-moz-placeholder {
  color: var(--color-text-muted);
}
.category-filter-container .category-filter-main .filter-right .lmn-search-wrap .lmn-search-input::placeholder {
  color: var(--color-text-muted);
}
.category-filter-container .reset-wrap .btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2D293F;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  font-weight: 500;
}
.category-filter-container .reset-wrap .btn-reset:hover {
  color: #C5964C;
}
@media (max-width: 850px) {
  .category-filter-container .category-filter-main {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-filter-container .category-filter-main .filter-left,
  .category-filter-container .category-filter-main .filter-right,
  .category-filter-container .category-filter-main .filter-right .lmn-search-wrap {
    width: 100%;
    max-width: 100%;
  }
  .category-filter-container .category-filter-main .filter-left .filter-label,
  .category-filter-container .category-filter-main .filter-left .reset-wrap,
  .category-filter-container .category-filter-main .filter-left .select-wrap {
    width: 100%;
  }
}
@media (max-width: 850px) and (min-width: 450px) {
  .category-filter-container .filter-left .select-wrap {
    width: calc(50% - 0.8rem) !important;
  }
}

.team {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 4rem;
  align-items: start;
}
@media (min-width: 650px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
  }
}
.team__member {
  cursor: pointer;
  transition: border 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.team__member .bio-content {
  display: none;
}
.team__member:hover {
  border-bottom-color: #C12C2D;
}
.team__member:hover .profile h3 {
  font-weight: 300;
}
.team__member:hover .profile .meta {
  color: #2D293F;
}
.team .profile img {
  width: 100%;
  height: auto;
  aspect-ratio: 32/25;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1rem;
  border-radius: 4px;
}
.team .profile .title {
  position: relative;
  border-left: 1px solid #C12C2D;
  padding-left: 2rem;
}
.team .profile h3 {
  font-size: var(--wp--preset--font-size--font-28);
  line-height: 1.25;
  margin: 0 0 0.4ch 0;
  transition: font-weight 0.25s ease-in-out;
}
.team .profile .meta {
  font-size: var(--wp--preset--font-size--font-16);
  line-height: 1.45;
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.team .profile .li {
  display: block;
  position: absolute;
  top: 6px;
  right: 0;
}
.team .profile .li svg {
  width: 26px;
  height: 26px;
}
html.modal-opened {
  overflow: hidden;
}

#team__modal {
  background: linear-gradient(114deg, rgba(0, 0, 0, 0.2) 5%, rgba(0, 0, 0, 0.7) 95%);
  opacity: 0;
  visibility: hidden;
  inset: 0;
  position: fixed;
  z-index: 9999;
  transition: 0.5s ease 0.2s;
  pointer-events: all;
}
#team__modal .modal-inner {
  max-width: 500px;
  height: 100%;
  background: white;
  position: absolute;
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  pointer-events: all;
  z-index: 200;
}
#team__modal .modal-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
}
#team__modal .modal-content img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-height: 700px) {
  #team__modal .modal-content img {
    max-height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
    background: #dad9d2;
  }
}
#team__modal .modal-content #title {
  width: 100%;
  padding: 3rem 3.5rem 2rem 3.5rem;
}
#team__modal .modal-content #title h3 {
  font-size: var(--wp--preset--font-size--font-26);
  margin: 0 0 0.15ch 0;
  display: flex;
  align-items: baseline;
  gap: 2rem;
}
#team__modal .modal-content #title p {
  font-size: var(--wp--preset--font-size--font-16);
  color: #2D293F;
}
#team__modal .modal-content #bio {
  width: 100%;
  height: 100%;
  padding: 0 3.5rem 1rem 3.5rem;
  position: relative;
  overflow: auto;
}
@media (max-height: 700px) {
  #team__modal .modal-content #bio {
    height: calc(100% - 610px);
  }
}
#team__modal .modal-content #bio p {
  font-size: var(--wp--preset--font-size--font-16);
}
#team__modal .modal-content #bio::-webkit-scrollbar {
  width: 8px;
  border-radius: 8px;
}
#team__modal .modal-content #bio::-webkit-scrollbar-thumb {
  background: rgba(197, 150, 76, 0.55);
  border-radius: 8px;
  border: none;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  opacity: 0;
  border-radius: 8px;
}
#team__modal .modal-content #bio::-webkit-scrollbar-track {
  background: rgba(193, 44, 45, 0.25);
  border-radius: 8px;
}
#team__modal .modal-content #bio:hover::-webkit-scrollbar-thumb {
  opacity: 1;
}
#team__modal .modal-content .li {
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
  align-items: center;
  font-size: var(--wp--preset--font-size--font-16);
  font-weight: 300;
  text-transform: uppercase;
  margin-top: 3.5rem;
  color: #fff;
}
#team__modal .modal-content .li svg {
  width: 22px;
  height: 22px;
}
#team__modal .modal-content .li em {
  font-style: normal;
}
#team__modal.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0;
}
#team__modal.active .modal-inner {
  transform: translateX(0);
  transition-delay: 0.2s;
  opacity: 1;
}
#team__modal .modal-controls {
  height: 44px;
  position: absolute;
  bottom: 2rem;
  left: 3.5rem;
  right: 3.5rem;
  z-index: 9;
}
#team__modal #close {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 37px;
  height: 37px;
  margin: 0;
  background: #C5964C;
  line-height: 0;
  -webkit-appearance: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  transition: opacity 0.25s ease-in-out;
}
#team__modal #close svg {
  width: 18px;
  height: auto;
}
#team__modal #close:hover svg {
  animation: arrow-shoot-svg 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#team__modal .swiper-button-prev,
#team__modal .swiper-button-next {
  position: inherit;
  width: 37px;
  height: 37px;
  margin: 0;
  background: #C5964C;
  color: #fff;
  border-radius: 2px;
}
#team__modal .swiper-button-prev.disabled,
#team__modal .swiper-button-next.disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
#team__modal .swiper-button-prev:after,
#team__modal .swiper-button-next:after {
  display: none;
}
#team__modal .swiper-button-prev svg,
#team__modal .swiper-button-next svg {
  width: auto;
  height: auto;
}
#team__modal .swiper-button-prev:hover svg,
#team__modal .swiper-button-next:hover svg {
  animation: arrow-shoot-svg 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#team__modal .swiper-button-next {
  top: 0;
  left: 54px;
}
#team__modal .swiper-button-prev {
  top: 0;
  left: 0;
}

html.menu-opened #team__modal {
  pointer-events: all;
}

.is-hidden {
  display: none;
}/*# sourceMappingURL=block-team-listing.css.map */