:root {
  color-scheme: light;
  --ink: #17212b;
  --muted: #647180;
  --soft: #eff3f6;
  --line: #d9e1e8;
  --paper: #ffffff;
  --panel: #f8fafb;
  --accent: #0f766e;
  --accent-dark: #115e59;
  --accent-soft: #d9f3ef;
  --warning: #b45309;
  --danger: #b42318;
  --shadow: 0 18px 50px rgba(24, 34, 45, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: #e8eef2;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(15, 23, 42, 0) 42%),
    #e8eef2;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.app-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 24px 18px;
  color: #f9fbfb;
  background: #17212b;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #d9fffa;
  background: #0f766e;
  font-weight: 800;
}

.brand-mark img {
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
}

.brand-mark.has-logo {
  background: #ffffff;
}

.brand strong,
.brand span {
  display: block;
}

.brand span {
  margin-top: 3px;
  color: #aebbc7;
  font-size: 0.82rem;
}

.nav-list {
  display: grid;
  gap: 8px;
  margin-top: 34px;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #dce5ec;
  background: transparent;
  text-align: left;
}

.nav-item:hover,
.nav-item.is-active {
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
}

.workspace {
  min-width: 0;
  padding: 28px;
}

.login-screen {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
}

.login-panel {
  display: grid;
  gap: 18px;
  width: min(440px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.login-brand {
  color: var(--ink);
}

.login-brand span {
  color: var(--muted);
}

.login-error {
  min-height: 20px;
  margin: 0;
  color: var(--danger);
  font-weight: 700;
}

.login-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.login-switch {
  width: max-content;
  margin: 2px auto 0;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 0.82rem;
  text-decoration: underline;
}

.login-switch:hover {
  color: var(--accent-dark);
}

.client-portal {
  min-height: 100vh;
  padding: 24px;
}

.portal-topbar,
.portal-main {
  max-width: 1120px;
  margin: 0 auto;
}

.portal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.portal-main {
  display: grid;
  gap: 18px;
}

.portal-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.portal-hero p {
  margin: 6px 0 0;
  color: var(--muted);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portal-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.portal-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.portal-card strong {
  font-size: 1.1rem;
}

.portal-card p {
  margin: 0;
  color: #4d5b68;
  line-height: 1.4;
  white-space: pre-line;
}

.portal-card.wide {
  min-height: 150px;
}

.portal-logout {
  width: max-content;
  margin-top: 4px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto 24px;
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 1.9rem;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-action {
  display: none;
}

.client-nav {
  display: none;
}

body.client-mode .quote-action,
body.client-mode .client-nav {
  display: inline-flex;
}

body.client-mode .admin-nav {
  display: none;
}

body.admin-mode .client-nav,
body.admin-mode .preview-wrap,
body.admin-mode .quote-action {
  display: none;
}

body.client-mode .admin-only {
  display: none !important;
}

.primary-button,
.secondary-button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 8px;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.primary-button:active,
.secondary-button:active,
.icon-button:active {
  transform: translateY(1px);
}

.primary-button {
  padding: 0 16px;
  border: 1px solid var(--accent);
  color: #ffffff;
  background: var(--accent);
  font-weight: 700;
}

.primary-button:hover {
  background: var(--accent-dark);
}

.secondary-button {
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-weight: 700;
}

.secondary-button:hover,
.icon-button:hover {
  border-color: #b8c5cf;
  background: #f2f6f8;
}

.secondary-button.compact {
  min-height: 36px;
  padding: 0 12px;
}

.icon-button {
  width: 40px;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
}

.icon-button.danger {
  color: var(--danger);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(460px, 0.95fr) minmax(430px, 0.9fr);
  gap: 22px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

.content-grid.preview-hidden {
  grid-template-columns: minmax(0, 1120px);
}

.content-grid.preview-hidden .preview-wrap {
  display: none;
}

.editor,
.preview-wrap {
  min-width: 0;
}

.editor {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.panel {
  display: none;
  padding: 24px;
}

.panel.is-active {
  display: block;
}

.section-heading,
.items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-heading.secondary {
  margin-top: 28px;
}

.section-heading p,
.items-header p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--warning);
  background: #fff3df;
  font-size: 0.78rem;
  font-weight: 800;
}

.status-pill.saved {
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
}

label span {
  color: #4d5b68;
  font-size: 0.82rem;
  font-weight: 700;
}

.span-2 {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  padding: 9px 11px;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.media-field {
  display: grid;
  gap: 8px;
}

.media-field > span {
  color: #4d5b68;
  font-size: 0.82rem;
  font-weight: 700;
}

.upload-box {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 82px;
  padding: 10px;
  border: 1px dashed #b8c5cf;
  border-radius: 8px;
  background: #f8fafb;
  cursor: pointer;
}

.upload-box:hover {
  border-color: var(--accent);
  background: #f3fbfa;
}

.upload-box strong {
  overflow-wrap: anywhere;
}

.upload-preview {
  display: grid;
  place-items: center;
  width: 86px;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background-color: #ffffff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0.78rem;
  font-weight: 800;
}

.upload-preview.signature {
  background-size: 80% auto;
}

.media-remove {
  width: max-content;
}

.selected-client-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f9fa;
}

.selected-client-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.selected-client-card strong {
  display: block;
  font-size: 1rem;
}

.selected-client-card p {
  margin: 5px 0 0;
  color: #4d5b68;
  white-space: pre-line;
}

.client-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: 18px;
  align-items: start;
}

.client-directory {
  display: grid;
  gap: 12px;
}

.client-list {
  display: grid;
  gap: 10px;
}

.client-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  gap: 12px;
  align-items: start;
  min-height: 86px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.client-card-info {
  min-width: 0;
}

.client-card-info strong {
  display: block;
  margin-bottom: 5px;
}

.client-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-bottom: 6px;
  padding: 0 8px;
  border-radius: 999px;
  color: #31524f;
  background: #d9f3ef;
  font-size: 0.76rem;
  font-weight: 800;
}

.client-status.quote-sent {
  color: #7c4a03;
  background: #fff1cf;
}

.client-status.quote-signed {
  color: #14532d;
  background: #d9f8e6;
}

.client-status.work-in-progress {
  color: #244b7a;
  background: #dcecff;
}

.client-status.work-done {
  color: #4b5563;
  background: #e5e7eb;
}

.client-card-info p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.client-actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.client-menu {
  position: absolute;
  z-index: 3;
  top: 44px;
  right: 0;
  min-width: 170px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(24, 34, 45, 0.14);
}

.client-menu button {
  display: block;
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.client-menu button:hover {
  background: #edf5f4;
}

.client-menu button:disabled {
  cursor: not-allowed;
  color: #9aa6b2;
}

.client-menu button:disabled:hover {
  background: transparent;
}

.client-mode-note {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.86rem;
  line-height: 1.35;
}

.client-form {
  display: grid;
  gap: 16px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 18px;
  border: 1px dashed #b8c5cf;
  border-radius: 8px;
  color: var(--muted);
  background: #f8fafb;
  text-align: center;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.stat-tile {
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.stat-tile span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.stat-tile strong {
  font-size: 1.7rem;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, 0.9fr);
  gap: 18px;
  align-items: start;
}

.admin-table-wrap,
.account-form {
  display: grid;
  gap: 14px;
}

.admin-toolbar {
  display: grid;
  gap: 10px;
}

.account-list {
  display: grid;
  gap: 10px;
}

.account-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafb;
}

.account-main {
  min-width: 0;
}

.account-main strong {
  display: block;
  margin-bottom: 6px;
}

.account-main p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 220px;
}

.account-pending {
  color: #7c4a03;
  background: #fff1cf;
}

.account-active {
  color: #14532d;
  background: #d9f8e6;
}

.account-suspended {
  color: #7f1d1d;
  background: #fee2e2;
}

.compact-heading {
  margin-bottom: 0;
}

.items-header {
  margin-top: 28px;
}

.items-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.items-row {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) 74px 105px 86px 108px 42px;
  gap: 8px;
  align-items: center;
  min-width: 650px;
}

.items-head {
  min-height: 28px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.item-line {
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.item-line input,
.item-line select {
  min-height: 38px;
  padding: 7px 9px;
  background: var(--paper);
}

.item-total {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.9rem;
  white-space: nowrap;
}

.totals-panel {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(240px, 0.55fr);
  gap: 18px;
  align-items: start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f9fa;
}

.totals-list {
  display: grid;
  gap: 9px;
}

.totals-list div,
.preview-totals div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.totals-list span,
.preview-totals span {
  color: var(--muted);
}

.grand-total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.preview-wrap {
  position: sticky;
  top: 28px;
}

.preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.preview-toolbar span,
.preview-toolbar strong {
  display: block;
}

.preview-toolbar span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-toolbar strong {
  margin-top: 3px;
}

.quote-preview {
  min-height: 780px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--ink);
}

.quote-logo {
  display: block;
  max-width: 118px;
  max-height: 54px;
  object-fit: contain;
  margin-bottom: 8px;
}

.quote-header p,
.quote-party p,
.preview-notes p {
  margin: 2px 0;
  color: #4d5b68;
  line-height: 1.28;
  white-space: pre-line;
}

.quote-company {
  color: var(--ink) !important;
  font-size: 1.06rem;
  font-weight: 800;
}

.quote-title {
  text-align: right;
}

.quote-title h2 {
  font-size: 1.75rem;
  text-transform: uppercase;
}

.quote-title p {
  margin: 3px 0 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.quote-meta,
.quote-party {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.quote-party {
  grid-template-columns: 1.1fr 0.9fr;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f5f8fa;
}

.quote-meta span,
.quote-party span,
.preview-notes span {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-meta strong,
.quote-party strong {
  display: block;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.preview-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  table-layout: fixed;
}

.preview-table th {
  padding: 8px 7px;
  color: #ffffff;
  background: var(--ink);
  font-size: 0.78rem;
  text-align: left;
}

.preview-table td {
  padding: 8px 7px;
  border-bottom: 1px solid var(--line);
  color: #394653;
  vertical-align: top;
  line-height: 1.3;
}

.preview-table th:nth-child(n+2),
.preview-table td:nth-child(n+2) {
  text-align: right;
}

.preview-table th:first-child,
.preview-table td:first-child {
  width: 40%;
  text-align: left;
}

.preview-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 18px;
  margin-top: 18px;
}

.preview-totals {
  display: grid;
  gap: 9px;
}

.preview-grand {
  margin-top: 7px;
  padding-top: 12px;
  border-top: 2px solid var(--ink);
  font-size: 1.15rem;
}

.quote-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.signature-block {
  display: grid;
  justify-items: end;
  gap: 6px;
  min-width: 180px;
  text-align: right;
}

.quote-signature {
  max-width: 150px;
  max-height: 62px;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 16px;
  }

  .nav-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .preview-wrap {
    position: static;
  }
}

@media (max-width: 720px) {
  .workspace {
    padding: 18px 14px;
  }

  .topbar,
  .section-heading,
  .items-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .primary-button,
  .secondary-button {
    flex: 1 1 150px;
  }

  .nav-list {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .client-layout,
  .admin-stats,
  .admin-layout,
  .portal-grid,
  .totals-panel,
  .quote-meta,
  .quote-party,
  .preview-summary {
    grid-template-columns: 1fr;
  }

  .panel,
  .quote-preview {
    padding: 18px;
  }

  .quote-header {
    grid-template-columns: 1fr;
  }

  .quote-title {
    text-align: left;
  }

  h1 {
    font-size: 1.45rem;
  }

  .preview-table {
    font-size: 0.82rem;
  }

  .preview-table th,
  .preview-table td {
    padding: 9px 6px;
  }

  .account-card {
    grid-template-columns: 1fr;
  }

  .account-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .portal-topbar,
  .portal-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  body {
    background: #ffffff;
  }

  .sidebar,
  .topbar,
  .editor,
  .preview-toolbar {
    display: none !important;
  }

  .app-shell,
  .content-grid,
  .workspace {
    display: block;
    min-height: 0;
    padding: 0;
    margin: 0;
  }

  .preview-wrap {
    position: static;
  }

  .quote-preview {
    font-size: 11px;
    line-height: 1.25;
    min-height: 0;
    width: 100%;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .quote-header {
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 12px;
    padding-bottom: 10px;
  }

  .quote-logo {
    max-width: 92px;
    max-height: 42px;
    margin-bottom: 5px;
  }

  .quote-company {
    font-size: 14px;
  }

  .quote-title h2 {
    font-size: 22px;
  }

  .quote-header p,
  .quote-party p,
  .preview-notes p {
    margin: 1px 0;
    line-height: 1.2;
  }

  .quote-meta,
  .quote-party {
    gap: 6px;
    margin-top: 8px;
  }

  .quote-party {
    padding: 7px 9px;
  }

  .quote-meta span,
  .quote-party span,
  .preview-notes span {
    margin-bottom: 2px;
    font-size: 9px;
  }

  .preview-table {
    margin-top: 12px;
  }

  .preview-table th,
  .preview-table td {
    padding: 5px 6px;
    font-size: 10px;
  }

  .preview-summary {
    grid-template-columns: minmax(0, 1fr) 230px;
    gap: 14px;
    margin-top: 12px;
  }

  .preview-totals {
    gap: 5px;
  }

  .preview-grand {
    margin-top: 4px;
    padding-top: 7px;
  }

  .quote-footer {
    margin-top: 20px;
    padding-top: 8px;
  }

  .quote-signature {
    max-width: 120px;
    max-height: 46px;
  }
}
