/* ── Results Page ── */

/* Featured 2-up grid */
.results-featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.results-featured-grid .combined-result-card .portfolio-frame-viewport {
  height: 380px;
}
.results-featured-grid .combined-result-card:hover .portfolio-scroll-img {
  transform: translateY(calc(-100% + 380px));
}
.results-featured-grid .combined-result-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.results-featured-grid .result-body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.results-featured-grid .result-client {
  margin-top: auto;
  padding-top: 16px;
}
.results-featured-grid h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 8px 0 0;
  line-height: 1.3;
}
.results-featured-grid .result-metric-num {
  font-size: 1.25rem;
}
.results-featured-grid .result-quote {
  font-size: .9rem;
  margin-bottom: 0;
}

/* Wide container override */
.container--wide {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 48px;
}

/* Secondary 3-up grid header */
.results-more-section {
  padding: 0 0 96px;
  background-color: var(--navy);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 40px 40px;
}
.results-more-section .section-label {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}
.results-more-section .section-title {
  color: #fff;
}
.results-more-section .section-sub {
  color: rgba(255,255,255,.65);
}
.results-more-section .results-inline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Force titles to occupy 2 lines so metric boxes align across all cards */
.results-more-section .result-body h3,
.results-featured-grid .result-body h3 {
  min-height: 2.6em;
}

/* Consistent metric spacing across all result cards on this page */
.results-featured-grid .result-metrics,
.results-more-section .result-metrics {
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 10px;
}
.results-featured-grid .result-quote,
.results-more-section .result-quote {
  margin-top: 4px;
  margin-bottom: 0;
}

/* Push client attribution to card bottom so all three align */
.results-more-section .combined-result-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.results-more-section .result-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.results-more-section .result-client {
  margin-top: auto;
  padding-top: 16px;
}

/* Flat image top on More Client Wins cards */
.results-more-section .result-card-img {
  width: 100%; overflow: hidden; border-radius: 10px 10px 0 0;
  background: var(--navy); aspect-ratio: 16/9;
}
.results-more-section .result-card-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
  transition: transform .4s;
}
.results-more-section .combined-result-card:hover .result-card-img img {
  transform: scale(1.03);
}

/* Industry badge on cards */
.result-industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  background: var(--blue-light);
  border-radius: 4px;
  padding: 3px 8px;
  margin-bottom: 8px;
}

/* Google maps proof card */
.proof-card {
  max-width: 640px;
  margin: 0 auto 80px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.proof-card-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .results-more-section .results-inline-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .results-featured-grid {
    grid-template-columns: 1fr;
  }
  .container--wide {
    padding: 0 24px;
  }
}
@media (max-width: 600px) {
  .results-more-section .results-inline-grid {
    grid-template-columns: 1fr;
  }
  .results-featured-grid .combined-result-card .portfolio-frame-viewport {
    height: 260px;
  }
  .results-featured-grid .combined-result-card:hover .portfolio-scroll-img {
    transform: translateY(calc(-100% + 260px));
  }
}
