/* Open middle sections: no box background, equal height, cleaner editorial look */

.home-page main section:nth-of-type(3) {
  padding-top: 4rem !important;
  padding-bottom: 5rem !important;
}

.home-page main section:nth-of-type(3) > div {
  max-width: 1480px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 3rem !important;
  align-items: stretch !important;
}

/* Remove boxed card look completely */
.home-page main section:nth-of-type(3) .home-panel {
  min-height: 420px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  padding: 2.25rem 1rem 2rem 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  position: relative !important;
}

/* Small accent line only */
.home-page main section:nth-of-type(3) .home-panel::before {
  content: "" !important;
  display: block !important;
  width: 56px !important;
  height: 2px !important;
  margin-bottom: 1.2rem !important;
  background: linear-gradient(90deg, rgb(34, 211, 238), transparent) !important;
  box-shadow: 0 0 14px rgba(0, 242, 255, 0.45) !important;
}

/* Make both titles balanced and not too huge */
.home-page .home-body-title-text {
  display: block !important;
  font-size: clamp(2.35rem, 3vw, 3.7rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.015em !important;
  font-weight: 300 !important;
  max-width: 620px !important;
}

/* Body copy under both titles */
.home-page main section:nth-of-type(3) .home-panel p:not(.heading-futuristic):not(.section-kicker) {
  margin-top: 1.35rem !important;
  max-width: 620px !important;
  font-size: 1.08rem !important;
  line-height: 1.72 !important;
  font-weight: 400 !important;
  color: rgba(226, 232, 240, 0.88) !important;
}

/* Optional subtle vertical divider feel without boxing */
.home-page main section:nth-of-type(3) .home-panel + .home-panel {
  padding-left: 1rem !important;
}

/* Mobile: stack cleanly */
@media (max-width: 900px) {
  .home-page main section:nth-of-type(3) > div {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .home-page main section:nth-of-type(3) .home-panel {
    min-height: auto !important;
    padding: 1.5rem 0 !important;
  }

  .home-page main section:nth-of-type(3) .home-panel + .home-panel {
    padding-left: 0 !important;
  }

  .home-page .home-body-title-text {
    font-size: clamp(2rem, 8vw, 3rem) !important;
  }
}
