/* Masonry: keep each column behaving like a normal block item (prevents stretch/weird flex behavior) */
[data-masonry] .usa-mason-cardcol {
  display: block;
}

/* Card shell */
.usa-mason-background {
  background-color: #F6F6F6;
  border-radius: 7px;
  padding: 40px;
  margin-bottom: 0;
  text-align: center; /* ← key fix: centers inline / inline-block children */
}

/* Force text centering inside masonry */
[data-masonry] p,
[data-masonry] h1,
[data-masonry] h2,
[data-masonry] h3,
[data-masonry] h4,
[data-masonry] h5,
[data-masonry] h6 {
  text-align: center !important;
}

/* Name */
.usa-mason-name {
  display: inline-block;    
  font-family: "YankeeBold", sans-serif;
  font-size: 1.2rem;              
  line-height: 1.1;
  margin: 0px 0 10px 0;
  padding: 30px 20px 0; 
  border-top: 1px solid #de0520;
}



/* Title line */
.usa-mason-location {
  font-family: "YankeeBold", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #000;
  margin: 0 0 0.5rem 0;
}

/* Quote */
.usa-mason-txt {
  font-family: "YankeeMedium", sans-serif;
  font-size: 1.125rem;
  line-height: 1.875;
  margin: 0 0 2rem 0;
}

/* HP Testimonial blocks */
.hp-testim-quote {
  flex-grow: 1;
}
.hp-testim-row {
  align-items: stretch;
}

/* Column */
.hp-testim-cardcol { 
  display: flex; 
}

.hp-testim-card {
  width: 100%;
}

/* Card shell */
.hp-testim-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #0068b2;
  border-radius: 7px;
  padding: 40px;
  text-align: center;
  overflow: hidden;
}

/* Gradient overlay — matches band-utility */
.hp-testim-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0) 90%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(0, 0, 0, 0) 90%
    );
  z-index: 0;
  pointer-events: none;
}

/* Keep content above gradient */
.hp-testim-card > * {
  position: relative;
  z-index: 1;
}

/* Quote text */
.hp-testim-quote {
  flex-grow: 1;
  font-family: "YankeeMedium", sans-serif;
  font-size: 1.15rem;
  line-height: 1.875;
  margin: 0 0 2rem 0;
  color: #FFFFFF;
}

/* Name */
.hp-testim-name {
  font-family: "YankeeBold", sans-serif;
  font-size: 1.3rem;
  color: #F6F6F6;
  line-height: 1.1;
  margin: 0 0 10px 0;
  padding: 30px 20px 0;
  border-top: 1px solid #E6E6E6;
}

/* Location */
.hp-testim-location {
  font-family: "YankeeBold", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #F6F6F6;
  margin: 0 0 0.5rem 0;
}

.hp-testim-spacer {
  flex-grow: 1;
}