/* ============================================================
   results.css - styles for the client results gallery
   ============================================================ */

/* HOW-TO-READ GUIDE BAR */
.results-guide {
  background: var(--teal);
  padding: 1.5rem var(--pad-x);
}
.results-guide__inner {
  max-width: 780px;
  margin: 0 auto;
}
.results-guide p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
  line-height: 1.85;
  margin: 0;
}
.results-guide strong {
  color: #fff;
}

/* RESULTS GRID - single column */
.results-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* RESULT CARD */
.result-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.15s;
}
.result-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.result-card__image-link {
  display: block;
  cursor: zoom-in;
}
.result-card__image-link img {
  width: 100%;
  display: block;
}

.result-card__info {
  padding: 0.9rem 1.1rem;
  border-top: 1px solid var(--border);
}
.result-card__label {
  font-family: 'Merriweather', serif;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 0.3rem;
}
.result-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.result-card__location {
  font-size: var(--text-xs);
  font-weight: 300;
  color: var(--muted);
}
.result-card__vis {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: 0.04em;
}
