.orx-experts {
  --orx-section-bg: #efefef;
  --orx-content-gap: 56px;
  --orx-text-column-width: 36%;
  --orx-photo-width: 260px;
  --orx-photo-height: 480px;
  --orx-photo-gap: 18px;
  --orx-arrow-color: #121212;
  --orx-arrow-bg: transparent;
  --orx-arrow-box-size: 48px;
  --orx-arrow-icon-size: 18px;
  background: var(--orx-section-bg);
  width: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
.orx-experts * { box-sizing: border-box; }
.orx-experts__intro { max-width: 760px; margin-bottom: 24px; }
.orx-experts__title { margin: 0 0 12px; }
.orx-experts__lead p:last-child,
.orx-experts__description p:last-child { margin-bottom: 0; }
.orx-experts__nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 22px;
}
.orx-experts__arrow {
  width: var(--orx-arrow-box-size);
  height: var(--orx-arrow-box-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,.14);
  background: var(--orx-arrow-bg);
  color: var(--orx-arrow-color);
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.orx-experts__arrow:hover { transform: translateY(-1px); }
.orx-experts__arrow svg {
  width: var(--orx-arrow-icon-size);
  height: var(--orx-arrow-icon-size);
  display: block;
}
.orx-experts__desktop {
  display: grid;
  grid-template-columns: minmax(260px, var(--orx-text-column-width)) minmax(0, 1fr);
  gap: var(--orx-content-gap);
  align-items: center;
}
.orx-experts__copy { min-width: 0; }
.orx-experts__panel { display: none; }
.orx-experts__panel.is-active { display: block; }
.orx-experts__name { margin: 0 0 8px; }
.orx-experts__meta { margin-bottom: 18px; }
.orx-experts__media-viewport {
  width: min(100%, calc((var(--orx-photo-width) * 2.5) + (var(--orx-photo-gap) * 2)));
  overflow: hidden;
  margin-left: auto;
}
.orx-experts__media {
  display: flex;
  align-items: stretch;
  gap: var(--orx-photo-gap);
  will-change: transform;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.orx-experts__thumb {
  flex: 0 0 var(--orx-photo-width);
  width: var(--orx-photo-width);
  height: var(--orx-photo-height);
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}
.orx-experts__thumb img,
.orx-experts__mobile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.orx-experts__thumb img {
  filter: grayscale(1);
  transition: transform .45s ease, filter .35s ease, opacity .35s ease;
  opacity: .9;
}
.orx-experts__thumb.is-active img,
.orx-experts__thumb[aria-selected="true"] img {
  filter: grayscale(0);
  opacity: 1;
}
.orx-experts__thumb:hover img { transform: scale(1.02); }
.orx-experts__mobile { display: none; }
.orx-experts__mobile-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 82%);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.orx-experts__mobile-card { scroll-snap-align: start; }
.orx-experts__mobile-image-wrap {
  height: var(--orx-photo-height);
  overflow: hidden;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .orx-experts__desktop {
    grid-template-columns: 1fr;
  }
  .orx-experts__media-viewport {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .orx-experts__nav,
  .orx-experts__desktop { display: none; }
  .orx-experts__mobile { display: block; }
  .orx-experts__mobile-image-wrap { height: min(70vw, var(--orx-photo-height)); }
}
