/* ==========================================================================
   BAXEX.COM DESIGN SYSTEM & STYLESHEET
   Aesthetics: Modern Glassmorphism, HSL Glow Gradients, Rich Dark Mode UI
   ========================================================================== */

:root {
  /* Color Tokens */
  --bg-primary: #090d16;
  --bg-card: rgba(18, 26, 43, 0.65);
  --bg-card-hover: rgba(26, 38, 64, 0.75);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-bright: rgba(0, 229, 255, 0.3);

  --text-primary: #f0f4fd;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --accent-cyan: #00e5ff;
  --accent-violet: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-pink: #f43f5e;
  --accent-amber: #f59e0b;

  --gradient-main: linear-gradient(135deg, #00e5ff 0%, #8b5cf6 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  --gradient-podcast: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 229, 255, 0.15) 100%);

  --shadow-glow: 0 8px 32px 0 rgba(0, 229, 255, 0.15);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Ambient Glows */
.bg-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

.bg-glow-1 {
  top: -100px;
  left: -100px;
  background: var(--accent-cyan);
}

.bg-glow-2 {
  bottom: -150px;
  right: -100px;
  background: var(--accent-violet);
}

/* Containers & Layout Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

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

@media (min-width: 900px) {
  .grid-2-1 {
    grid-template-columns: 1.7fr 1fr;
  }
  .grid-1-1 {
    grid-template-columns: 1fr 1fr;
  }
}

.margin-top-lg {
  margin-top: 2rem;
}

.text-center {
  text-align: center;
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.glass-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-glass);
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-accent {
  color: var(--accent-cyan);
}

/* Header & Navigation */
.header {
  border-bottom: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 22, 0.85);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.logo-accent {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-live {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--accent-emerald);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  letter-spacing: 0.5px;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-emerald);
  border-radius: 50%;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Nav Tabs */
.nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.3rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-glass);
}

.nav-tab {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.nav-tab.active {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.nav-tab:hover:not(.active) {
  color: #fff;
}

.api-tag {
  font-size: 0.8rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Ticker Bar (Continuous Infinite Seamless Loop) */
.ticker-bar {
  background: rgba(12, 18, 32, 0.95);
  border-bottom: 1px solid var(--border-glass);
  overflow: hidden;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  position: relative;
  width: 100%;
}

/* Gradient fade overlays on left & right edges */
.ticker-bar::before,
.ticker-bar::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.ticker-bar::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.ticker-bar::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.ticker-wrap {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
}

.ticker-symbol {
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
}

.ticker-val {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Hero Section Text */
.hero-text {
  padding: 3rem 0 2rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
}

/* Tab Sections Toggle */
.tab-section {
  display: none;
}

.tab-section.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Converter Widget UI */
.converter-box {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.input-group label, .select-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem 0.9rem 2.5rem;
  color: #fff;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  font-weight: 700;
  outline: none;
  transition: border-color 0.3s ease;
}

.input-wrapper input:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15);
}

.currency-symbol {
  position: absolute;
  left: 1rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.selectors-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: end;
}

.select-group select {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.select-group select:focus {
  border-color: var(--accent-cyan);
}

.btn-swap {
  background: var(--bg-card-hover);
  border: 1px solid var(--border-glass);
  color: var(--accent-cyan);
  width: 3.2rem;
  height: 3.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-swap:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  transform: rotate(180deg);
}

/* Result Card */
.result-box {
  background: var(--gradient-podcast);
  border: 1px solid var(--border-glass-bright);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 0.5rem;
  text-align: center;
}

.result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.result-value-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.4rem 0;
}

.result-val {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
}

.result-currency-code {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.unit-rate {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Popular Markets 3D Flipping Cards */
.market-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.market-flip-slot {
  perspective: 1000px;
  height: 52px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

.flip-card-inner.is-flipped {
  transform: rotateX(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

.flip-card-back {
  transform: rotateX(180deg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(0, 229, 255, 0.15) 100%);
  border-color: rgba(0, 229, 255, 0.35);
}

.market-pair {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.market-pair-code {
  font-weight: 700;
  font-family: var(--font-heading);
}

.market-rate {
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
}

/* Rates Table */
.table-responsive {
  overflow-x: auto;
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.rates-table th, .rates-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border-glass);
}

.rates-table th {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.rates-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* Weather & Podcast Styles */
.search-container {
  max-width: 750px;
  margin: 0 auto;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.6rem 0.6rem 1.25rem;
}

.search-icon {
  color: var(--accent-cyan);
  width: 1.5rem;
  height: 1.5rem;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  font-family: var(--font-body);
  outline: none;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-glow);
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  opacity: 0.9;
}

.quick-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  justify-content: center;
}

.city-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.city-chip:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* Weather Display Body */
.weather-main-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.temp-big {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.temp-big .unit {
  font-size: 2rem;
  color: var(--accent-cyan);
  vertical-align: top;
}

.weather-condition-box {
  text-align: right;
}

.weather-big-icon {
  width: 4rem;
  height: 4rem;
  color: var(--accent-cyan);
}

.condition-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 0.4rem;
}

.badge-tag {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.weather-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-cyan);
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.stat-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

/* Podcast Studio Card Details */
.badge-live-podcast {
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c084fc;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.podcast-info {
  margin-bottom: 1.25rem;
}

.podcast-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.podcast-speaker {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.2rem;
}

/* Waveform Visualizer */
.waveform-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 60px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
  padding: 0 1rem;
}

.waveform-container .bar {
  width: 6px;
  height: 12px;
  background: var(--accent-violet);
  border-radius: 4px;
  transition: height 0.2s ease;
}

.waveform-container.playing .bar {
  animation: wave 1.2s ease-in-out infinite alternate;
  background: var(--gradient-main);
}

.waveform-container.playing .bar:nth-child(1) { animation-delay: 0.1s; }
.waveform-container.playing .bar:nth-child(2) { animation-delay: 0.3s; }
.waveform-container.playing .bar:nth-child(3) { animation-delay: 0.2s; }
.waveform-container.playing .bar:nth-child(4) { animation-delay: 0.5s; }
.waveform-container.playing .bar:nth-child(5) { animation-delay: 0.4s; }
.waveform-container.playing .bar:nth-child(6) { animation-delay: 0.2s; }
.waveform-container.playing .bar:nth-child(7) { animation-delay: 0.6s; }
.waveform-container.playing .bar:nth-child(8) { animation-delay: 0.3s; }

@keyframes wave {
  0% { height: 10px; }
  100% { height: 48px; }
}

.podcast-controls-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.control-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;

  font-size: 0.8rem;
  color: var(--text-secondary);
}

.select-sm {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-glass);
  color: #fff;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  outline: none;
  font-size: 0.85rem;
}

.podcast-btn-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.btn-podcast-play {
  flex: 2;
  background: var(--gradient-main);
  border: none;
  color: #fff;
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-glow);
}

.btn-podcast-stop {
  flex: 1;
  background: rgba(244, 63, 94, 0.2);
  border: 1px solid rgba(244, 63, 94, 0.4);
  color: var(--accent-pink);
  padding: 0.85rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.transcript-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  padding: 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-height: 120px;
  overflow-y: auto;
}

.transcript-header {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Forecast Grid */
.forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1rem;
}

.forecast-day-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  text-align: center;
}

.forecast-day-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.forecast-temp {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.forecast-temp .low {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-glass);
  padding: 3rem 0;
  margin-top: 4rem;
  background: rgba(9, 13, 22, 0.9);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SEO Knowledge & FAQ Section */
.seo-knowledge-section {
  padding: 2rem;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.seo-article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.seo-article h3 {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.seo-article p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.faq-container {
  border-top: 1px solid var(--border-glass);
  padding-top: 1.5rem;
}

.faq-container h3 {
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  font-size: 1.15rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 229, 255, 0.3);
}

.faq-item summary {
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
}

.faq-item summary strong {
  color: var(--accent-cyan);
}

.faq-item p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

