/* ===== value-prop.css — "Quote faster" two-column feature section ===== */

.pain-section {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
}
.quoting-demo-p {
  font-size: 22px;
}
.pain-story {
  font-style: italic;
}

.section-title-alt {
  max-width: none;
  margin-bottom: 3rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

/* Keep the chat mock top flush with the text in the left column */
.two-col .hiw-block,
.two-col .chat-mock {
  margin-top: 0;
}

/* Compact data-source grid under the "Find Anything" copy */
.find-sources-grid {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.find-source {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--rule);
  border-radius: 10px;
  background: transparent;
}
.find-source .find-source-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}
.find-source span {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

@media (max-width: 800px) {
  .section-title-alt {
    font-size: 40px;
    margin-bottom: 3rem;
  }
  .pain-section {
    padding: 64px 0;
  }
  .pain-story {
    font-size: 16px;
  }
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .find-sources-grid {
    margin-top: 32px;
  }
}
