/* BUSINESS-CARD-B6: retain the B4 compact footer and reduce the name size.
   The location row is removed from the card template, not hidden with CSS.
   B6 additionally compacts the phone row and copy button below.
   Existing artwork, services, destination, data and advertising are untouched. */
.bc3-host[data-business-card-layout="B6"] .bc1-footer {
  display:flex;flex-direction:row;align-items:center;justify-content:center;
  gap:0;padding-top:8px;
}
.bc3-host[data-business-card-layout="B6"] .bc1-directory {
  display:flex;flex-direction:row;align-items:baseline;justify-content:center;
  flex-wrap:wrap;gap:3px 6px;order:0;text-align:center;
}
.bc3-host[data-business-card-layout="B6"] .bc1-directory strong {
  display:inline;font-size:11px;line-height:1.35;
}
.bc3-host[data-business-card-layout="B6"] .bc1-directory small {
  display:inline;font-size:9px;line-height:1.35;margin:0;
}

/* Slight reduction from B3/B4: 29 -> 26px on wide cards, 25 -> 22px
   on cards up to 680px wide. Line height and all other spacing stay unchanged. */
.bc3-host[data-business-card-layout="B6"] .bc1-information h2 {
  font-size:26px;
}
@container (max-width:680px) {
  .bc3-host[data-business-card-layout="B6"] .bc1-information h2 {
    font-size:22px;
  }
}

/* B6: no visible phone-label row. The number stays beside a decorative handset.
   Retain the base copy-button stacking and behavior so it does not activate
   the whole-card profile link. Text size stays legible; reduce chrome, not data. */
.bc3-host[data-business-card-layout="B6"] .bc1-contact {
  gap:8px;
  padding-block:8px;
}
.bc3-host[data-business-card-layout="B6"] .bc1-phone-line {
  display:flex;
  align-items:center;
  gap:6px;
  flex:1 1 auto;
  min-width:0;
}
.bc3-host[data-business-card-layout="B6"] .bc1-phone-icon {
  display:block;
  width:16px;
  height:16px;
  flex:0 0 16px;
  color:#4a6c71;
}
.bc3-host[data-business-card-layout="B6"] .bc1-copy {
  flex:0 0 auto;
  min-height:30px;
  width:auto;
  gap:4px;
  padding:5px 7px;
  border-radius:5px;
  line-height:1.2;
}
.bc3-host[data-business-card-layout="B6"] .bc1-copy svg {
  width:14px;
  height:14px;
}
