/* Giving Tuesday ticker */
.gt-ticker {
  width: 100%;
  background-color: #0077C8; /* ZERO blue */
  color: #ffffff;
  padding: 10px 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative; /* change to fixed & top:0 if you want it to stick */
  z-index: 9999;
  font-size: 0.95rem;
}

.gt-ticker-inner {
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  flex-wrap: wrap;
}

.gt-ticker-text {
  font-weight: 600;
}

.gt-ticker-text strong {
  font-weight: 700;  /* Keep headline bold */
}

.gt-ticker-light {
  font-weight: 300;  /* Lighter, softer secondary text */
}

.gt-ticker-link {
  font-weight: 700;
  text-decoration: underline;
  color: #ffffff;
}

.gt-ticker-link:hover,
.gt-ticker-link:focus {
  text-decoration: none;
}

/* Close button */
.gt-ticker-close {
  position: absolute;
  right: 16px;
  border: none;
  background: none;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
}
