.topbar {
  position: relative;
  z-index: 5;
  background: #000;
  color: #fff;
  font-size: clamp(0.7rem, 0.83vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 0;
  min-height: 2.1rem;
  display: flex;
  align-items: center;
}

.topbar__inner {
  width: 100%;
  padding-inline: var(--pad-x);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar a {
  color: #fff;
  font-weight: 300;
}

.topbar a:hover {
  text-decoration: underline;
}

.topbar__podcast {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar__podcast svg {
  width: 0.7rem;
  height: 0.7rem;
  fill: #fff;
}

@media (max-width: 720px) {
  .topbar {
    font-size: 0.7rem;
  }

  .topbar__podcast span:last-child {
    display: none;
  }
}
