/* Shared digital business card UI — corporate template + builder shell */

:root {
  --bg: #07090f;
  --panel: #0f131f;
  --text: #ecf0f7;
  --muted: #95a0b3;
  --border: #273148;
  --accent: #34d4ff;
  --radius: 18px;
  --shadow: 0 28px 70px rgba(3, 6, 18, 0.55);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html {
  overflow-x: hidden;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 8% -10%, rgba(35, 57, 140, 0.42), transparent 42%),
    radial-gradient(circle at 92% 2%, rgba(23, 102, 133, 0.3), transparent 40%),
    linear-gradient(165deg, #06080e 0%, #0a1020 46%, #05070c 100%);
  color: var(--text);
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.hidden {
  display: none !important;
}

/* —— Builder shell —— */
.builder-wrap {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) 0 clamp(2rem, 5vw, 3rem);
}

.builder-head {
  margin-bottom: 1.25rem;
}

.builder-head h1 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.builder-head p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 52ch;
}

.builder-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .builder-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.05fr);
  }
}

.panel {
  background: linear-gradient(180deg, rgba(20, 27, 43, 0.86), rgba(10, 13, 24, 0.94));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(1rem, 2.5vw, 1.35rem);
}

.panel h2 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8fe8ff;
  margin-bottom: 0.85rem;
}

.label {
  font-size: 0.8125rem;
  color: #d6deef;
  margin-bottom: 0.35rem;
  display: block;
  font-weight: 500;
}

.field {
  margin-bottom: 0.85rem;
}

.input,
.file-input {
  width: 100%;
  border-radius: 13px;
  border: 1px solid #2b3550;
  background: #090d16;
  color: #f1f5ff;
  min-height: 44px;
  padding: 0.65rem 0.75rem;
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus,
.file-input:focus {
  outline: none;
  border-color: #5ac4ff;
  box-shadow: 0 0 0 3px rgba(52, 212, 255, 0.16);
}

.file-input {
  color: transparent;
}

.file-input::file-selector-button,
.file-input::-webkit-file-upload-button {
  color: #f1f5ff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-right: 0.75rem;
}

.btn {
  width: 100%;
  border: none;
  border-radius: 13px;
  min-height: 48px;
  font-weight: 700;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #35ccff 0%, #56efff 100%);
  color: #042330;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(8, 14, 25, 0.4);
}

.result {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.1);
  color: #6ee7b7;
  font-size: 0.875rem;
  word-break: break-word;
}

.result a {
  color: #8ce7ff;
}

.qr-wrap {
  margin-top: 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 20, 36, 0.42);
  padding: 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.qr-box {
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  min-height: 108px;
  min-width: 108px;
  display: grid;
  place-items: center;
}

.not-found {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}

.not-found strong {
  display: block;
  color: #fda4af;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* —— Card (corporate) —— */
.render-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  --theme: #34d4ff;
  --brand-font: Inter, system-ui, sans-serif;
}

.render-card .card-text-scope {
  font-family: var(--brand-font);
}

.render-card.corporate {
  background: linear-gradient(180deg, #0f1f39 0%, #132848 33%, #f6f3ec 33%, #f8f6f1 100%);
  color: #182232;
}

.card-top-main {
  margin-bottom: 0.85rem;
}

.corp-top {
  position: relative;
  min-height: 158px;
  color: #f8f3e8;
}

.corp-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(243, 218, 161, 0.7);
  background: linear-gradient(145deg, #15335d, #0e2442);
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #f1d594;
  font-weight: 700;
  font-size: 1.1rem;
}

.corp-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.corp-name {
  margin-top: 10px;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  line-height: 1.12;
  font-weight: 700;
  color: #fff6de;
  letter-spacing: -0.02em;
  word-break: break-word;
}

.corp-title {
  margin-top: 6px;
  font-size: 0.875rem;
  color: #dbc289;
  word-break: break-word;
}

.render-card.corporate .corp-title {
  color: var(--theme);
}

.corp-profile {
  position: absolute;
  right: 8px;
  bottom: -40px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #f7f5ef;
  background: linear-gradient(145deg, #f6d080, #926c24);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(10, 18, 33, 0.35);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.75rem;
}

.corp-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corp-body {
  margin-top: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 14px;
  border: 1px solid rgba(17, 35, 67, 0.1);
}

.contact-rows {
  margin-top: 4px;
  display: grid;
  gap: 8px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  padding: 0 10px;
  background: rgba(15, 31, 57, 0.07);
  font-size: 0.8125rem;
}

.contact-row:hover {
  background: rgba(15, 31, 57, 0.12);
}

.contact-row .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--theme);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-row.muted {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 420px) {
  .corp-profile {
    width: 80px;
    height: 80px;
    bottom: -32px;
  }

  .corp-body {
    margin-top: 42px;
  }
}

/* —— Public card (card.html) —— */
/* Same base page background as marketing pages so .site-footer reads identically */
body.pub-card-page {
  background: var(--bg, #f3f5fb);
  color: #0f172a;
}

.pub-wrap {
  width: min(420px, min(94vw, 100% - 24px));
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 1.75rem) max(12px, env(safe-area-inset-right, 0px)) max(2rem, env(safe-area-inset-bottom, 0px))
    max(12px, env(safe-area-inset-left, 0px));
  box-sizing: border-box;
}

.pub-card {
  --pub-theme: #4f46e5;
  border-radius: 22px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 22px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  max-width: min(400px, 100%);
  margin-inline: auto;
}

.pub-banner {
  min-height: 128px;
  height: clamp(128px, 32vw, 148px);
  overflow: hidden;
  background: linear-gradient(120deg, #6366f1, #8b5cf6);
}

.pub-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pub-card-inner {
  padding: 0 clamp(1rem, 4vw, 1.25rem) clamp(1.25rem, 4vw, 1.5rem);
}

.pub-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: start;
  margin-top: -36px;
}

.pub-logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  background: #fff;
}

.pub-logo-fallback {
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--pub-theme);
  background: #eef2ff;
}

.pub-headlines {
  min-width: 0;
  padding-top: 38px;
}

.pub-name {
  font-size: clamp(1.25rem, 4.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}

.pub-title {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pub-theme);
}

.pub-company {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

.pub-dept,
.pub-headline {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.35;
}

.pub-acc {
  margin: 0.35rem 0 0;
  font-size: 0.7rem;
  color: #64748b;
  line-height: 1.4;
}

.pub-profile-wrap {
  padding-top: 38px;
}

.pub-profile {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  display: block;
}

.pub-profile-fallback {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: var(--pub-theme);
  border: 3px solid #fff;
}

.pub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.85rem;
  justify-content: flex-start;
}

.pub-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(79, 70, 229, 0.1);
  color: #4338ca;
  border: 1px solid rgba(99, 102, 241, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pub-chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(79, 70, 229, 0.15);
}

.pub-chip--ico {
  min-width: 65px;
  min-height: 65px;
  padding: 0 10px;
}

.pub-chip-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pub-chip-stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
  max-width: 5.5rem;
}
.pub-chip-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
  color: inherit;
  opacity: 0.92;
}
.pub-chip--has-label .pub-chip-svg {
  margin-bottom: 0;
}
.pub-chip-svg svg {
  display: block;
}

.pub-chip-svg img.brand-ico,
.pub-chip-svg svg.label-ico-brand {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
  border-radius: 3px;
}

.label-ico img.brand-ico--grubhub-wordmark,
.pub-chip-svg img.brand-ico--grubhub-wordmark,
.pub-ico-svg img.brand-ico--grubhub-wordmark {
  width: auto;
  max-width: 56px;
  height: 14px;
  object-fit: contain;
}
.pub-chip-svg img.label-ico-brand--mono,
.pub-chip-svg svg.label-ico-brand--mono {
  filter: brightness(0) invert(1);
}

.pub-ico-svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pub-ico-svg svg {
  display: block;
}

.pub-ico-svg img.brand-ico {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 3px;
}

.pub-chip-gap {
  width: 4px;
}

.pub-embed {
  margin-top: 0.85rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.pub-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pub-embed-tiktok {
  aspect-ratio: 9 / 16;
  max-height: 420px;
}

.pub-embed-tiktok--blockquote {
  overflow: visible;
  min-height: 360px;
  aspect-ratio: auto;
  max-height: none;
}

.pub-embed-tiktok--blockquote .tiktok-embed > a {
  color: #f8fafc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pub-embed-tiktok--blockquote .tiktok-embed > a:hover {
  color: #ffffff;
}

.pub-embed-tiktok--blockquote .tiktok-embed {
  margin: 0 auto;
  min-height: 320px;
}

.pub-embed-instagram,
.corp-embed-instagram {
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.pub-carousel {
  margin-top: 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  padding: 8px;
  touch-action: pan-y;
}

.pub-carousel-viewport {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  align-items: center;
}

.pub-carousel-main {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0f172a;
}

.pub-carousel-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pub-carousel[data-gal-shape="square"] .pub-carousel-main {
  border-radius: 6px;
  aspect-ratio: 1 / 1;
}

.pub-carousel[data-gal-shape="circle"] .pub-carousel-main {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  max-width: min(100%, 280px);
  margin-left: auto;
  margin-right: auto;
}

.pub-carousel[data-gal-shape="arch"] .pub-carousel-main {
  aspect-ratio: 4 / 3;
  border-radius: 50% 50% 14px 14px / 26% 26% 14px 14px;
}

.pub-car-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(79, 70, 229, 0.12);
  color: #4338ca;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s ease;
}

.pub-car-btn:hover {
  background: rgba(79, 70, 229, 0.2);
}

.pub-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.pub-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
}

.pub-dot.is-active {
  background: var(--pub-theme);
  transform: scale(1.15);
}

.pub-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.1rem;
}

@media (min-width: 480px) {
  .pub-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pub-sec-title--sub {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted, #5b6474);
  margin: 0 0 0.45rem;
}
.pub-sub-sec {
  margin-top: 0.85rem;
}
.pub-sub-sec:first-of-type {
  margin-top: 0.35rem;
}
.corp-contact-val {
  display: block;
  font-size: 0.78em;
  font-weight: 600;
  opacity: 0.92;
  margin-top: 0.12rem;
}
.pub-form-preview {
  margin-top: 0.75rem;
}
.pub-form-stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.pub-form-lbl {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted, #5b6474);
}
.pub-form-faux-input {
  min-height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(248, 250, 252, 0.9);
}
.pub-form-faux-input--tall {
  min-height: 72px;
}
.pub-form-hint {
  font-size: 0.72rem;
  color: var(--muted, #5b6474);
  margin: 0.35rem 0 0;
}
.pub-sec-title {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.pub-rows {
  display: grid;
  gap: 10px;
}

.pub-rows--pay .pub-row {
  min-height: 48px;
  padding: 0 14px;
  background: linear-gradient(165deg, #fafbff 0%, #f1f5f9 100%);
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.pub-rows--pay .pub-row:hover {
  border-color: rgba(99, 102, 241, 0.45);
  box-shadow: 0 6px 18px rgba(79, 70, 229, 0.12);
}

.pub-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.28);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pub-row:hover:not(.is-muted) {
  background: #fff;
  border-color: rgba(99, 102, 241, 0.35);
}

.pub-row.is-muted {
  opacity: 0.45;
  pointer-events: none;
}

.pub-ico {
  width: 65px;
  height: 65px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: var(--pub-theme);
  color: #fff;
  flex-shrink: 0;
}

.pub-row-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pub-row-main {
  font-size: 0.8125rem;
  font-weight: 600;
  word-break: break-word;
}

.pub-row-sub {
  font-size: 0.65rem;
  color: #64748b;
}

.pub-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pub-actions button,
.pub-actions a {
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8125rem;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: #fff;
  color: #312e81;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pub-actions .pub-btn-primary {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.pub-qr-card {
  margin-top: 1.25rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.pub-qr-card .qr-box {
  margin: 0.5rem auto 0;
  display: grid;
  place-items: center;
}

.pub-url {
  font-size: 0.75rem;
  color: #64748b;
  word-break: break-all;
  margin: 0.5rem 0 0;
  line-height: 1.4;
}

/* —— Template #1 (corporate) — vertical black / accent — card.html —— */
.pub-card.pub-card--corporate {
  max-width: 420px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pub-card.pub-card--corporate .corp-vertical {
  --corp-accent: #e31c1c;
  font-family: "Montserrat", Inter, system-ui, sans-serif;
  background-color: #000;
  background-image:
    radial-gradient(circle at 14% 10%, rgba(227, 28, 28, 0.55) 0%, transparent 42%),
    radial-gradient(circle at 88% 90%, rgba(227, 28, 28, 0.48) 0%, transparent 44%),
    radial-gradient(rgba(227, 28, 28, 0.12) 1.2px, transparent 1.2px);
  background-size: 100% 100%, 100% 100%, 12px 12px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.15),
    0 24px 48px rgba(0, 0, 0, 0.35);
}

.pub-card.pub-card--corporate .corp-pub-hero {
  height: clamp(88px, 26vw, 112px);
  min-height: 88px;
  overflow: hidden;
}

.pub-card.pub-card--corporate .corp-pub-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pub-card.pub-card--corporate .corp-header {
  padding: 1.35rem 1rem 0.35rem;
}

.pub-card.pub-card--corporate .corp-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pub-card.pub-card--corporate .corp-brand-mark {
  width: 48px;
  height: 48px;
  background: var(--corp-accent);
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.35);
}

.pub-card.pub-card--corporate .corp-brand-mark::after {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #0a0a0a;
}

.pub-card.pub-card--corporate .corp-brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.pub-card.pub-card--corporate .corp-brand-text {
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.02em;
  text-align: left;
}

.pub-card.pub-card--corporate .corp-identity-name {
  margin: 0.85rem 1rem 0;
  text-align: center;
  font-size: clamp(1.2rem, 4.5vw, 1.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--corp-accent);
  line-height: 1.15;
}

.pub-card.pub-card--corporate .corp-identity-title {
  margin: 0.45rem 1rem 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.pub-card.pub-card--corporate .corp-identity-headline {
  margin: 0.35rem 1rem 0;
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
}

.pub-card.pub-card--corporate .corp-identity-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0.5rem 1rem 0.15rem;
}

.pub-card.pub-card--corporate .corp-identity-text {
  width: 100%;
}

.pub-card.pub-card--corporate .corp-profile-photo {
  display: block;
  max-width: 100%;
}

.pub-card.pub-card--corporate .corp-profile-fallback {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(145deg, rgba(227, 28, 28, 0.5), rgba(10, 10, 10, 0.85));
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.pub-card.pub-card--corporate .corp-identity-text .corp-identity-name {
  margin: 0;
  padding: 0 0.75rem;
}

.pub-card.pub-card--corporate .corp-identity-text .corp-identity-title {
  margin: 0.45rem 0 0;
  padding: 0 0.75rem;
}

.pub-card.pub-card--corporate .corp-identity-text .corp-identity-headline {
  margin: 0.35rem 0 0;
  padding: 0 0.75rem;
}

.pub-card.pub-card--corporate .corp-contact-ico--svg {
  line-height: 0;
}

.pub-card.pub-card--corporate .corp-contact-ico--svg svg {
  display: block;
}

.pub-card.pub-card--corporate .corp-rule {
  height: 2px;
  margin: 1rem 1.25rem 0;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    var(--corp-accent) 0%,
    var(--corp-accent) 26%,
    rgba(255, 255, 255, 0.28) 26%,
    rgba(255, 255, 255, 0.28) 100%
  );
}

.pub-card.pub-card--corporate .corp-contacts {
  margin: 1rem 1rem 0;
  display: grid;
  gap: 10px;
}

.pub-card.pub-card--corporate .corp-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  min-height: 48px;
  padding: 0 6px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.pub-card.pub-card--corporate .corp-contact-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.pub-card.pub-card--corporate .corp-contact-row--muted {
  pointer-events: none;
  opacity: 0.45;
}

.pub-card.pub-card--corporate .corp-contact-ico {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--corp-accent);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  color: #fff;
  font-weight: 700;
}

.pub-card.pub-card--corporate .corp-contact-text {
  font-size: 0.82rem;
  font-weight: 600;
  word-break: break-word;
  line-height: 1.35;
}

.pub-card.pub-card--corporate .corp-chip-row {
  margin: 1rem 0.85rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.pub-card.pub-card--corporate .corp-chip-row .pub-chip {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.pub-card.pub-card--corporate .corp-chip-gap {
  display: inline-block;
  width: 4px;
}

.pub-card.pub-card--corporate .corp-embed {
  margin: 1rem 1rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 16 / 9;
  max-height: 200px;
  background: #0a0a0a;
}

.pub-card.pub-card--corporate .corp-embed-tiktok {
  margin: 1rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 9 / 16;
  max-height: 220px;
  max-width: 180px;
  background: #0a0a0a;
}

.pub-card.pub-card--corporate .corp-embed-facebook {
  margin: 1rem 1rem 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  aspect-ratio: 16 / 9;
  max-height: 240px;
  background: #0a0a0a;
}

.pub-card.pub-card--corporate .corp-embed iframe,
.pub-card.pub-card--corporate .corp-embed-tiktok iframe,
.pub-card.pub-card--corporate .corp-embed-facebook iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pub-card.pub-card--corporate .corp-embed-tiktok--blockquote .tiktok-embed > a {
  color: #f8fafc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pub-card.pub-card--corporate .pub-carousel {
  margin: 1rem 0.75rem 0;
}

.pub-card.pub-card--corporate .pub-carousel-viewport {
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.pub-card.pub-card--corporate .pub-carousel[data-gal-shape="circle"] .pub-carousel-main {
  max-width: min(100%, 220px);
}

.pub-card.pub-card--corporate .corp-loan-cta-wrap,
.bc-card.bc-t-corporate .corp-loan-cta-wrap {
  margin: 1rem 0.75rem 0;
  display: flex;
  justify-content: center;
}

.pub-card.pub-card--corporate .corp-loan-cta,
.bc-card.bc-t-corporate .corp-loan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  padding: 0.72rem 1.1rem;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--corp-accent, #c41e3a), color-mix(in srgb, var(--corp-accent, #c41e3a) 78%, #000));
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
  touch-action: manipulation;
  box-sizing: border-box;
}

.pub-card.pub-card--corporate .corp-loan-cta:hover,
.bc-card.bc-t-corporate .corp-loan-cta:hover {
  opacity: 0.94;
}

.pub-card.pub-card--teal .teal-loan-cta-wrap,
.bc-card.bc-t-teal .teal-loan-cta-wrap {
  margin: 0.85rem 0.65rem 0;
  display: flex;
  justify-content: center;
}

.pub-card.pub-card--teal .teal-loan-cta,
.bc-card.bc-t-teal .teal-loan-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background: linear-gradient(180deg, var(--teal-accent, #0099ae), var(--teal-accent-dark, #007a8b));
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.14);
  touch-action: manipulation;
  box-sizing: border-box;
}

.pub-card.pub-card--teal .teal-loan-cta:hover,
.bc-card.bc-t-teal .teal-loan-cta:hover {
  opacity: 0.94;
}

/* —— Teal sidebar portrait template — card.html + builder —— */
.pub-card.pub-card--teal {
  max-width: 420px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.pub-card.pub-card--teal .teal-sb-card {
  --teal-main: #0099ae;
  --teal-dark: #007a8b;
  --teal-text: #333;
  --teal-muted: #666;
  display: flex;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  min-height: 520px;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  font-family: "Segoe UI", var(--font, system-ui), sans-serif;
  color: var(--teal-text);
}

.pub-card.pub-card--teal .teal-sb-sidebar {
  width: 60px;
  flex-shrink: 0;
  min-height: 100%;
  background-color: var(--teal-main);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.pub-card.pub-card--teal .teal-sb-sidebar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  background-color: var(--teal-dark);
  z-index: 1;
}

.pub-card.pub-card--teal .teal-sb-sidebar::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 130%;
  min-width: 86px;
  height: 30px;
  margin-top: -15px;
  background: #fff;
  transform: translateX(-50%) rotate(22deg);
  transform-origin: center center;
  z-index: 3;
  pointer-events: none;
}

.pub-card.pub-card--teal .teal-sb-main {
  flex: 1;
  padding: 28px 22px 20px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  z-index: 1;
}

.pub-card.pub-card--teal .teal-sb-logo-section {
  text-align: center;
  margin-bottom: 22px;
}

.pub-card.pub-card--teal .teal-sb-logo-img {
  width: 40px;
  height: 45px;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 70%, 0% 100%);
}

.pub-card.pub-card--teal .teal-sb-logo-fallback {
  width: 40px;
  height: 45px;
  background-color: var(--teal-main);
  margin: 0 auto 10px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 70%, 0% 100%);
}

.pub-card.pub-card--teal .teal-sb-company-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.pub-card.pub-card--teal .teal-sb-slogan {
  margin-top: 6px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-muted);
}

.pub-card.pub-card--teal .teal-sb-profile-header {
  margin-bottom: 4px;
}

.pub-card.pub-card--teal .teal-sb-profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.pub-card.pub-card--teal .teal-sb-profile-pic {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--teal-main);
  object-fit: cover;
  flex-shrink: 0;
  background: #eee;
}

.pub-card.pub-card--teal .teal-sb-profile-fallback {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 2px solid var(--teal-main);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal-main);
  background: #f1f5f9;
}

.pub-card.pub-card--teal .teal-sb-name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

.pub-card.pub-card--teal .teal-sb-job-title {
  margin: 4px 0 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--teal-muted);
}

.pub-card.pub-card--teal .teal-sb-separator {
  width: 100%;
  height: 2px;
  background-color: var(--teal-main);
  margin-bottom: 18px;
}

.pub-card.pub-card--teal .teal-sb-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pub-card.pub-card--teal .teal-sb-info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  position: relative;
  border-radius: 6px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.pub-card.pub-card--teal .teal-sb-info-row--link:hover {
  background: rgba(0, 153, 174, 0.06);
}

.pub-card.pub-card--teal .teal-sb-info-row:focus-visible {
  outline: 2px solid var(--teal-main);
  outline-offset: 2px;
}

.pub-card.pub-card--teal .teal-sb-info-row--muted {
  pointer-events: none;
  opacity: 0.5;
}

.pub-card.pub-card--teal .teal-sb-icon-box {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
  background-color: var(--teal-main);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 14px;
}

.pub-card.pub-card--teal .teal-sb-icon-box svg {
  display: block;
}

.pub-card.pub-card--teal .teal-sb-row-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 12px;
  line-height: 1.35;
  min-width: 0;
}

.pub-card.pub-card--teal .teal-sb-row-label {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--teal-main);
}

.pub-card.pub-card--teal .teal-sb-row-value {
  color: var(--teal-text);
  word-break: break-word;
}

.pub-card.pub-card--teal .teal-sb-info-row::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 3px;
  background-color: var(--teal-main);
  opacity: 0.35;
  pointer-events: none;
}

.pub-card.pub-card--teal .teal-sb-social-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pub-card.pub-card--teal .teal-sb-social {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--teal-main);
  border: 1.5px solid var(--teal-main);
  border-radius: 999px;
  padding: 6px 12px 6px 8px;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.pub-card.pub-card--teal .teal-sb-social:hover {
  background-color: var(--teal-main);
  color: #fff;
}

.pub-card.pub-card--teal .teal-sb-social:focus-visible {
  outline: 2px solid var(--teal-dark);
  outline-offset: 2px;
}

.pub-card.pub-card--teal .teal-sb-social-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pub-card.pub-card--teal .teal-sb-social-ico svg {
  display: block;
}

.pub-card.pub-card--teal .teal-sb-footer {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 12px;
  padding-top: 16px;
}

.pub-card.pub-card--teal .teal-sb-footer.teal-sb-footer--with-hosted {
  align-items: stretch;
}

.pub-card.pub-card--teal .teal-sb-hosted {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0.75rem 1rem 0.95rem;
  background: #f1f5f9;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
}

.pub-card.pub-card--teal .teal-sb-hosted .tpl-footer-brand {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pub-card.pub-card--teal .teal-sb-hosted .tpl-footer-brand__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.pub-card.pub-card--teal .teal-sb-hosted .tpl-footer-brand__tagline {
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.35rem;
}

.pub-card.pub-card--teal .teal-sb-hosted .tpl-footer-brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.pub-card.pub-card--teal .teal-sb-hosted .tpl-footer__logo {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.corp-hosted-footer {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem 1rem;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  background: #f1f5f9;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.corp-hosted-footer .tpl-footer-brand {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.corp-hosted-footer .tpl-footer-brand__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  box-sizing: border-box;
}

.corp-hosted-footer .tpl-footer-brand__tagline {
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 0.35rem;
}

.corp-hosted-footer .tpl-footer-brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
}

.corp-hosted-footer .tpl-footer__logo {
  height: 28px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.pub-card.pub-card--teal .teal-sb-qr {
  width: 75px;
  height: 75px;
  border: 1px solid #ddd;
  padding: 5px;
  background: #fff;
  box-sizing: border-box;
}

.pub-card.pub-card--teal .teal-sb-qr img {
  width: 100%;
  height: auto;
  display: block;
}

.pub-card.pub-card--teal .teal-sb-qr--placeholder {
  display: grid;
  place-items: center;
  background: #f8fafc;
}

.pub-card.pub-card--teal .teal-sb-qr-ph-inner {
  width: 36px;
  height: 36px;
  border: 2px dashed rgba(0, 153, 174, 0.35);
  border-radius: 4px;
}

.pub-card.pub-card--teal .pub-sub-sec {
  margin-top: 1rem;
}

.pub-card.pub-card--teal .pub-sec-title--sub {
  color: var(--teal-text);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.pub-card.pub-card--teal .corp-embed {
  margin: 0.5rem 0 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
  max-height: 200px;
  background: #0a0a0a;
}

.pub-card.pub-card--teal .corp-embed-tiktok {
  margin: 0.5rem auto 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  aspect-ratio: 9 / 16;
  max-height: 220px;
  max-width: 180px;
  background: #0a0a0a;
}

.pub-card.pub-card--teal .corp-embed-facebook {
  margin: 0.5rem 0 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 9;
  max-height: 240px;
  background: #0a0a0a;
}

.pub-card.pub-card--teal .corp-embed iframe,
.pub-card.pub-card--teal .corp-embed-tiktok iframe,
.pub-card.pub-card--teal .corp-embed-facebook iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.pub-card.pub-card--teal .corp-embed-tiktok--blockquote .tiktok-embed > a {
  color: #f8fafc;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pub-card.pub-card--teal .pub-carousel {
  margin: 0.5rem 0 0;
}

.pub-card.pub-card--teal .pub-form-preview {
  margin-top: 0.75rem;
}

@media (max-width: 400px) {
  .pub-card.pub-card--teal .teal-sb-card {
    max-width: 100%;
    min-height: 0;
  }

  .pub-card.pub-card--teal .teal-sb-main {
    padding: 22px 16px 16px;
  }
}

/* Contact action links — coupon modal + button rows */
.bc-coupon-modal[hidden] {
  display: none !important;
}
.bc-coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.bc-coupon-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.bc-coupon-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 22rem);
  padding: 1.25rem 1.35rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
}
.bc-coupon-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
}
.bc-coupon-modal__title {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.bc-coupon-modal__hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #64748b;
}
.bc-coupon-modal__code-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.bc-coupon-modal__code {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: #f1f5f9;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  word-break: break-all;
}
.bc-coupon-modal__copy {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: #4f46e5;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
.bc-coupon-modal__copy:hover {
  background: #4338ca;
}
.bc-coupon-modal__status {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: #16a34a;
  min-height: 1.25em;
}
.pub-row--coupon,
.pub-row.pub-row--coupon {
  width: 100%;
  border: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.pub-row--coupon:focus-visible {
  outline: 2px solid var(--pub-theme, #4f46e5);
  outline-offset: 2px;
}
.corp-contact-row--coupon .corp-contact-row__btn {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
