/* Block: Quotes — block-specific styling
 * Placed in blocks/quotes/style.css so ACF enqueues it with the block.
 * Cards are arranged using CSS Grid (two columns on desktop, one on mobile).
 */

.quotes_block {
  background: #fff;
}

.quotes_block .container {
  max-width: 1200px;
  margin: 0 auto;
}

.quotes_cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.quotes_card {
  background: #e9f1fe;
  border-radius: 8px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quotes_card-icon img {
  width: 100px;
  height: auto;
  max-width: 100px;
  margin-bottom: 1rem;
}

.quotes_card-name {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #000;
}

.quotes_card-elevator {
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #333;
}

.quotes_card-quote {
  font-size: 1.2rem;
  line-height: 1.4rem;
  color: #444;
}

@media (min-width: 767.98px) {
  .quotes_cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
  .quotes_card-icon img {
    width: 130px;
    max-width: 130px;
    margin-bottom: 1.5rem;
  }
  .quotes_card-name {
    font-size: 1.8rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .quotes_card-elevator {
    font-size: 1.8rem;
    line-height: 2.25rem;
    margin-bottom: 1.5rem;
  }
  .quotes_card-quote {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}
