/* (c) 2026 Sentys Inc. All rights reserved. */


.hero-section--customer-quote .hero-subtitle {
  display: block;
  font-family: var(--font-body, 'Poppins', sans-serif);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
  margin: 14px 0 0;
}

.customer-quote-admin {
  max-width: 760px;
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.customer-quote-admin__notice {
  background: #fff8e1;
  border: 1px solid #f0c945;
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #4a3500;
  margin: 0 0 32px;
  line-height: 1.5;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.customer-quote-admin__notice-text {
  flex: 1 1 320px;
}
.customer-quote-admin__notice-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.customer-quote-admin__notice code {
  background: rgba(0, 0, 0, 0.08);
  padding: 1px 6px;
  border-radius: 3px;
  font-size: 0.85em;
}
.cqa-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.cqa-btn--primary {
  background: #1a1a19;
  color: #fff;
  border: 1px solid #1a1a19;
}
.cqa-btn--primary:hover {
  background: #000;
}
.cqa-btn--ghost {
  background: transparent;
  color: #4a3500;
  border: 1px solid rgba(74, 53, 0, 0.4);
}
.cqa-btn--ghost:hover {
  border-color: #4a3500;
  background: rgba(74, 53, 0, 0.05);
}

.customer-quote-admin__quote {
  font-family: 'Charter', 'Iowan Old Style', 'Georgia', serif;
  font-size: clamp(1.4rem, 2.4vw, 1.875rem);
  line-height: 1.45;
  color: #1a1a19;
  border-left: 3px solid #B0D237;
  padding: 0 0 0 24px;
  margin: 0 0 40px;
  font-weight: 400;
}

.customer-quote-admin__meta {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 24px;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid #eee;
  font-size: 0.95rem;
}
.customer-quote-admin__meta dt {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  color: #707070;
  align-self: center;
}
.customer-quote-admin__meta dd {
  margin: 0;
  color: #1a1a19;
}
