/* Company anthem player on /about — reuses .link-block / .text-block-4 */

.pzps-anthem {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 40px;
}

.pzps-anthem__row {
  display: flex;
  align-items: center;
}

.pzps-anthem__btn {
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  text-decoration: none;
}

.pzps-anthem__btn.link-block {
  display: grid;
  place-items: center;
  padding: 0;
}

.pzps-anthem__btn:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}

/* Slightly lighter frosted white on hover — not chocolate/orange */
.pzps-anthem .link-block:hover,
.pzps-anthem__btn:hover {
  background-color: #ffffff80;
}

.pzps-anthem .text-block-4 {
  color: #000;
}

.pzps-anthem .div-block-18 {
  margin-left: 20px;
  flex-shrink: 0;
}

.pzps-anthem__line {
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background-color: #000;
}

.pzps-anthem__icon {
  display: block;
  pointer-events: none;
  grid-area: 1 / 1;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

/* Optical centering — triangle play icon sits slightly left visually */
.pzps-anthem__icon--play {
  opacity: 1;
  transform: translateX(2px) scale(1);
}

.pzps-anthem__icon--pause {
  width: 18px;
  height: 18px;
  opacity: 0;
  transform: scale(0.65);
}

.pzps-anthem.is-playing .pzps-anthem__icon--play {
  opacity: 0;
  transform: translateX(2px) scale(0.65);
}

.pzps-anthem.is-playing .pzps-anthem__icon--pause {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .pzps-anthem__icon {
    transition: none;
  }
}

@media screen and (max-width: 767px) {
  .pzps-anthem {
    margin-top: 28px;
  }

  .pzps-anthem__btn.link-block {
    width: 56px;
    height: 56px;
    padding: 0;
  }

  .pzps-anthem .div-block-18 {
    margin-left: 16px;
  }

  .pzps-anthem__line {
    margin-top: 16px;
  }
}
