/*!***************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/speakers-v2/style.scss ***!
  \***************************************************************************************************************************************************************************************************************************************************/
.js-hidden {
  display: none !important;
}

.speaker-block {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 20px;
}

.speaker-block .header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 20px 40px;
  gap: 24px;
}

.speaker-block .block-title {
  text-align: center;
}

.speaker-block .block-subtitle {
  margin: unset;
  text-align: center;
}

.year-dropdown-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding-bottom: 40px;
}

.year-dropdown-copy {
  font-weight: 700;
  font-size: 18px;
  line-height: 32px;
  color: #121212;
}

.speaker-year-select {
  padding: 8px 16px 8px 12px;
  font-size: 18px;
  border: unset;
  border-radius: var(--global-border-radius);
  border-right: 16px solid transparent;
  outline: 1px solid #C0C0C0;
}

.tab-navigation {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  /* Prevent wrapping and allow horizontal scroll */
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid #c0c0c0;
}

.tab-navigation .taxonomy-tab {
  padding: 0.5rem 1rem 1rem;
  font-size: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  background: transparent;
  color: #121212;
  white-space: nowrap; /* keep text on one line */
  flex: 0 0 auto; /* size by content, prevent flex growth */
  min-width: -moz-max-content;
  min-width: max-content; /* ensure intrinsic width fits content */
  display: inline-flex; /* stable inline sizing */
}

.tab-navigation .taxonomy-tab.active {
  color: #121212;
  font-weight: bold;
  border-bottom: 3px solid #121212;
}

/* Optional: subtle gradient edges to indicate scrollability */
.tab-navigation::after {
  content: "";
  display: block;
  position: sticky;
  right: 0;
  width: 24px;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  pointer-events: none;
}

/* SEARCH BAR */
.speaker-search-wrapper {
  width: 100%;
  max-width: 1240px;
  text-align: left;
  margin-top: 20px;
  margin-bottom: 20px;
}

.speaker-search {
  position: relative;
  width: 100%;
}

.speaker-search:before {
  position: absolute;
  content: "";
  left: 10px;
  top: 50%; /* Move to the vertical center */
  transform: translateY(-50%); /* Offset by half the element's height */
  width: 24px;
  height: 24px; /* Match the icon's dimensions */
  background: url("data:image/svg+xml,%3Csvg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\"%3E%3Cpath d=\"M19.6 21L13.3 14.7C12.8 15.1 12.225 15.4167 11.575 15.65C10.925 15.8833 10.2333 16 9.5 16C7.68333 16 6.14583 15.3708 4.8875 14.1125C3.62917 12.8542 3 11.3167 3 9.5C3 7.68333 3.62917 6.14583 4.8875 4.8875C6.14583 3.62917 7.68333 3 9.5 3C11.3167 3 12.8542 3.62917 14.1125 4.8875C15.3708 6.14583 16 7.68333 16 9.5C16 10.2333 15.8833 10.925 15.65 11.575C15.4167 12.225 15.1 12.8 14.7 13.3L21 19.6L19.6 21ZM9.5 14C10.75 14 11.8125 13.5625 12.6875 12.6875C13.5625 11.8125 14 10.75 14 9.5C14 8.25 13.5625 7.1875 12.6875 6.3125C11.8125 5.4375 10.75 5 9.5 5C8.25 5 7.1875 5.4375 6.3125 6.3125C5.4375 7.1875 5 8.25 5 9.5C5 10.75 5.4375 11.8125 6.3125 12.6875C7.1875 13.5625 8.25 14 9.5 14Z\" fill=\"%23333333\"%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

.speaker-search input {
  flex: 1;
  padding: 15px 10px 16px 40px;
  border: 1px solid #E6E6E6;
  border-radius: var(--global-border-radius);
  font-size: 1rem;
  width: calc(100% - 52px);
  max-height: 48px;
}

.group-wrapper {
  margin-bottom: 2rem;
}

.group-title {
  padding-bottom: 40px;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.speaker-embargo-notice {
  text-align: center;
  font-size: var(--p-size);
}

.speaker-list {
  display: flex;
  gap: 2rem;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.speaker-card, .no-results-speaker-item {
  border: 1px solid #c0c0c0;
  border-radius: var(--global-border-radius);
  background: #fff;
  width: 100%;
  flex: 0 1 calc(25% - 2rem);
  min-width: 280px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.3s;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.no-results-speaker-item {
  cursor: default !important;
}

.speaker-card:hover {
  transform: scale(1.03);
}

.speaker-image-wrapper {
  aspect-ratio: 1/1;
  width: 100%;
  overflow: hidden;
  position: relative;
  background-size: contain;
  background-position: center;
  border-radius: var(--global-border-radius) var(--global-border-radius) 0 0;
}

.speaker-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: var(--global-border-radius) var(--global-border-radius) 0 0;
}

.speaker-image-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 64px;
  width: 64px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.speaker-image-overlay.rank-box {
  background-color: #121212;
  color: #FFF;
  font-family: var(--primary-font);
}

/* REMOVE RANK BOX FROM NEXT SPEAKERS PRE 2025 */
.speaker-year-group[data-year-id="9"] .group-wrapper[data-group-id="14"] .rank-box,
.speaker-year-group[data-year-id="10"] .group-wrapper[data-group-id="14"] .rank-box {
  display: none;
}

.speaker-image-overlay.company-logo {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.3);
  padding: 2px;
}

.speaker-image-overlay.company-logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

.speaker-info {
  padding: 16px 16px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}

/* Speaker Name */
.speaker-info-name {
  font-weight: 700;
  font-size: 22px;
  line-height: 32px;
}

/* Speaker Job Title and Company */
.speaker-info-job {
  font-size: 16px;
  line-height: 24px;
}

.speaker-info-company {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}

/* CTA */
.speaker-block-cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  margin: 0 auto;
}

.speaker-block-button {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s;
}

.speaker-block-button:hover {
  transform: scale(1.03);
}

.speaker-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 199;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s ease-in-out;
}

.speaker-modal:not(.hidden) {
  visibility: visible;
  opacity: 1;
}

/* Modal Content */
.speaker-modal-content {
  position: relative;
  background: #fff;
  border-radius: var(--global-border-radius);
  width: 100%;
  max-height: 80vh;
  max-width: 792px;
  z-index: 200;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 20px;
}

/* Modal Close Button */
.speaker-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

/* Top Wrapper */
.speaker-modal-header {
  background-color: #F5F5F5;
  width: 100%;
  border-radius: var(--global-border-radius) var(--global-border-radius) 0 0;
  /* TEST FULL TAKE-OVER BG IMAGE */
  background-repeat: no-repeat;
  background-size: cover;
}

.speaker-modal-header-content-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding: 24px 54px 0;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
  z-index: 201;
  color: var(--modal-header-text-color, #FFF);
}

/* MOBILE HEADER */
.mobile-header {
  display: none;
}

/* Modal Image */
.speaker-modal-image-wrapper {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 240px;
  overflow: hidden;
  position: relative;
}

.speaker-modal-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.speaker-modal-info-wrapper {
  padding-bottom: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 8px;
}

/* Modal Text */
.speaker-modal-respective-award {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  font-family: var(--primary-font);
}

.speaker-modal-name {
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
}

.speaker-modal-job, .speaker-modal-company, .speaker-modal-description {
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.speaker-modal-company {
  font-weight: 700;
}

.speaker-social-email {
  color: #121212;
  font-size: 12px;
}

.speaker-socials-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 4px 0 0;
  gap: 12px;
}

.speaker-socials-wrapper a {
  display: inline-block;
}

.speaker-socials-wrapper a img {
  width: 32px;
  height: 32px;
}

/* Modal Body */
.speaker-modal-body {
  padding: 24px 54px 56px;
  max-height: 450px;
  width: 100%;
  box-sizing: border-box;
  overflow-y: scroll;
  -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 5%, #121212 10%, #121212 85%, rgba(0, 0, 0, 0) 98%);
          mask-image: linear-gradient(rgba(0, 0, 0, 0) 5%, #121212 10%, #121212 85%, rgba(0, 0, 0, 0) 98%);
}

/* modal body section header */
.speaker-modal-section-header {
  font-weight: bold;
  padding-top: 18px;
  font-size: 20px;
  line-height: 28px;
}

/* Award Editorial Link in Description */
.speaker-modal-award-editorial-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0 10px;
}

.speaker-modal-award-editorial-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #121212;
  text-transform: uppercase;
  text-decoration: none;
  color: #121212;
  padding: 12px 20px;
  font-size: 14px;
  gap: 8px;
  border-radius: var(--global-border-radius);
}

/* Modal Other Awards */
.speaker-modal-previous-awards-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.speaker-modal-awards-list-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.speaker-previous-award {
  font-size: 16px;
  line-height: 24px;
  font-family: var(--primary-font);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.modal-rank-box {
  border: 1px solid #C0C0C0;
  height: 32px;
  width: 32px;
  background-color: #121212;
  border-radius: var(--global-border-radius);
  color: #FFFFFF;
  font-size: 18px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* Modal Sessions */
.speaker-modal-sessions-list-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding-top: 12px;
  gap: 24px;
}

.speaker-modal-session-wrapper {
  padding: 8px 24px;
  border-left: 1px solid #121212;
  width: calc(100% - 34px);
}

.speaker-modal-session-wrapper:last-child {
  border-bottom: none !important;
}

.speaker-modal-session-details-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-bottom: 16px;
}

.speaker-modal-session-detail-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.speaker-modal-session-detail-time {
  text-transform: uppercase;
}

.speaker-modal-session-title {
  font-size: 20px;
  line-height: 28px;
}

.speaker-modal-session-title a {
  color: #121212;
  text-decoration: none;
  font-weight: 700;
  text-decoration: underline;
}

/* MODAL FOOTER */
.speaker-modal-footer {
  z-index: 99999;
  background-color: #FFFFFF;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-modal-footer button {
  background-color: #121212;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 15px 38px;
  text-align: center;
  border: 1px solid #121212;
  border-radius: var(--global-border-radius);
  font-weight: 700;
}

/* Scroll prompt arrow */
.speaker-scroll-prompt-arrow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 16px;
  transition: opacity 0.4s ease;
  opacity: 0.6;
}

.speaker-scroll-prompt-arrow.at-bottom {
  opacity: 0;
}

.speaker-scroll-prompt-arrow svg {
  transform: rotate(90deg);
}

.speaker-no-results {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media only screen and (max-width: 769px) {
  /* MOBILE HEADER */
  .mobile-header {
    display: flex;
  }
  .desktop-header {
    display: none;
  }
  .speaker-modal-header-content-wrapper {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }
  .speaker-modal-header-inner-content-wrapper {
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    justify-content: flex-end;
    gap: 24px;
    z-index: 201;
  }
  .speaker-modal-session-details-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media only screen and (max-width: 580px) {
  /* Speaker grid */
  .speaker-card {
    flex-direction: row;
    flex: 1;
    max-width: 450px;
    align-items: flex-start;
  }
  .speaker-image-wrapper {
    flex: 1;
    border-radius: var(--global-border-radius) 0 0 var(--global-border-radius);
  }
  .speaker-image-wrapper img {
    border-radius: var(--global-border-radius) 0 0 var(--global-border-radius);
  }
  .speaker-info {
    flex: 1.5;
    padding: 16px 16px 4px;
  }
  .speaker-info-job {
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .speaker-image-overlay {
    height: 36px;
    width: 36px;
    font-size: 24px;
  }
  /* Speaker Modal */
  .speaker-modal-close svg {
    width: 24px;
    height: 24px;
  }
  .speaker-modal-close svg path {
    fill: var(--modal-header-text-color, #FFF);
  }
  .speaker-modal-header-content-wrapper {
    padding: 24px 24px 0;
    margin-bottom: unset;
  }
  .speaker-modal-image-wrapper {
    width: 40%;
  }
  .speaker-modal-info-wrapper {
    padding-top: 8px;
  }
  .speaker-modal-body {
    padding: 24px 24px 56px;
  }
  .speaker-modal-job, .speaker-modal-company, .speaker-modal-description {
    font-size: 14px;
    line-height: 22px;
    text-align: left;
  }
  .speaker-previous-award {
    align-items: flex-start;
  }
  .modal-rank-box {
    margin-top: 3px;
  }
}
@media only screen and (max-width: 500px) {
  /* Modal */
  .speaker-modal-header-content-wrapper {
    padding: 34px 24px 0;
  }
  .speaker-modal-image-wrapper {
    min-width: 120px;
  }
  .speaker-modal-info-wrapper {
    padding-top: 0px;
  }
  .speaker-modal-body {
    padding: 5px 24px 56px;
    -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0) 2%, #121212 5%, #121212 85%, rgba(0, 0, 0, 0) 98%);
            mask-image: linear-gradient(rgba(0, 0, 0, 0) 2%, #121212 5%, #121212 85%, rgba(0, 0, 0, 0) 98%);
  }
}

/*# sourceMappingURL=style-index.css.map*/