/* discovery-call.css */
.discovery-section {
  background-color: var(--color-soft-gray); /* Replaced #f9f9f9 */
  height: 100%;
  width: 100vw;
}

.discovery-title {
  width: 56vw;
  max-width: 60vw;
  margin: auto;
  padding: 12vh 0 0 0;
  color: var(--color-dark-blue);
  font-size: var(--fs-xxl); /* Using Perfect Fourth scale */
}

.discovery-h2 {
  color: var(--color-teal); /* Replaced #008080 */
  width: 56vw;
  max-width: 56vw;
  line-height: 1.4em;
  letter-spacing: 0.1px;
  margin: 0 auto;
  padding: 0;
  font-size: var(--fs-xl);
}

.discovery-blurb {
  color: var(--color-dark-blue);
  font-size: 1.8vw;
  font-weight: 300;
  font-style: normal;
  width: 56vw;
  max-width: 56vw;
  line-height: 1.4em;
  margin: 0 auto;
  padding: 4vh 0 4vh 0;
}

/* Specific class updated to Teal as requested */
.discovery-intro-text {
  width: 56vw;
  margin: 0 auto 4vh auto;
  color: var(--color-dark-blue); /* Replaced blue with brand teal */
  font-size: var(--fs-md);
}

/* Supplemental Content Section - Layout & Colors Preserved */
.discovery-details {
  width: 56vw;
  margin: 8vh auto;
  border-top: 1px solid var(--color-soft-gray-dark);
  padding-top: 6vh;
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.details-card h3 {
  color: var(--color-teal); /* Keeping this teal as you liked it */
  margin-bottom: 1rem;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
  .discovery-title {
    width: 80vw;
    max-width: 80vw;
    padding: 12vh 0 0 0;
  }

  .discovery-h2 {
    width: 80vw;
    max-width: 80vw;
  }

  .discovery-blurb {
    font-size: 1.2em;
    width: 80vw;
    max-width: 80vw;
  }

  .discovery-intro-text, .discovery-details {
    width: 80vw;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
}