/* Deep Analytics website v1.6 — AI Summary Search results. */

body main .ai-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 55px;
}

body main .ai-result-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #ffffff;
  border: 1px solid #cfdee7;
  box-shadow: 0 18px 42px rgba(17, 53, 73, 0.09);
}

body main .ai-result-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  padding: 16px;
  background: #f4f8fa;
  border-bottom: 1px solid #cfdee7;
  overflow: hidden;
}

body main .ai-result-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

body main .ai-result-copy {
  padding: 24px 26px 28px;
}

body main .ai-result-copy span {
  color: #138f9a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

body main .ai-result-copy h3 {
  margin: 8px 0 10px;
  color: #102b3c;
  font: 600 1.35rem/1.25 'Space Grotesk', sans-serif;
}

body main .ai-result-copy p {
  margin: 0;
  color: #577181;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  body main .ai-results-grid {
    grid-template-columns: 1fr;
  }

  body main .ai-result-card {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(240px, 0.75fr);
  }

  body main .ai-result-image {
    height: 330px;
    border-right: 1px solid #cfdee7;
    border-bottom: 0;
  }
}

@media (max-width: 600px) {
  body main .ai-result-card {
    display: flex;
  }

  body main .ai-result-image {
    height: 270px;
    border-right: 0;
    border-bottom: 1px solid #cfdee7;
  }
}
