/* =========================================================
   main.css — base layout (desktop-first)
========================================================= */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;

  /* Importante: o mobile portrait vai sobrescrever isso no responsive.css
     pra scroll ficar dentro da playlist */
  overflow: hidden;

  height: 100vh;
  width: 100vw;
}

/* --- Background --- */
.background-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.background-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 0.6s ease-in-out;
}

.overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

/* --- Main content (player area) --- */
.main-content{
  position: relative;
  z-index: 2;

  height: 100vh;

  /* Desktop: deixa espaço pra coluna da playlist (normalmente 320px) */
  width: calc(100% - 320px);

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 0 60px;
}

/* --- Optional logo link (se usar) --- */
.logo-link{
  position: fixed;
  top: 60px;
  left: 60px;
  z-index: 10;
  display: block;
  transition: opacity 0.2s ease;
}
.logo-link:hover{ opacity: 0.85; }

.site-logo{
  height: 120px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  animation: rotateLogo 20s linear infinite;
}

@keyframes rotateLogo{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* --- Top header --- */
.top-header{
  position: fixed;
  top: 40px;
  left: 40px;
  z-index: 10050 !important;

  display: flex;
  flex-direction: column;     /* <<< ESSA É A CHAVE */
  align-items: flex-start;
  gap: 10px;                  /* espaço entre ticker e now playing */
}

.language-switcher{
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.now-playing-header{
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.now-playing-label{
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  animation: subtleBlink 2s ease-in-out infinite;
}

@keyframes subtleBlink{
  0%, 100%{ opacity: 0.5; }
  50%{ opacity: 1; }
}

.now-playing-title{
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 4px;

  white-space: normal;        /* <<< */
  overflow: visible;          /* <<< */
  text-overflow: clip;        /* <<< */
  word-break: break-word;     /* <<< */
  max-width: 220px;
}

.now-playing-artist{
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);

  white-space: normal;        /* <<< */
  overflow: visible;          /* <<< */
  text-overflow: clip;        /* <<< */
  word-break: break-word;     /* <<< */
  max-width: 220px;
}

.now-playing-genre{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.55);

  white-space: normal;
  word-break: break-word;
  max-width: 220px;
}

.lang-option{
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-option:hover{ color: rgba(255, 255, 255, 1); }
.lang-option.active{ color: rgba(255, 255, 255, 1); }

.lang-flag{
  width: 16px;
  height: 12px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.lang-separator{
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* --- Bottom nav (desktop) --- */
.bottom-nav{
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-bottom-btn{
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.28s ease;
  font-family: inherit;
}
.nav-bottom-btn:hover{
  background-color: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}
.nav-bottom-btn:active{
  transform: translateY(0);
}

/* --- Contact overlay --- */
.contact-overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.92);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
.contact-overlay.active{
  opacity: 1;
  visibility: visible;
}

.contact-content{
  max-width: 600px;
  margin: 80px auto;
  padding: 0 60px 80px;
}

.contact-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-title{
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #000000;
}

.contact-close{
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000000;
  font-size: 14px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  letter-spacing: 0.02em;
}
.contact-close:hover{
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}

.contact-body{
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}
.contact-message{
  margin-bottom: 16px;
  color: #333333;
}
.contact-email{
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Esconde qualquer botão/elemento de Shows */
.shows-btn,
#showsBtn,
[data-action="shows"],
a[href*="shows"],
button[aria-label*="Shows"],
button[title*="Shows"]{
  display: none !important;
}

/* =========================================================
   Brand ticker (substitui language switcher visualmente)
========================================================= */
.brand-ticker{
  display: flex;
  align-items: center;
  height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.5);
  overflow: hidden;
  min-width: 220px;
}

.ticker-track{
  display: flex;
  gap: 24px;
  white-space: nowrap;
  will-change: transform;
  animation: tickerMove 10s linear infinite;
}

.ticker-track span{
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

@keyframes tickerMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   Top header: ticker pequeno + now playing NÃO estica
========================================================= */
.top-header{
  align-items: flex-start;
}

/* Ticker fica no tamanho da caixinha das bandeiras */
.brand-ticker{
  width: 220px;            /* ajuste fino: 200–240 */
  max-width: 220px;
  flex: 0 0 220px;         /* não deixa esticar */
}

/* Now playing NÃO pode crescer e ocupar a tela */
#nowPlayingHeader{
  flex: 0 0 auto !important;
  width: 220px;            /* mesmo “cantinho” */
  max-width: 220px;
}

/* Texto não passa dessa largura */
#nowPlayingTitle,
#nowPlayingArtist{
  max-width: 220px !important;
}
/* Esconde só a label "NOW PLAYING", mas mantém título/artista */
.now-playing-label{
  display: none !important;
}

/* =========================================================
   BRAND TICKER — visível acima do background + estilo tecno
========================================================= */

/* garante que o header inteiro está acima do background */
.top-header{
  z-index: 10050 !important;
}

/* ticker como “pílula” tech */
.brand-ticker{
  position: relative;
  z-index: 10051 !important;

  width: 220px;
  max-width: 220px;
  flex: 0 0 220px;

  border-radius: 10px;
  overflow: hidden;

  /* escolha 1: fundo preto / letra branca */
 background: rgba(255,255,255,.92);
border: 1px solid rgba(0,0,0,.15);
color: #000;


  /* visual */
  padding: 10px 12px;
  backdrop-filter: blur(10px);
}

/* animação do texto */
.brand-ticker .ticker-track{
  display: flex;
  gap: 18px;
  white-space: nowrap;
  will-change: transform;
  animation: tickerMove 10s linear infinite;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

/* se os spans estiverem quebrando */
.brand-ticker span{
  white-space: nowrap;
}

@keyframes tickerMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* =========================================================
   NOW PLAYING — aparece e não estica
========================================================= */
#nowPlayingHeader{
  display: block !important;
  position: relative;
  z-index: 10051 !important;

  flex: 0 0 auto !important;
  width: 220px;
  max-width: 220px;

  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 12px;
}

/* volta a label (se você tinha escondido) */
.now-playing-label{
  display: block !important;
}

/* limita texto */
#nowPlayingTitle,
#nowPlayingArtist{
  max-width: 196px !important; /* um pouco menos por causa do padding */
}

/* =========================================================
   BRAND TICKER — contraste forçado (não some nunca)
========================================================= */
.brand-ticker{
  background: #000 !important;   /* fundo preto real */
  color: #fff !important;        /* texto branco */
  border: 1px solid rgba(255,255,255,.25);
}

/* garante que o texto não herde nada estranho */
.brand-ticker,
.brand-ticker span{
  color: #fff !important;
}

/* se quiser look mais "tech" */
.brand-ticker{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.15),
    0 6px 20px rgba(0,0,0,.45);
}

/* ============================
   Calendar UI (dark glass)
============================ */

.cal-shell{
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.cal-loading{
  opacity: .75;
  padding: 18px;
}

.cal-head{
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.cal-h1{
  font-family: 'Space Grotesk','Inter',sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,.95);
}
.cal-h2{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.60);
}

.cal-nav{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.cal-month{
  min-width: 180px;
  text-align:center;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.cal-nav-btn{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.9);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.cal-nav-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
}

.cal-grid-wrap{
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 12px;
  backdrop-filter: blur(10px);
}

.cal-weekdays{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 6px 4px 10px;
}

.cal-wd{
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  text-align:center;
}

.cal-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.cal-day{
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.85);
  padding: 10px 10px;
  min-height: 70px;
  cursor: pointer;
  text-align: left;
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}

.cal-day:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}

.cal-day.out{
  opacity: .35;
}

.cal-day.today{
  border-color: rgba(255,255,255,.28);
}

.cal-day.sel{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.cal-day:disabled{
  opacity: .25;
  cursor: default;
}

.cal-day-num{
  font-size: 13px;
  font-weight: 600;
}

.cal-dots{
  display:flex;
  gap: 6px;
  align-items:center;
  min-height: 16px;
}
.cal-dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  opacity: .9;
}
.cal-more{
  font-size: 11px;
  color: rgba(255,255,255,.70);
}

.cal-panel{
  margin-top: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px;
  backdrop-filter: blur(10px);
}

.cal-panel-head{
  display:flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.cal-panel-date{
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.cal-panel-meta{
  font-size: 12px;
  color: rgba(255,255,255,.55);
}

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

.cal-item{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.cal-item-title{
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}
.cal-item-artist{
  font-size: 12px;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

.cal-play{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.95);
  cursor:pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.cal-play:hover{
  transform: scale(1.05);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
}

.cal-empty{
  padding: 16px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

/* Mobile */
@media (max-width: 900px){
  .cal-head{
    flex-direction: column;
    align-items: stretch;
  }
  .cal-month{ min-width: 0; flex: 1; }
  .cal-day{ min-height: 60px; }
}

/* ============================
   Calendar size + layout FIX
   (deixa menor e alinhado)
============================ */

/* o conteúdo do overlay (calendarContent) não pode estourar */
#calendarContent{
  width: 100%;
  max-width: 100%;
}

/* encolhe o “card” principal do calendário */
#calendarOverlay .cal-shell{
  width: min(860px, 86vw) !important;
  margin: 0 auto !important;
}

/* reduz tipografia e espaçamentos */
#calendarOverlay .cal-h1{ font-size: 18px !important; }
#calendarOverlay .cal-h2{ font-size: 11px !important; margin-top: 4px !important; }

#calendarOverlay .cal-nav{
  padding: 8px 10px !important;
  border-radius: 10px !important;
}
#calendarOverlay .cal-month{
  min-width: 140px !important;
  font-size: 11px !important;
}
#calendarOverlay .cal-nav-btn{
  width: 30px !important;
  height: 30px !important;
  border-radius: 9px !important;
}

/* grid mais compacto */
#calendarOverlay .cal-grid-wrap{
  padding: 10px !important;
  border-radius: 12px !important;
}
#calendarOverlay .cal-weekdays{
  gap: 6px !important;
  padding: 4px 2px 8px !important;
}
#calendarOverlay .cal-grid{
  gap: 6px !important;
}

/* células bem menores */
#calendarOverlay .cal-day{
  min-height: 54px !important;
  padding: 8px 8px !important;
  border-radius: 10px !important;
}
#calendarOverlay .cal-day-num{
  font-size: 12px !important;
}

/* painel inferior mais baixo */
#calendarOverlay .cal-panel{
  margin-top: 10px !important;
  padding: 10px !important;
  border-radius: 12px !important;
}
#calendarOverlay .cal-item{
  padding: 10px !important;
  border-radius: 10px !important;
}
#calendarOverlay .cal-item-title{ font-size: 13px !important; }
#calendarOverlay .cal-item-artist{ font-size: 11px !important; }

#calendarOverlay .cal-play{
  width: 36px !important;
  height: 36px !important;
}

/* mantém tudo bonito em telas menores */
@media (max-width: 1024px){
  #calendarOverlay .cal-shell{
    width: min(780px, 92vw) !important;
  }
}

@media (max-width: 700px){
  #calendarOverlay .cal-shell{
    width: calc(100vw - 24px) !important;
  }
  #calendarOverlay .cal-day{
    min-height: 46px !important;
  }
}

.site-signature{
  position: fixed;
  right: 18px;
  bottom: 14px;
  z-index: 10060; /* acima do background e overlays */
  font-family: 'Space Grotesk','Inter',sans-serif;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-signature__link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: 999px;

  color: rgba(255,255,255,.40);
  text-decoration: none;

  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(8px);

  transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

/* hover (desktop) */
.site-signature__link:hover{
  transform: translateY(-1px);
  background: rgba(0,0,0,.35);
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.70);
}

.site-signature__link span{
  color: rgba(255,255,255,.60);
  transition: color .18s ease;
}

.site-signature__link:hover span{
  color: rgba(255,255,255,.92);
}

/* tap feedback (mobile) */
.site-signature__link:active{
  transform: translateY(0) scale(.98);
}

/* =========================================
   INDEX CALENDAR — tamanho correto e centralizado
========================================= */

/* usa o mesmo container do catalog */
#calendarOverlay .catalog-content{
  max-width: 900px !important;
  width: min(900px, 92vw) !important;
  margin: 90px auto 40px !important;
  padding: 24px !important;
}

/* impede expansão exagerada */
#calendarOverlay .cal-shell{
  width: 100% !important;
  max-width: 100% !important;
}

/* reduz proporções gerais */
#calendarOverlay .cal-head{
  margin-bottom: 14px !important;
}

#calendarOverlay .cal-grid-wrap{
  padding: 12px !important;
}

#calendarOverlay .cal-day{
  min-height: 58px !important;
  padding: 8px !important;
  border-radius: 10px !important;
}

#calendarOverlay .cal-day-num{
  font-size: 12px !important;
}

#calendarOverlay .cal-panel{
  margin-top: 14px !important;
  padding: 12px !important;
}

/* deixa tudo proporcional no mobile */
@media (max-width: 900px){

  #calendarOverlay .catalog-content{
    width: calc(100vw - 24px) !important;
    margin: 90px auto 20px !important;
  }

  #calendarOverlay .cal-day{
    min-height: 48px !important;
  }
}

/* =========================================
   CALENDAR — versão compacta e responsiva
========================================= */

/* reduz largura geral */
#calendarOverlay .catalog-content{
  max-width: 760px !important;
  width: min(760px, 94vw) !important;
  margin: 70px auto 20px !important;
  padding: 18px !important;
}

/* remove espaços exagerados */
#calendarOverlay .cal-shell{
  gap: 10px !important;
}

/* reduz header */
#calendarOverlay .cal-head{
  margin-bottom: 10px !important;
}

/* grid mais compacto */
#calendarOverlay .cal-grid-wrap{
  padding: 8px !important;
}

/* células menores */
#calendarOverlay .cal-day{
  min-height: 42px !important;
  padding: 6px !important;
  border-radius: 8px !important;
}

/* número do dia menor */
#calendarOverlay .cal-day-num{
  font-size: 11px !important;
}

/* painel inferior mais compacto */
#calendarOverlay .cal-panel{
  margin-top: 10px !important;
  padding: 10px !important;
}

/* =========================================
   LANDSCAPE MOBILE — compressão por altura
========================================= */

@media (max-height: 500px){

  #calendarOverlay .catalog-content{
    margin: 50px auto 10px !important;
    padding: 14px !important;
  }

  #calendarOverlay .cal-day{
    min-height: 34px !important;
    padding: 4px !important;
  }

  #calendarOverlay .cal-day-num{
    font-size: 10px !important;
  }

  #calendarOverlay .cal-panel{
    display: none !important; /* esconde painel inferior no landscape baixo */
  }
}

/* =================================
   Ultra discreet site signature
================================= */

.site-signature{
  position: fixed;
  bottom: 12px;
  left: 18px;          /* agora no lado esquerdo */
  z-index: 10050;
  font-family: 'Space Grotesk','Inter',sans-serif;
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.site-signature a{
  text-decoration: none;
  color: rgba(255,255,255,.25);
  transition: opacity .2s ease;
}

.site-signature a span{
  color: rgba(255,255,255,.35);
}

.site-signature a:hover{
  opacity: .6;
}

.contact-email a{
  color: #ffffff !important;
  text-decoration: none !important;
}

/* trava o "carrossel/ticker" no tamanho certo */
.brand-ticker{
  width: 220px !important;
  max-width: 220px !important;
  height: 42px !important;
  max-height: 42px !important;
  padding: 10px 12px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

/* evita o conteúdo “crescer” e empurrar altura */
.brand-ticker .ticker-track,
.brand-ticker span{
  line-height: 1 !important;
}