.audio__headline {
  font-size: 17px;
  margin-left: 50px;
  font-weight: 600;
  text-transform: uppercase;
}

.audio__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.audio__play {
  display: flex;
  gap: 0 10px;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 0;
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .audio__play {
    width: 100%;
  }
}

.audio__play-icon {
  height: auto;
  max-width: 35px;
}

.audio__current-time,
.audio__duration {
  font-size: 16px;
  margin: 0 2.5px;
  font-weight: 600;
}

.audio__timeline {
  position: relative;
  width: 300px;
  height: 4px;
  background: var(--background);
  border-radius: 5px;
  cursor: pointer;
}

@media (max-width: 700px) {
  .audio__timeline {
    width: 100%;
  }
}

.audio__progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--pen);
  border-radius: 5px;
  width: 0;
}

@media (max-width: 700px) {
  .audio__timestamp {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
