/* .page-template-page-knowledge-hub div#page-content {
    margin-top: 63px !important;
} */
.page-template-template-detail-video #page-content {
    overflow: hidden;
}


/* Hero */
.kh_detail-video-hero {
    max-width: calc(1240px + 200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 100px;
    padding-top: 36px;
    margin-bottom: 0px;
}
.kh_detail-video-hero .hero-top {
  grid-column: span 12;
  align-items: center;
  align-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0px;
  border-bottom: 1px solid var(--Sabre-Blue, #00AFFE);
    display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px 20px; /* adjust gutter */
  padding-bottom: 24px;
}
.kh_detail-video-hero .hero-back {
  grid-column: span 12;
  /* strip native arrow */
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
  /* your custom SVG (or emoji) as the arrow */
  background: url('/wp-content/themes/sabre/assets/images/back-arrow.svg') no-repeat;
  /* tweak these values to “move” the arrow */
  background-position: left 0px center;
  background-size: auto;
  padding-left: 12px;
  color: var(--Sabre-Purple, #4B08A1);
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: -0.154px;
  text-decoration: none;
}
.kh_detail-video-hero .heading-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    margin-top: 13px;
}
.kh_detail-video-hero .heading-line {
    width: 4px;
    height: 20px;
    background: var(--Sabre-Blue, #00AFFE);
}
.kh_detail-video-hero .heading {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.264px;
    margin: 0;
}
@media (max-width: 850px) {
    .kh_detail-video-hero {
        padding: 0px 25px;
        padding-top: 22px;
    }
    .kh_detail-video-hero .hero-top {
        padding-bottom: 19px;
    }
    .kh_detail-video-hero .heading-wrapper {
        margin-top: 9px;
    }
    .kh_detail-video-hero .heading {
        color: var(--Sabre-Purple, #4B08A1);
        font-family: Poppins;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%; /* 27px */
        letter-spacing: -0.198px;
    }
}

.kh_detail-video-columns {
    max-width: calc(1240px + 200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px 20px;
    width: 100%;
    padding: 0px 100px;
    padding-top: 36px;
    margin-bottom: 0px;
}
.kh_detail-video-columns .video-container {
    grid-column: span 7;
}
.kh_detail-video-columns .video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}
.kh_detail-video-columns .content {
    grid-column: 9 / span 4;
    max-width: 360px;
}
.kh_detail-video-columns .cat-tags {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
}
.kh_detail-video-columns .cat-tag {
    display: inline-flex;
    height: 21px;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid var(--Sabre-Purple-2, #F0FAFF);
    background: var(--Sabre-Purple-2, #F0FAFF);
    color: var(--Sabre-Purple, #4B08A1);
    text-align: center;
    font-family: Poppins;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.11px;
    text-decoration: none;
}
.kh_detail-video-columns h2 {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 28px */
    letter-spacing: -0.22px;
    margin: 0;
    margin-top: 25px;
}

 .kh_detail-video-columns .read-more p  {
            color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    margin: 0;
    }
.kh_detail-video-columns .read-more {
  padding-top: 14px;        /* top gap above first paragraph */
}

.kh_detail-video-columns .read-more__intro {
  margin: 0;                /* remove default intro margins */
}

.kh_detail-video-columns .read-more__extra {
  margin: 0;                /* remove default extra paragraph margins */
}

/* wrapper for extra content */
.kh_detail-video-columns .read-more__extra-wrap {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition:
    max-height   0.4s ease-out,
    padding-top  0.4s ease-out,
    opacity      0.3s ease-out;
}

/* expanded state: slide down + fade in + spacing */
.kh_detail-video-columns .read-more.expanded .read-more__extra-wrap {
  max-height: 1000px;       /* big enough for your content */
  padding-top: 20px;        /* gap between intro and extra */
  opacity: 1;
}

/* toggle trigger styling */
.kh_detail-video-columns .read-more__toggle {
  cursor: pointer;
  user-select: none;
  display: inline-flex;
  align-items: center;
  margin: 20px 0 0;        /* always 20px gap above toggle */

      color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    cursor: pointer;
}

/* plus/minus symbol */
.kh_detail-video-columns .plus {
  display: inline-block;
  text-align: center;
    color: var(--Sabre-Blue, #00AFFE);
font-family: Poppins;
font-size: 14px;
font-style: normal;
font-weight: 600;
line-height: 140%;
margin-right: 4px;
}

.kh_detail-video-columns .cat-tags.mobile {
    display: none;
}
@media (max-width: 850px) {
    .kh_detail-video-columns {
        padding: 0px 25px;
        padding-top: 20px;
        gap: 20px 20px;
    }
    .kh_detail-video-columns .video-container {
        grid-column: span 12;
    }
    .kh_detail-video-columns .content {
        grid-column: span 12;
        max-width: 85%;
    }
    .kh_detail-video-columns .cat-tags {
        display: none;
    }
    .kh_detail-video-columns .cat-tags.mobile {
        display: flex;
        margin-top: 26px;
        gap: 10px;
    }
    .kh_detail-video-columns h2 {
        margin-top: 0;
        color: var(--Sabre-Purple, #4B08A1);
        font-family: Poppins;
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%; /* 20.8px */
        letter-spacing: -0.176px;
    }
    .kh_detail-video-columns .read-more {
        padding-top: 10px;
    }
}

.video-container {
    position: relative; width: 100%; max-width: 960px; aspect-ratio: 16/9; background: #000;
  }
  .video-container iframe {
    position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  }

  .video-poster {
    position: absolute; inset: 0; z-index: 2;
    display: grid; place-items: center;
    background-color: transparent; /* prevents hover bleed-through */
    background-size: cover; background-position: center;
    opacity: 1; transition: opacity .3s ease; pointer-events: auto;
  }
  .video-poster.is-hidden { opacity: 0; pointer-events: none; }

  .play-btn {
    width: 60px; height: 60px; background-color: #00AFFE;
    border: none; border-radius: 99999px;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
  }
  .play-btn:hover {
    background: #00AFFE !important;
  }
  .play-btn svg { width: 17px; height: 17px; display: block; margin-left: 4px; }
  .play-btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }

.kh_detail-video-more {
    max-width: calc(1240px + 200px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 100px;
    padding-top: 95px;
    margin-bottom: 0px;
}
.kh_detail-video-more .heading-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    padding-top: 13px;
    border-top: 1px solid var(--Sabre-Blue, #00AFFE);
}
.kh_detail-video-more .heading-line {
    width: 4px;
    height: 20px;
    background: var(--Sabre-Blue, #00AFFE);
}
.kh_detail-video-more .heading {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.264px;
    margin: 0;
}
.kh_detail-video-more .videos {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px 20px; /* adjust gutter */
    margin-top: 28px;
}
.kh_detail-video-more .video {
    grid-column: span 3;
}
.kh_detail-video-more .video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.kh_detail-video-more .video-title {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    letter-spacing: -0.154px;
    margin: 0;
    margin-top: 20px;
}
@media (max-width: 1000px) {
    .kh_detail-video-more .video {
        grid-column: span 6;
    }
}
@media (max-width: 850px) {
    .kh_detail-video-more {
        display: none;
    }
}

/* Techincal Insights */
.kh_more-videos {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px;
    margin-top: 95px;
}
.kh_more-videos_top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    max-width: calc(1240px + 200px);
    margin: 0 auto;
    width: 100%;
    padding: 0px 100px;
    position: relative;
    margin-bottom: 20px;
}
.kh_more-videos_top_inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    border-top: 1px solid var(--Sabre-Blue, #00AFFE);
    padding-top: 13px;
}
.kh_more-videos_heading_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}
.kh_more-videos_heading_line {
    width: 4px;
    height: 20px;
    background: var(--Sabre-Blue, #00AFFE);
}
.kh_more-videos_heading {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.264px;
    margin-bottom: 0;
}
.kh_more-videos_link_wrapper-mobile {
    display: none;
}
.kh_more-videos_link {
    color: var(--Sabre-Blue, #00AFFE);
    text-align: right;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 21px */
    letter-spacing: -0.154px;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    margin-bottom: 5px;
    display: block;
}

.kh_more-videos .swiper {
    /* max-width: calc(1240px + 200px); */
    width: 100%;
    /* padding: 0 100px; */
    position: relative;
}
.kh_more-videos .swiper {
    max-width: calc(1240px + 200px);
    width: 100%;
    padding: 0 100px;
    position: relative;
    margin: 0 auto;
}
@media (min-width: 1400px) {
    .kh_more-videos .swiper {
        max-width: 1240px;
        overflow: hidden;
        padding: 0;
    }
}
@media (max-width: 850px) {
    .kh_more-videos .swiper {
        padding-left: 25px;
        padding-right: 0px;
    }
}



.kh_more-videos .swiper-wrapper {
    display: flex;
}
.kh_more-videos .swiper-slide {
    display: flex;
    width: 295px;
    /* max-width: 295px; */
    /* height: 166.259px; */
    justify-content: flex-start;
    align-items: flex-start;
    flex-shrink: 0;
    aspect-ratio: 295.00/166.26;
    flex-direction: column;
    height: fit-content;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}


.kh_more-videos_slide:hover .kh_more-videos_slide_title {
    color: var(--Sabre-Blue, #00AFFE);
}

.kh_more-videos iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.kh_more-videos .video-title {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%; /* 19.6px */
    letter-spacing: -0.154px;
    margin: 0;
    margin-top: 20px;
}

.kh_more-videos_swiper-button {
    display: flex;
    width: 60px;
    height: 60px;
    padding: 18px 17px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 30px;
    border: 1px solid var(--Sabre-Blue, #00AFFE);
    background: var(--Sabre-White, #FFF);
    cursor: pointer;
    transition: background 0.3s ease;
    transform: translateZ(0); /* triggers GPU rendering */
    will-change: transform;
}
.kh_more-videos_swiper-button:hover {
    background: var(--Sabre-Blue, #00AFFE);
}
.kh_more-videos_swiper-button:hover svg path {
    fill: #ffffff;
}
.kh_more-videos_swiper-button-prev {
    position: absolute;
    left: 70px;
    top: 126px;
    z-index: 2;
}
.kh_more-videos_swiper-button-next {
    position: absolute;
    right: 70px;
    top: 126px;
    z-index: 2;
}
@media (max-width: 850px) {
    .kh_more-videos {
        margin-top: 47px;
    }
    .kh_more-videos_top {
        padding: 0 25px 0 0;
        margin-left: 25px;
        border-top: 1px solid var(--Sabre-Blue, #00AFFE);
    }
    .kh_more-videos_top_inner {
        border-top: none;
        padding-top: 9px;
    }
    .kh_more-videos_heading {
        font-size: 18px;
    }
    .kh_more-videos_link_wrapper-desktop {
        display: none;
    }
    .kh_more-videos_link_wrapper-mobile {
        display: flex;
        flex-direction: row;
        padding: 0 25px;
        margin-top: 30px;
    }
    .kh_more-videos_swiper-button {
        display: none;
    }
    .kh_more-videos_slide_title {
        font-size: 16px;
    }
}

.kh_more-videos_swiper-button-prev.swiper-button-disabled,
.kh_more-videos_swiper-button-next.swiper-button-disabled {
  display: none;
}

.kh_ask-an-expert {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px 100px;
    max-width: calc(1240px + 200px);
    margin: 0 auto;
    margin-top: 49px;
}
.kh_ask-an-expert_inner {
    display: flex;
    gap: 25px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--Sabre-Purple, #4B08A1);
    padding-top: 30px;
    padding-bottom: 42px;
    flex-wrap: wrap;
}
.kh_ask-an-expert_heading {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 42px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 63px */
    letter-spacing: -0.462px;
    min-width: fit-content;
    margin-bottom: 0;
}
.kh_ask-an-expert_links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 78px;
    justify-content: flex-end;
}
.kh_ask-an-expert_link {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: -0.22px;
    text-decoration: none;
    min-width: fit-content;
    transition: .2s ease;
}
.kh_ask-an-expert_link:hover {
    color: var(--Sabre-Blue, #00AFFE);
}
.kh_ask-an-expert_link span {
    color: var(--Sabre-Blue, #00AFFE);
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 30px */
    letter-spacing: -0.22px;
}
.kh_ask-an-expert_btn {
    display: inline-flex;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: var(--Sabre-Blue, #00AFFE);
    color: var(--Sabre-White, #FFF);
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 24px */
    letter-spacing: -0.176px;
    text-decoration: none;
    transition: .5s ease;
    min-width: fit-content;
}
.kh_ask-an-expert_btn:hover {
    opacity: .5;
}

@media (max-width: 850px) {
    .kh_ask-an-expert {
        padding: 0px 25px;
        margin-top: 29px;
    }
    .kh_ask-an-expert_inner {
        padding-top: 17px;
        padding-bottom: 30px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1px;
    }
    .kh_ask-an-expert_heading {
        font-size: 24px;
        letter-spacing: -0.264px;
    }
    .kh_ask-an-expert_links {
        gap: 15px;
        justify-content: space-between;
        width: 100%;
    }
    .kh_ask-an-expert_link {
        font-size: 16px;
    }
}

.kh_newsletter {
    background: var(--Sabre-Purple-2, #F0FAFF);
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0px;
    padding-top: 46px;
    padding-bottom: 50px;
}
.kh_newsletter_inner {
    display: flex;
    gap: 46px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 100px;
    max-width: calc(1240px + 200px);
}
.kh_newsletter_heading-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}
.kh_newsletter_heading_line {
    width: 4px;
    height: 20px;
    background: var(--Sabre-Blue, #00AFFE);
}
.kh_newsletter_heading {
    color: var(--Sabre-Purple, #4B08A1);
    font-family: Poppins;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 36px */
    letter-spacing: -0.264px;
    min-width: fit-content;
    margin-bottom: 0;
}

@media (max-width: 850px) {
    .kh_newsletter {
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .kh_newsletter_inner {
        padding: 0px 25px;
    }
    .kh_newsletter_heading {
        font-size: 18px;
    }
}
