/* ===== ABOUT BELIEF REVEAL - FRAMER MOTION REBUILD ===== */

.belief-scroll-container {
  position: relative;
  width: 100%;
  height: 450vh;
  /* Control total scroll length here */
  background: #fff8f6;
  z-index: 10;
}

.belief-sticky-viewport {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.belief-title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  /* Center Vertically */
  justify-content: center;
  z-index: 5;
  pointer-events: none;
}

.about-belief-reveal__title {
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
  margin: 0;
}

.belief-sections-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: none;
  /* Let clicks pass through if needed, though they are cards */
}

/* Individual Card Styling */
.belief-section-card {
  position: absolute;
  top: 50%;
  /* Start centered vertically */
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  /* Center perfectly */

  width: 100%;
  max-width: 1200px;
  padding: 0 40px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;

  /* Styling from original */
}

/* DISABLED: These were overriding the correct Webflow styles.
   The Webflow CSS (newgradient.webflow.css) already has correct styles for:
   - .about-belief-label
   - .about-belief-title
   - .about-belief-text
   Keeping the React component styles commented out to avoid conflicts.

.about-belief-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ff5722;
  text-transform: uppercase;
}

.about-belief-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-belief-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.about-belief-text {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 600px;
}
*/

.about-section-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-top: 30px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .belief-section-card {
    grid-template-columns: 1fr;
    gap: 30px;
    top: 55%;
    padding: 0 24px;
  }
}