/* Get a Quote banner contact rows. Icon, label and value sit in columns so the
   values share a left edge; the block is centred but its text stays left aligned. */
.quote-contact {
  list-style: none;
  width: fit-content;
  max-width: 100%;
  margin: 20px auto 0;
  padding: 0;
  text-align: left;
}

/* Small screens: label sits above the value so long addresses get full width. */
.quote-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  line-height: 1.6;
}

.quote-contact li:first-child {
  padding-top: 0;
}

.quote-contact li:last-child {
  padding-bottom: 0;
}

.quote-contact-icon {
  grid-column: 1;
  grid-row: 1;
  text-align: center;
  font-size: 14px;
  line-height: inherit;
  color: #8ab4f8;
}

.quote-contact-label {
  grid-column: 2;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.quote-contact-value {
  grid-column: 2;
  color: #fff;
  overflow-wrap: break-word;
}

/* One address per row, spaced enough to be a comfortable tap target. */
.quote-contact-emails {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 576px) {
  .quote-contact li {
    grid-template-columns: 18px 90px minmax(0, 1fr);
  }

  .quote-contact-value {
    grid-column: 3;
    grid-row: 1;
  }
}
