.th-blog-post-hero-case-study {
  background: #EBF2F8;
  border-radius: 5px;
  max-width: 1000px;
  margin: 100px auto 150px;
  padding: 80px;
  position: relative;     /* anchor .metrics-row to this section */
  overflow: visible;      /* let the cards hang outside */
  padding-bottom: 140px;  /* room for the overlap (160px card height / 2 + shadow) */
}
.post-hero-inner {
  max-width: 600px; 
  margin: 0;
  text-align: left; 
}
.post-hero-title {
  margin: 0;
  color: #00274D;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.post-hero-logo {
  display: inline-block;
/*  width: 100%; */
  max-width: auto;
  max-height: 40px;
  margin: 0 0 40px;
}
/* keep your .metrics-row and .metric-card as-is, but adding z-index helps in some themes */
.metrics-row { z-index: 1; }
.metric-card { z-index: 2; }
/* ---- Metrics strip ---- */
.metrics-row {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -80px;
  display: flex;
  gap: 40px;                    /* spacing between cards */
  justify-content: center;
  align-items: center;
}
.metric-card {
  width: 240px;                 /* hard-coded width */
  height: 160px;                /* hard-coded height */
  background: #00274D;
  color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 12px 14px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 30px;                /* inner breathing room */
}
.metric {
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  width: 100%;
  text-align: left;
}

.metric-number {
  font-size: 48px;
}

.metric-unit {
  font-size: 32px;
}

.metric-detail {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
}
/* ---- Responsive tweaks ---- */
@media (max-width: 900px) {
  .metrics-row { gap: 16px; }
  .metric-card { width: 220px; }
}
@media (max-width: 760px) {
  .metrics-row {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 24px;
    flex-direction: column;
    gap: 12px;
  }
  .th-blog-post-hero-case-study { 
    padding: 60px 30px 40px;
    margin: 0;
    border-radius: 0;
  }
  .post-hero-title{
    font-size: 32px;
    padding-bottom: 20px;
  }
  .metric-card {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }
  .metrics-row{
    padding: 0 30px;
  }
  .metric,
  .metric-detail {
    text-align: center;
  }
}

}
/* ===== Customer info (below hero metrics) ===== */
.customer-info {
  max-width: 800px;
  margin: 56px auto 0;
  padding: 0 0;
  display: grid;
  grid-template-columns: 2.6fr 1fr;  /* left text wider than highlights */
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.about-title {
  margin: 0 0 8px;
  color: #00274D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}
.about-details {
  margin: 0;
  color: #0A2A4A;
  font-size: 14px;
  line-height: 1.8;
}
/* Highlights list */
.highlights {
  margin: 0;
  padding: 0;
}
.highlight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding: 0 0 20px;
}
.highlight:last-child {
  padding-bottom: 0;
}
.highlight-label {
  margin: 0 0 8px;
  color: #00274D;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}
.highlight-value {
  margin: 0;
  color: #3870FA;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  justify-self: start; 
}
.highlight-chip {
  display: inline;
  background: #EBF2F8;
  padding: 4px 8px;
  border-radius: 4px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* Responsive: stack columns */
@media (max-width: 760px) {
  .customer-info {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
    padding: 0 30px;
  }
}