/* ============================================================
 * calc-security-deposit.css
 *
 * Page-specific styles for /Calcs/security-deposit-calculator/.
 * Loaded with /shared/firm.css and (when present) cta-calc-result.css.
 * Designed to be drop-in for the vanilla JS rewrite of the React calc.
 * No em dashes, no hardcoded design-system colors (use vars from firm.css).
 * ============================================================ */

:root {
  --sdc-primary: #2563eb;
  --sdc-primary-dark: #1d4ed8;
  --sdc-success: #10b981;
  --sdc-warning: #f59e0b;
  --sdc-danger: #ef4444;
  --sdc-text: #1a1a2e;
  --sdc-text-secondary: #6b7280;
  --sdc-text-muted: #9ca3af;
  --sdc-bg: #f6f8fa;
  --sdc-card: #ffffff;
  --sdc-border: #e5e7eb;
  --sdc-radius-sm: 6px;
  --sdc-radius-md: 8px;
  --sdc-radius-lg: 12px;
}

/* ---------- Calcs nav bar ---------- */
.calcs-nav {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
  padding: 10px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.calcs-brand {
  display: flex; align-items: center; gap: 8px;
  color: #fff; text-decoration: none; font-weight: 700;
  font-size: 16px; white-space: nowrap;
}
.calcs-brand:hover { opacity: 0.9; }
.calcs-links {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: flex-end;
}
.calcs-links a {
  color: #fff; text-decoration: none; font-size: 12px; font-weight: 500;
  padding: 5px 10px; background: rgba(255, 255, 255, 0.15);
  border-radius: 4px; transition: background 0.2s; white-space: nowrap;
}
.calcs-links a:hover { background: rgba(255, 255, 255, 0.25); }
.calcs-links a.active { background: #fff; color: #1e40af; }
.calcs-divider {
  width: 1px; height: 16px;
  background: rgba(255, 255, 255, 0.3); margin: 0 4px;
}

/* ---------- Page header ---------- */
.page-header {
  background: linear-gradient(135deg, #1a1a2e 0%, #1e293b 50%, #312e81 100%);
  color: #fff; padding: 32px 24px; text-align: center;
}
.page-header h1 { font-size: 28px; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.page-header .subtitle {
  font-size: 16px; opacity: 0.9; margin: 0 auto 16px;
  max-width: 700px;
}
.header-meta {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; font-size: 13px; opacity: 0.85;
}
.header-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Calculator section ---------- */
.calculator-section { background: var(--sdc-bg); padding: 32px 24px; }
.calculator-wrapper { max-width: 1100px; margin: 0 auto; }
.main-content {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px;
  background: var(--sdc-card); border-radius: var(--sdc-radius-lg);
  overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.input-panel { padding: 24px; border-right: 1px solid var(--sdc-border); }
.preview-panel { padding: 24px; background: #fafbfc; }

/* ---------- Input tabs ---------- */
.input-tabs {
  display: flex; gap: 4px; margin-bottom: 20px;
  border-bottom: 1px solid var(--sdc-border);
}
.input-tab-btn {
  background: transparent; border: 0;
  padding: 10px 14px; font-size: 13px; font-weight: 600;
  color: var(--sdc-text-secondary); cursor: pointer;
  border-bottom: 2px solid transparent; min-height: 44px;
  font-family: inherit;
}
.input-tab-btn:hover { color: var(--sdc-primary); }
.input-tab-btn.active {
  color: var(--sdc-primary);
  border-bottom-color: var(--sdc-primary);
}
.tab-panel-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; color: var(--sdc-text); }
.tab-panel-desc { font-size: 13px; color: var(--sdc-text-secondary); margin-bottom: 16px; }

/* ---------- Form groups ---------- */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500; color: var(--sdc-text); margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%; padding: 10px 12px;
  font-size: 16px; /* iOS zoom prevention */
  font-family: inherit;
  border: 1px solid var(--sdc-border); border-radius: var(--sdc-radius-sm);
  background: #fff; color: var(--sdc-text);
  transition: border-color .15s, box-shadow .15s;
  min-height: 44px; box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus {
  outline: none; border-color: var(--sdc-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.help-text { display: block; font-size: 12px; color: var(--sdc-text-muted); margin-top: 4px; }

/* ---------- Inline help tip ---------- */
.help-tip-wrapper { position: relative; display: inline-flex; }
.help-tip-btn {
  width: 18px; height: 18px; min-height: 18px;
  border-radius: 50%; border: 0;
  background: var(--sdc-primary); color: #fff;
  font-size: 11px; font-weight: 700; cursor: help; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
}
.help-tip-popup {
  position: absolute; bottom: calc(100% + 6px); left: 50%;
  transform: translateX(-50%); z-index: 100;
  width: 240px; padding: 8px 12px;
  background: #1a1a2e; color: #fff;
  border-radius: 6px; font-size: 12px; font-weight: 400;
  line-height: 1.4; box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.help-tip-popup::after {
  content: ""; position: absolute; bottom: -5px; left: 50%;
  transform: translateX(-50%); width: 10px; height: 10px;
  background: #1a1a2e; clip-path: polygon(0 0, 100% 0, 50% 100%);
}

/* ---------- Results panel ---------- */
.results-header { text-align: center; margin-bottom: 18px; }
.results-header h2 { font-size: 16px; color: var(--sdc-text-secondary); font-weight: 600; margin-bottom: 6px; }
.big-result { font-size: 36px; font-weight: 800; color: var(--sdc-primary); line-height: 1.1; }
.result-subtitle { font-size: 13px; color: var(--sdc-text-secondary); margin-top: 4px; }

.results-body { display: block; }
.results-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px;
}
.result-card {
  background: #fff; border: 1px solid var(--sdc-border);
  border-radius: var(--sdc-radius-sm); padding: 12px;
}
.result-card.success { background: #dcfce7; border-color: #86efac; }
.result-card.warning { background: #fef3c7; border-color: #fcd34d; }
.result-card.danger  { background: #fee2e2; border-color: #fca5a5; }
.result-card.info    { background: #dbeafe; border-color: #93c5fd; }
.result-card.full-width { grid-column: span 2; }
.result-card-label { font-size: 11px; color: var(--sdc-text-secondary); text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 4px; font-weight: 600; }
.result-card-value { font-size: 18px; font-weight: 700; color: var(--sdc-text); }
.result-card.success .result-card-value { color: var(--sdc-success); }
.result-card.warning .result-card-value { color: #b45309; }
.result-card.danger .result-card-value  { color: var(--sdc-danger); }
.result-card.info .result-card-value    { color: var(--sdc-primary); }

.breakdown-section {
  background: #fff; border: 1px solid var(--sdc-border);
  border-radius: var(--sdc-radius-sm); padding: 14px;
  margin-bottom: 14px;
}
.breakdown-section h4 {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--sdc-text);
  margin-bottom: 10px; padding-bottom: 8px;
  border-bottom: 1px solid var(--sdc-border);
}
.breakdown-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 6px 0; font-size: 13px;
}
.breakdown-label { color: var(--sdc-text-secondary); }
.breakdown-value { font-weight: 600; color: var(--sdc-text); }
.breakdown-row.total { border-top: 1px solid var(--sdc-border); margin-top: 4px; padding-top: 10px; font-size: 14px; }
.breakdown-row.total .breakdown-value { color: var(--sdc-primary); font-weight: 800; }

.state-info-box {
  background: #f1f5f9; border-radius: var(--sdc-radius-sm);
  padding: 12px 14px; margin-top: 12px; font-size: 13px;
}
.state-info-box h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--sdc-text); }
.state-info-box p { margin: 0 0 4px; color: var(--sdc-text-secondary); }
.state-info-box ul { margin: 6px 0 0 18px; color: var(--sdc-text-secondary); }
.state-info-box li { margin-bottom: 3px; }

.warning-box {
  background: #fef3c7; border-left: 4px solid var(--sdc-warning);
  padding: 12px 14px; border-radius: var(--sdc-radius-sm); margin-bottom: 12px;
}
.warning-box h4 { color: #92400e; font-size: 13px; margin-bottom: 4px; }
.warning-box p { color: #78350f; font-size: 13px; margin: 0; }

.danger-box {
  background: #fee2e2; border-left: 4px solid var(--sdc-danger);
  padding: 12px 14px; border-radius: var(--sdc-radius-sm); margin-bottom: 12px;
}
.danger-box h4 { color: #991b1b; font-size: 13px; margin-bottom: 4px; }
.danger-box p { color: #7f1d1d; font-size: 13px; margin: 0 0 4px; }

.timeline-section { display: flex; flex-direction: column; gap: 10px; }
.timeline-item { display: flex; gap: 10px; align-items: flex-start; }
.timeline-icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
  background: #e0f2fe; color: var(--sdc-primary);
  display: flex; align-items: center; justify-content: center;
}
.timeline-icon.warning { background: #fef3c7; color: #b45309; }
.timeline-icon.danger { background: #fee2e2; color: var(--sdc-danger); }
.timeline-content { flex: 1; }
.timeline-title { font-size: 13px; font-weight: 600; color: var(--sdc-text); }
.timeline-date { font-size: 12px; color: var(--sdc-text-secondary); margin-top: 2px; }

.pdf-export-btn {
  display: inline-flex; align-items: center; gap: 8px;
  width: 100%; justify-content: center;
  padding: 12px 24px; font-size: 14px; font-weight: 600; color: #fff;
  background: var(--sdc-primary); border: 0; border-radius: var(--sdc-radius-sm);
  cursor: pointer; min-height: 44px; margin-top: 8px;
  font-family: inherit;
}
.pdf-export-btn:hover { background: var(--sdc-primary-dark); }

.condition-stack { border: 1px solid var(--sdc-border); border-radius: var(--sdc-radius-sm); padding: 12px; background: #fafafa; }
.condition-stack > label { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-weight: 400; font-size: 13px; line-height: 1.4; }
.condition-stack > label:last-child { margin-bottom: 0; }
.condition-stack input[type=checkbox] { margin-top: 3px; width: auto; min-height: auto; }
.condition-stack .stack-title { font-weight: 600; font-size: 13px; margin-bottom: 8px; display: block; }
.condition-stack .stack-help { font-size: 12px; color: var(--sdc-text-secondary); margin: 0 0 10px; }

.inline-check {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; font-size: 13px;
}
.inline-check input[type=checkbox] { width: auto; min-height: auto; }

/* ---------- Content tabs (Overview / FAQ / etc.) ---------- */
.content-tabs-section { background: #fff; padding: 24px; border-top: 1px solid var(--sdc-border); }
.content-tabs-nav {
  display: flex; gap: 4px; flex-wrap: wrap;
  border-bottom: 1px solid var(--sdc-border); margin-bottom: 20px;
  max-width: 1100px; margin-left: auto; margin-right: auto;
}
.content-tab-btn {
  background: transparent; border: 0;
  padding: 10px 14px; font-size: 13px; font-weight: 600;
  color: var(--sdc-text-secondary); cursor: pointer;
  border-bottom: 2px solid transparent; min-height: 44px;
  font-family: inherit;
}
.content-tab-btn:hover { color: var(--sdc-primary); }
.content-tab-btn.active { color: var(--sdc-primary); border-bottom-color: var(--sdc-primary); }
.content-tab-panel { display: none; max-width: 1100px; margin: 0 auto; font-size: 14px; color: var(--sdc-text); }
.content-tab-panel.active { display: block; }
.content-tab-panel h2 { font-size: 22px; margin-bottom: 12px; }
.content-tab-panel h3 { font-size: 16px; margin: 16px 0 8px; }
.content-tab-panel h4 { font-size: 14px; margin: 12px 0 6px; }
.content-tab-panel p { margin-bottom: 10px; line-height: 1.6; }
.content-tab-panel ul { margin: 8px 0 12px 22px; }
.content-tab-panel li { margin-bottom: 4px; line-height: 1.55; }

/* ---------- Mobile accordion (alternative to tabs) ---------- */
.mobile-accordion { display: none; max-width: 1100px; margin: 0 auto; }
.accordion-item { border-bottom: 1px solid var(--sdc-border); }
.accordion-trigger {
  display: flex; align-items: center; gap: 12px;
  width: 100%; padding: 14px 4px;
  background: transparent; border: 0; cursor: pointer; text-align: left;
  min-height: 44px; font-family: inherit;
}
.accordion-trigger .accordion-icon,
.accordion-trigger .accordion-chevron { flex-shrink: 0; width: 20px; height: 20px; color: var(--sdc-primary); }
.accordion-header { flex: 1; }
.accordion-header h3 { font-size: 15px; font-weight: 700; margin: 0; }
.accordion-header .accordion-preview { font-size: 12px; color: var(--sdc-text-secondary); margin: 2px 0 0; }
.accordion-content { padding: 4px 4px 14px; font-size: 14px; color: var(--sdc-text); }
.accordion-content h4 { font-size: 13px; margin: 10px 0 4px; }
.accordion-content p { margin-bottom: 8px; line-height: 1.55; }

/* ---------- FAQ section ---------- */
.faq-trigger {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 12px 0; border: 0; background: transparent;
  cursor: pointer; text-align: left; font-family: inherit;
  font-size: 14px; font-weight: 600; color: var(--sdc-text);
  min-height: 44px;
}
.faq-answer { display: none; padding: 0 0 14px; font-size: 13px; line-height: 1.6; color: var(--sdc-text-secondary); }
.faq-answer.open { display: block; }

/* ---------- Mobile responsive ---------- */
@media (max-width: 900px) {
  .main-content { grid-template-columns: 1fr; }
  .input-panel { border-right: 0; border-bottom: 1px solid var(--sdc-border); }
}

@media (max-width: 600px) {
  .calculator-section { padding: 16px 12px; }
  .page-header { padding: 22px 16px; }
  .page-header h1 { font-size: 22px; }
  .input-panel, .preview-panel { padding: 16px; }
  .results-grid { grid-template-columns: 1fr; }
  .result-card.full-width { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .content-tabs-nav { display: none; }
  .mobile-accordion { display: block; }
  .content-tab-panel { display: none !important; }
  .big-result { font-size: 28px; }
}

/* ---------- Post-result attorney CTA card ---------- */
.attorney-cta-section { max-width: 900px; margin: 24px auto; padding: 0 16px; }
.attorney-cta-card { background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: 14px; padding: 22px 24px; color: #fff; display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; }
@media (max-width: 600px) { .attorney-cta-card { grid-template-columns: 1fr; } }
.attorney-cta-eyebrow { font-size: 13px; color: #22c55e; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 6px; }
.attorney-cta-title { margin: 0 0 6px; font-size: 19px; color: #fff; line-height: 1.3; }
.attorney-cta-body { margin: 0; font-size: 14px; color: #cbd5e1; line-height: 1.5; }
.attorney-cta-buttons { display: flex; flex-direction: column; gap: 8px; flex-shrink: 0; }
.attorney-cta-primary { background: #22c55e; color: #fff; font-weight: 700; font-size: 14px; padding: 11px 22px; border-radius: 8px; border: 0; cursor: pointer; white-space: nowrap; min-height: 44px; font-family: inherit; }
.attorney-cta-secondary { background: rgba(255,255,255,0.1); color: #fff; font-weight: 600; font-size: 13px; padding: 9px 22px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2); cursor: pointer; white-space: nowrap; min-height: 44px; font-family: inherit; }
.attorney-cta-footnote { font-size: 12px; color: #64748b; margin-top: 8px; text-align: center; }

/* ---------- Legacy attorney service + related letter blocks ---------- */
.sdc-attorney-section { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); border-radius: 16px; padding: 40px 32px; margin: 40px auto; max-width: 900px; color: #fff; }
.sdc-attorney-header { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.sdc-attorney-icon { font-size: 28px; }
.sdc-attorney-header h2 { margin: 0 0 4px; font-size: 22px; color: #fff; }
.sdc-attorney-header p { margin: 0; color: #94a3b8; font-size: 15px; }
.sdc-attorney-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.sdc-attorney-card { background: rgba(255,255,255,0.08); border-radius: 10px; padding: 16px; }
.sdc-attorney-card.price-card { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 4px; }
.sdc-attorney-card h4 { font-size: 13px; color: #94a3b8; margin-bottom: 4px; font-weight: 600; }
.sdc-attorney-card ul { margin: 0; padding-left: 18px; font-size: 14px; color: #e2e8f0; line-height: 1.8; }
.sdc-attorney-card .upgrade-note { font-size: 12px; color: #94a3b8; margin-top: 8px; }
.sdc-attorney-price { font-size: 36px; font-weight: 800; color: #22c55e; }
.sdc-attorney-price-sub { font-size: 13px; color: #94a3b8; margin: 4px 0 16px; }
.sdc-attorney-cta-primary { display: inline-block; background: #22c55e; color: #fff; font-weight: 700; font-size: 15px; padding: 12px 28px; border-radius: 8px; text-decoration: none; border: 0; cursor: pointer; min-height: 44px; font-family: inherit; }
.sdc-attorney-cta-secondary { display: inline-block; background: rgba(255,255,255,0.12); color: #fff; font-weight: 600; font-size: 14px; padding: 11px 24px; border-radius: 8px; text-decoration: none; border: 1px solid rgba(255,255,255,0.25); cursor: pointer; margin-top: 8px; min-height: 44px; font-family: inherit; }
.sdc-attorney-attribution { font-size: 12px; color: #64748b; margin-top: 8px; }
.sdc-attorney-footer { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 16px; display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: #94a3b8; }

.sdc-related-letters { background: #f0f9ff; border: 1px solid #bfdbfe; border-radius: 12px; padding: 24px; margin: 32px auto; max-width: 900px; }
.sdc-related-letters h3 { margin: 0 0 12px; font-size: 18px; color: #1e40af; }
.sdc-related-letters p { color: #374151; font-size: 14px; margin: 0 0 16px; }
.sdc-related-letters-list { display: flex; flex-direction: column; gap: 8px; }
.sdc-related-letters-list a { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: #fff; border: 1px solid #e5e7eb; border-radius: 8px; color: #1e40af; font-weight: 500; text-decoration: none; min-height: 44px; }
.sdc-related-letters-list a:hover { background: #eff6ff; }

.related-card-featured { border: 2px solid #2563eb; background: linear-gradient(to bottom, #eff6ff, #fff); }

/* Section consultation */
.consultation-section { max-width: 900px; margin: 32px auto; padding: 24px; background: #f8fafc; border-radius: 12px; }
.consultation-wrapper { max-width: 700px; margin: 0 auto; }
.consultation-wrapper h2 { font-size: 22px; margin-bottom: 10px; }
.consultation-wrapper p { font-size: 14px; line-height: 1.6; color: var(--sdc-text-secondary); margin-bottom: 12px; }
.consultation-cta { display: inline-block; background: #22c55e; color: #fff; font-weight: 700; font-size: 15px; padding: 12px 28px; border-radius: 8px; text-decoration: none; border: 0; cursor: pointer; margin-top: 8px; min-height: 44px; font-family: inherit; }

/* ---------- Pillar tail (bio + FAQ + disclaimer footer block) ---------- */
.pillar-tail { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; max-width: 1100px; margin: 48px auto 0; padding: 0 20px 60px; color: #1a1a2e; }
.pillar-tail * { box-sizing: border-box; }
.pillar-tail h2, .pillar-tail h3 { letter-spacing: -0.02em; }

.pillar-cta { margin: 16px 0 32px; padding: 28px; border-radius: 16px; background: linear-gradient(135deg, #eff6ff 0%, #ede9fe 100%); border: 1px solid #c7d2fe; }
.pillar-cta h3 { font-size: 22px; margin: 0 0 10px; font-weight: 800; }
.pillar-cta p { font-size: 15px; margin: 0 0 14px; line-height: 1.55; }
.pillar-cta .row { display: flex; gap: 10px; flex-wrap: wrap; }
.pillar-cta a.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 10px 20px; border-radius: 10px; font-weight: 700; font-size: 14px; background: #2563eb; color: #fff; text-decoration: none; }
.pillar-cta a.btn.secondary { background: #fff; color: #2563eb; border: 1px solid #2563eb; }
.pillar-cta a.btn:hover { background: #1d4ed8; }
.pillar-cta-footnote { margin-top: 12px; font-size: 12px; color: #64748b; }

.pillar-bio { margin: 24px 0; padding: 20px; background: #fff; border: 1px solid #e5e7eb; border-radius: 14px; display: grid; grid-template-columns: 64px 1fr; gap: 16px; align-items: start; }
.pillar-bio .av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #2563eb, #6366f1); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 22px; }
.pillar-bio .txt { font-size: 14px; color: #475569; line-height: 1.55; }
.pillar-bio .txt b { color: #1a1a2e; }

.pillar-disclaimer { margin: 24px 0; padding: 16px 18px; background: #f1f5f9; border-radius: 10px; font-size: 12px; color: #475569; line-height: 1.5; }

.pillar-faq-wrap { margin: 24px 0; }
.pillar-faq-wrap h3 { font-size: 20px; margin: 0 0 12px; font-weight: 700; }
.pillar-faq-wrap details { margin: 0 0 8px; padding: 12px 14px; background: #fff; border: 1px solid #e5e7eb; border-radius: 10px; }
.pillar-faq-wrap summary { font-weight: 600; cursor: pointer; list-style: none; font-size: 14px; }
.pillar-faq-wrap summary::-webkit-details-marker { display: none; }
.pillar-faq-wrap summary::after { content: ' +'; color: #2563eb; }
.pillar-faq-wrap details[open] summary::after { content: ' -'; }
.pillar-faq-wrap p { margin: 10px 0 0; font-size: 13px; color: #475569; line-height: 1.55; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
