/*
 Theme Name:   Salient Child
 Theme URI:    http://example.com/salient-child
 Description:  Child theme for Salient
 Author:       Your Name
 Author URI:   http://example.com
 Template:     salient
 Version:      1.0.0
*/



.ticker-badge {
  position: relative;
  z-index: 110;
  display: inline-flex;
  align-items: center;
  padding: 0.09em 0.9em;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
  font-size: 0.75em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 1em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Dark theme (original gradient) */
.ticker-badge--dark {
  background: linear-gradient(135deg, #000 0%, #7e6c6c 100%);
  color: #fff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.ticker-badge--dark:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Light theme override */
.ticker-badge--light {
  background: #f0f0f0;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-left: 50px;
  margin-bottom: 20px;
  margin-top: 0px;"
}
.ticker-badge--light:hover {
  background: #e0e0e0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}