.animated-play-container {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 16px;
  max-width: 320px;
  padding-left: 32px;
}

.animated-play-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.animated-play-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 72px;
  height: 72px;
  border-radius: 64px;
  background-color: var(--purple);
  background-position: center;
  background-size: cover;
  outline: 1px solid #fff;
  outline-offset: 4px;
  transition: outline-offset 0.2s linear;
  cursor: pointer;
}

.animated-play-icon {
  color: #fff;
  padding-left: 6px; /* to optically center the play icon */
  font-size: 32px;
  backdrop-filter: blur(4px);
  display: flex !important; /* important needed for when block pulled into modalities block */
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 64px;
}

.animated-play-text p:first-of-type {
  color: #fff;
  margin-bottom: 4px;
  font-weight: regular;
}

.animated-play-text p:last-of-type {
  color: #D1D1D1;
  font-size: 16px;
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .animated-play-button:hover {
    outline-offset: 0;
  }
}

@media screen and (max-width: 991px) {
  .animated-play-button {
    outline-offset: 0;
  }

  .animated-play-container {
    padding-left: 0;
  }
}