/* ═══════════════════════════════════════════════════════════
   Salary to Hourly Calculator — CSS
   ID root:  #salary-to-hourly-calculator
   JS-refs:  .sth-calc-btn .sth-salary-amount .sth-salary-type
             .sth-working-hours .sth-salary-basis
             .sth-result-container .sth-hourly-result .hidden
   Structural (no JS): .calculator-container .input-group
   Site Design System: Dark #0A0F1C | Green Silo #10B981
   Font: DM Sans
   ═══════════════════════════════════════════════════════════ */
/* Rank Math Breadcrumb Styling */
.rank-math-breadcrumb {
  max-width: 1000px;
  margin: 0 auto;
  padding: 12px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.rank-math-breadcrumb a {
  color: #5A7090;
  text-decoration: none;
}
.rank-math-breadcrumb a:hover {
  color: #10B981;
}
.rank-math-breadcrumb .separator {
  color: #374B64;
  margin: 0 8px;
}
.rank-math-breadcrumb .last {
  color: #8899AA;
}

/* ── HERO ── */
.sth-hero {
  text-align: center;
  padding: 48px 20px 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.sth-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 14px;
  color: #10B981;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.sth-hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 14px;
  line-height: 1.2;
}

.sth-hero-title span {
  color: #10B981;
}

.sth-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8899AA;
  max-width: 620px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.sth-hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.sth-htag {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #10B981;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 8px;
  padding: 6px 14px;
}

/* ── CALCULATOR SECTION WRAPPER ── */
.sth-calc-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 20px 48px;
}

/* ═══════════════════════════════════════════════════════════
   #salary-to-hourly-calculator
   JS root: btn.closest('#salary-to-hourly-calculator')
   All .sth-* classes scoped inside this element.
   ═══════════════════════════════════════════════════════════ */
#salary-to-hourly-calculator {
  font-family: 'DM Sans', sans-serif;
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  margin: 0 auto;
}

#salary-to-hourly-calculator * {
  box-sizing: border-box;
}

/* Green top accent bar */
#salary-to-hourly-calculator::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #34D399, #059669);
  z-index: 1;
}

/* ── CARD HEADER ── */
.sth-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid rgba(55,75,100,0.2);
}

.sth-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(16,185,129,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.sth-card-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.sth-card-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5A7090;
}

/* ── CALCULATOR CONTAINER — .calculator-container (JS: no interaction) ── */
#salary-to-hourly-calculator .calculator-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 32px 32px;
}

@media (max-width: 540px) {
  .sth-card-header { padding: 20px 18px 16px; }
  #salary-to-hourly-calculator .calculator-container { padding: 20px 18px 24px; gap: 16px; }
}

/* Two-column grid for inputs on wider screens */
.sth-input-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 520px) {
  .sth-input-grid { grid-template-columns: 1fr; }
}

/* ── INPUT GROUP — .input-group (JS: no interaction) ── */
#salary-to-hourly-calculator .input-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── LABELS — JS: no interaction ── */
#salary-to-hourly-calculator label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C8D8E8;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
  cursor: default;
}

/* ── INPUTS — .sth-salary-amount, .sth-working-hours
   JS reads: .value
   JS calls: .focus() on validation error
── */
#salary-to-hourly-calculator input[type="number"] {
  display: block;
  width: 100%;
  padding: 12px 14px 12px 42px;
  background: rgba(10,15,28,0.6);
  border: 1px solid rgba(55,75,100,0.4);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  margin-top: 4px;
}

#salary-to-hourly-calculator input[type="number"]::placeholder {
  color: #374B64;
}

#salary-to-hourly-calculator input[type="number"]:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
  background: rgba(16,185,129,0.04);
}

/* Hide spinners */
#salary-to-hourly-calculator input[type="number"]::-webkit-outer-spin-button,
#salary-to-hourly-calculator input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#salary-to-hourly-calculator input[type="number"] {
  -moz-appearance: textfield;
}

/* ── SELECTS — .sth-salary-type, .sth-salary-basis
   JS reads: .value
── */
#salary-to-hourly-calculator select {
  display: block;
  width: 100%;
  padding: 12px 36px 12px 14px;
  background: rgba(10,15,28,0.6);
  border: 1px solid rgba(55,75,100,0.4);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A7090' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

#salary-to-hourly-calculator select option {
  background: #111B2E;
  color: #FFFFFF;
}

#salary-to-hourly-calculator select:focus {
  border-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.12);
  background-color: rgba(16,185,129,0.04);
}

/* ── INPUT WRAPPERS WITH PREFIX/SUFFIX ICONS ── */
.sth-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.sth-input-prefix {
  position: absolute;
  left: 14px;
  font-size: 15px;
  font-weight: 600;
  color: #5A7090;
  pointer-events: none;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
}

.sth-input-suffix {
  position: absolute;
  right: 14px;
  font-size: 13px;
  font-weight: 500;
  color: #5A7090;
  pointer-events: none;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
}

/* When prefix present — extra left padding on the input */
.sth-input-wrap input[type="number"] {
  padding-left: 42px;
}

/* When suffix present — extra right padding */
.sth-has-suffix input[type="number"] {
  padding-right: 60px;
}

/* ── FIELD HINT ── */
.sth-field-hint {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5A7090;
  margin-top: 6px;
}

/* ── CALCULATE BUTTON — .sth-calc-btn
   JS: e.target.closest('.sth-calc-btn') — note: closest not classList.contains
── */
#salary-to-hourly-calculator .sth-calc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  background: #10B981;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.25s, box-shadow 0.25s, transform 0.1s;
  letter-spacing: 0.2px;
  margin-top: 4px;
}

#salary-to-hourly-calculator .sth-calc-btn:hover {
  background-color: #0EA573;
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
  transform: translateY(-1px);
}

#salary-to-hourly-calculator .sth-calc-btn:active {
  transform: scale(0.98);
  box-shadow: none;
}

#salary-to-hourly-calculator .sth-calc-btn:focus-visible {
  outline: 2px solid #10B981;
  outline-offset: 2px;
}

/* ── RESULT CONTAINER — .sth-result-container
   JS: classList.add/remove('hidden')
── */
#salary-to-hourly-calculator .sth-result-container {
  background: linear-gradient(135deg, rgba(16,185,129,0.12) 0%, rgba(16,185,129,0.05) 100%);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  animation: sth-fade-up 0.4s ease-out;
}

@keyframes sth-fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Result heading — h3 inside .sth-result-container (JS: no interaction) */
#salary-to-hourly-calculator .sth-result-container h3 {
  margin: 0 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #5A7090;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── HOURLY RESULT — .sth-hourly-result
   JS: .textContent = formatINR(hourlyRate)
── */
#salary-to-hourly-calculator .sth-hourly-result {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 800;
  color: #10B981;
  line-height: 1.1;
  letter-spacing: -1px;
}

.sth-result-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5A7090;
  margin-top: 8px;
}

/* ── HIDDEN — .hidden
   JS: classList.add/remove('hidden') on .sth-result-container
── */
#salary-to-hourly-calculator .hidden {
  display: none !important;
}

/* ── SHARED SECTION STYLES ── */
.sth-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.sth-section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #10B981;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 8px;
}

.sth-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 10px;
}

.sth-section-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8899AA;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.sth-hiw-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px 20px;
}

.sth-hiw-card {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.sth-hiw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10B981, #3B82F6, #8B5CF6, #F59E0B);
}

.sth-hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width: 860px) {
  .sth-hiw-steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .sth-hiw-card  { padding: 28px 20px; }
}

@media (max-width: 380px) {
  .sth-hiw-steps { grid-template-columns: 1fr; }
}

.sth-hiw-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 14px;
}

.sth-s1 { background: rgba(16,185,129,0.15);  color: #10B981; }
.sth-s2 { background: rgba(59,130,246,0.15);  color: #3B82F6; }
.sth-s3 { background: rgba(139,92,246,0.15);  color: #8B5CF6; }
.sth-s4 { background: rgba(245,158,11,0.15);  color: #F59E0B; }

.sth-hiw-stepname {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.sth-hiw-stepdesc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8899AA;
  line-height: 1.6;
}

/* ── INFO SECTIONS ── */
.sth-info-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sth-info-block {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 16px;
  padding: 32px;
}

@media (max-width: 540px) {
  .sth-info-block { padding: 24px 20px; }
}

.sth-info-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #10B981;
  margin: 0 0 16px;
}

.sth-info-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8899AA;
  line-height: 1.8;
  margin: 0 0 12px;
}

.sth-info-text:last-child { margin-bottom: 0; }

.sth-info-note {
  color: #5A7090;
  font-style: italic;
  margin-top: 14px;
}

/* Formula highlight cards */
.sth-formula-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}

@media (max-width: 540px) {
  .sth-formula-cards { grid-template-columns: 1fr; }
}

.sth-formula-card {
  background: rgba(10,15,28,0.5);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid rgba(55,75,100,0.2);
}

.sth-fc-green { border-color: rgba(16,185,129,0.25); }
.sth-fc-blue  { border-color: rgba(59,130,246,0.25); }

.sth-fc-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.sth-fc-formula {
  font-family: 'DM Sans', monospace, sans-serif;
  font-size: 13px;
  color: #10B981;
  background: rgba(16,185,129,0.08);
  border-radius: 6px;
  padding: 8px 12px;
  line-height: 1.6;
  word-break: break-word;
}

.sth-fc-blue .sth-fc-formula {
  color: #93C5FD;
  background: rgba(59,130,246,0.08);
}

/* Examples table */
.sth-examples-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  margin-top: 4px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(55,75,100,0.3);
}

.sth-examples-table th {
  background: rgba(10,15,28,0.6);
  color: #8899AA;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(55,75,100,0.3);
}

.sth-examples-table td {
  padding: 12px 16px;
  color: #C8D8E8;
  border-bottom: 1px solid rgba(55,75,100,0.12);
}

.sth-examples-table tbody tr:last-child td { border-bottom: none; }
.sth-examples-table tbody tr:hover td { background: rgba(55,75,100,0.08); }

.sth-examples-table .sth-td-green {
  color: #10B981;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

/* ── RELATED TOOLS ── */
.sth-related-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 20px 20px;
}

.sth-related-block {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 16px;
  overflow: hidden;
}

.sth-related-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  background: rgba(16,185,129,0.1);
  border-bottom: 1px solid rgba(16,185,129,0.2);
}

.sth-related-tools {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.sth-rtool-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(55,75,100,0.12);
  transition: background 0.2s;
}

.sth-rtool-item:last-child { border-bottom: none; }
.sth-rtool-item:hover { background: rgba(16,185,129,0.05); }
.sth-rtool-item:hover .sth-rtool-arrow { color: #10B981; transform: translateX(3px); }

.sth-rtool-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}

.sth-rtool-text { flex: 1; min-width: 0; }

.sth-rtool-text strong {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #C8D8E8;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sth-rtool-text small {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: #5A7090;
  line-height: 1.5;
}

.sth-rtool-arrow {
  font-size: 14px;
  color: #374B64;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.sth-rtool-viewall { background: rgba(16,185,129,0.04); }
.sth-rtool-viewall .sth-rtool-text strong { color: #10B981; }

/* ── FAQ ── */
.sth-faq-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px 20px;
}

.sth-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sth-faq-item {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.sth-faq-item:hover { border-color: rgba(16,185,129,0.3); }
.sth-faq-item.sth-faq-open { border-color: rgba(16,185,129,0.4); }

.sth-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  line-height: 1.4;
}

.sth-faq-q::after {
  content: '+';
  font-size: 22px;
  color: #10B981;
  flex-shrink: 0;
  font-weight: 400;
  transition: transform 0.3s;
  line-height: 1;
}

.sth-faq-item.sth-faq-open .sth-faq-q::after { transform: rotate(45deg); }

.sth-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8899AA;
  line-height: 1.7;
}

.sth-faq-item.sth-faq-open .sth-faq-a { padding: 0 20px 18px; }

/* ── CTA ── */
.sth-cta-section {
  text-align: center;
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, transparent 0%, rgba(16,185,129,0.03) 100%);
}

.sth-cta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 12px;
}

.sth-cta-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #8899AA;
  max-width: 420px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.sth-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #10B981;
  color: #FFFFFF !important;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s;
}

.sth-cta-btn:hover {
  background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.25);
  color: #FFFFFF !important;
}

/* ── PRINT ── */
@media print {
  .sth-calc-btn { display: none !important; }
  #salary-to-hourly-calculator .hidden { display: block !important; }
}

/* ── RELATED GRID (2-col: tools + quick facts) ── */
.sth-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 860px) {
  .sth-related-grid { grid-template-columns: 1fr; }
}

/* ── QUICK FACTS ── */
.sth-facts-list {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.sth-fact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid rgba(55,75,100,0.12);
  transition: background 0.2s;
}

.sth-fact-item:last-child { border-bottom: none; }
.sth-fact-item:hover { background: rgba(55,75,100,0.08); }

.sth-fact-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  line-height: 1;
}

.sth-fact-body { flex: 1; }

.sth-fact-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #C8D8E8;
  margin-bottom: 3px;
  line-height: 1.3;
}

.sth-fact-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #5A7090;
  line-height: 1.65;
}
