/* Base page look (copied from our-data.html) */
body {
  background: #fbfbf7;
  position: relative;
}

header.entry-header {
  display: none;
}

footer {
  margin-top: -150px;
}

.separate-containers .entry-content,
.separate-containers .site-main {
  margin: 0;
}

.separate-containers .inside-article {
  padding: 0;
}

.grid-container {
  max-width: 100%;
}

.lottie-container {
  width: 120px;
  height: 120px;
}

#our-data-content-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr 700px;
  align-items: start;
}

.our-data-intro {
  flex: 1;
  margin-top: 64px;
}

.our-data-intro p {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.5px;
  color: #545454;
  margin: 0;
  background: linear-gradient(90deg, #545454 35%, #1EAFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-data-cards-container {
  display: flex;
  align-items: start;
  justify-content: center;
  position: relative;
  top: -150px;
  right: -50px;
  padding: 70px 50px;
  overflow: hidden;
}

.our-data-cards {
  position: relative;
  width: 600px;
  height: 750px;
}

.our-data-card {
  background: linear-gradient(180deg, #FBFBF7 0%, #EFEFEB 100%);
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 40px 40px;
  box-shadow: 0 -4px 50px rgba(84, 84, 84, 0.1);
  position: absolute;
  inset: 0;
  will-change: transform, opacity;
  transform: translateY(0) scale(1);
  opacity: 1;
  box-sizing: border-box;
}

.our-data-card img {
  width: 120px;
  height: 120px;
}

.our-data-card h3 {
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -1px;
  margin: 16px 0 24px;
  color: #000;
}

.our-data-card p {
  font-size: 17px;
  line-height: 25.5px;
  margin: 24px 0;
  color: #545454;
}

.our-data-card em {
  font-size: 17px;
  font-style: normal;
  line-height: 25.5px;
  display: block;
  background-color: #e1e1e1;
  border-radius: 16px;
  padding: 16px 20px;
  margin: 32px 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 95px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, #FBFBF7 0%, #EFEFEB 100%);
  border: 1px solid #fff;
  padding: 20px 24px;
  border-radius: 50px;
  box-shadow: 0 -4px 50px rgba(84, 84, 84, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 9999999;
}

.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator span {
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.2px;
  color: #000;
}

.scroll-indicator[hidden] {
  display: none;
}

#our-cards-overlay {
  background: linear-gradient(180deg, transparent, #fbfbf7);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 150px;
  height: 200px;
  z-index: 9998;
}

.our-data-swiper-root {
  position: relative;
}

@media (max-width: 768px) {
  footer {
    margin-top: 0;
  }

  .lottie-container {
    width: 97px;
    height: 97px;
  }

  #our-cards-overlay {
    display: none;
  }

  #our-data-content-inner {
    display: block;
    height: auto;
  }

  .our-data-cards-container {
    height: auto;
    padding: 0;
    top: 0;
    right: 0;
    overflow: visible;
  }

  .our-data-cards {
    height: auto;
    margin-top: 50px;
  }

  .our-data-card {
    position: static;
    transform: none !important;
    padding: 32px;
    margin-bottom: -30px;
  }

  .our-data-card img {
    width: 97px;
    height: 97px;
  }

  .our-data-card h3 {
    font-size: 32px;
    line-height: 40px;
  }

  .scroll-indicator {
    display: none;
  }

  .our-data-intro {
    margin: 24px 0 0;
  }
}

/* Gesture overlay (Swiper input only) */
.our-data-swiper-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  /* Keep it transparent, but interactive */
  background: transparent;
  outline: none;
}

.our-data-swiper-overlay:focus-visible {
  /* Accessibility focus ring without affecting layout */
  box-shadow: 0 0 0 3px rgba(30, 170, 255, 0.35) inset;
  border-radius: 20px;
}

.our-data-swiper-overlay .swiper {
  width: 100%;
  height: 100%;
}

.our-data-swiper-overlay .swiper-wrapper {
  width: 100%;
  height: 100%;
}

.our-data-swiper-overlay .swiper-slide {
  width: 100%;
  height: 100%;
  background: transparent;
}

