/* Story Section */

.story-section {
  display: flex;
  padding: 160px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  position: relative;
}

.gradient-bg {
  width: 785px;
  height: 508.237px;
  position: absolute;
  left: -384px;
  bottom: 367.247px;
  border-radius: 785px;
  opacity: 0.7;
  background: linear-gradient(180deg, #e23744 0%, #850549 100%);
  filter: blur(283px);
  z-index: 2;
}

.story-section > h1 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: -24px;
  align-self: stretch;
}

.story-section .header-top {
  color: var(--Text-On-Primary, #fff);
  text-align: center;
  font-feature-settings: "dlig" on;
  font-family: "Antic Didone";
  font-size: 104px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%; /* 124.8px */
  text-transform: uppercase;
}

.story-section .header-bottom {
  color: var(--Text-On-Primary, #fff);
  text-align: center;
  font-feature-settings: "dlig" on;
  font-family: Manrope;
  font-size: 104px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 124.8px */
  letter-spacing: -2.08px;
  text-transform: uppercase;
}

.story-section .content-wrapper {
  display: flex;
  padding-right: 64px;
  align-items: center;
  gap: 48px;
  align-self: stretch;
  position: relative;
}

.content-wrapper .text-content {
  display: flex;
  min-width: 672px;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  flex: 1 0 0;
  z-index: 2;
  margin-left: 150px;
}

.text-content .text-expert {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  align-self: stretch;
}

.text-content h2 {
  color: var(--Text-On-Primary, #fff);
  font-feature-settings: "dlig" on;
  text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.35);
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.24px;
  text-transform: uppercase;
}

.text-content .expert-quote {
  color: var(--Text-Light-Grey, #e9ebed);
  font-family: Manrope;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 44.8px */
  letter-spacing: -0.32px;
}

.text-content .expert-name {
  color: #fa515e;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.24px;
}

.text-content .expert-title {
  color: var(--Text-Grey--On-Dark, #999da1);
  font-feature-settings: "dlig" on;
  font-family: Manrope;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 28.8px */
  letter-spacing: -0.24px;
}

.quote-marks {
  width: 234.515px;
  height: 161.854px;
  position: absolute;
  z-index: 1;
  top: -73px;
}

.image-container {
  /* display: flex;
  align-items: flex-start;
  gap: 16px; */
  position: relative;

  /* border-radius: 1000px;
  background: #232323; */
  cursor: pointer;
  transition: all 0.1s ease-in-out;

  position: relative;
  width: 20.625rem;
  height: 20.625rem;
  overflow: hidden;
  border-radius: 50%;
  border: 13px solid #2f2b2b;
}

.image-container:hover {
  transform: scale(1.05) !important;
}

.image-container .expert-image {
  object-fit: cover;
}

.image-container .play-overlay {
  position: absolute;
  bottom: 5%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
}

.image-container .play-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
}

.image-container .play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-left: 12px solid white;
  border-bottom: 7px solid transparent;
  margin-right: 8px;
}

.image-container .play-btn {
  position: absolute;
  right: 32px;
  bottom: -8px;
  display: flex;
  width: 104px;
  height: 104px;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.image-container .play-text {
  color: var(--Text-On-Primary, #fff);
  font-feature-settings: "dlig" on;
  font-family: Manrope;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 1.8rem */
  letter-spacing: -0.015rem;
  text-transform: uppercase;
}

.image-container .video-tint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(226, 55, 68, 0) 59.72%,
    rgba(226, 55, 68, 0.4) 100%
  );

  box-shadow: 0px 4px 28px 0px rgba(226, 55, 68, 0.4);
  pointer-events: none;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); /* Black background with opacity */
  z-index: 99999;
}

.modal-content {
  /* padding: 5%; */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content video {
  width: 80%;
  height: 80%;
}

.video-modal.modal-active {
  display: block;
}

body.modal-open {
  overflow: hidden; /* Prevents scrolling */
}

.modal-close-btn {
  position: absolute;
  top: 32px;
  right: 34px;
  width: auto;
  height: auto;
  border: 1px solid #ffff;
  padding: 11px;
  border-radius: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/*======================= Mobile View ============================= */

@media screen and (width <= 768px) {
  .story-section {
    display: flex;
    padding: 80px 20px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    align-self: stretch;
  }
  .story-section .header-top {
    color: var(--Neutral-White, #fff);
    font-family: "Antic Didone";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }
  .story-section .header-bottom {
    color: var(--Neutral-White, #fff);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
  }
  .story-section .content-wrapper {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    align-self: stretch;
    gap: 41px;
    padding: 0px;
  }

  .image-container {
    display: flex;
    align-items: flex-start;
    gap: 8.436px;
    border-radius: 527.273px;
    background: #232323;
  }

  .image-container .expert-image {
  }

  .image-container .play-btn {
    position: absolute;
    right: 4.293px;
    bottom: -9.8px;
    display: flex;
    width: 70px;
    height: 70px;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
  }

  .content-wrapper .text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 24px;
    min-width: initial;
    margin: 0 0 0 32px;
  }

  .text-content .text-expert {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
  }

  .text-content h2 {
    color: var(--Text-On-Primary, #fff);
    font-feature-settings: "dlig" on;
    text-shadow: 0px 4px 2px rgba(0, 0, 0, 0.35);
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 19.2px */
    letter-spacing: -0.16px;
    text-transform: uppercase;
  }

  .text-content .expert-quote {
    color: var(--Text-Light-Grey, #e9ebed);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 28px */
    letter-spacing: -0.2px;
  }

  .text-content .expert-name {
    color: #fa515e;

    /* Heading H7- 18px/Bold */
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 133.333% */
    letter-spacing: -0.36px;
  }

  .text-content .expert-title {
    color: var(--Text-Grey--On-Dark, #999da1);
    font-feature-settings: "dlig" on;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 130%; /* 18.2px */
    letter-spacing: -0.14px;
  }

  .text-content footer {
    display: flex;
    width: 200px;
    height: 68px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .quote-marks {
    width: 107.004px;
    height: 73.85px;
    top: 49%;
    left: 0;
  }

  .gradient-bg {
    width: 70% !important;
    left: 0;
    top: 53%;
    filter: blur(137px);
    height: 375.237px;
  }
}
