.twpp-latest-wrapper{
  max-width:800px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:2px;
}

.twpp-player{
  width:100%;
  min-height:78px;
  padding:10px 14px;
  box-sizing:border-box;
  background:#ffffff;
  border:1px solid #ececec;
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.055);
  overflow:hidden;
}

.twpp-top{
  display:grid;
  grid-template-columns:56px 38px minmax(0,1fr);
  gap:12px;
  align-items:center;
  width:100%;
}

.twpp-cover-wrap{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}

.twpp-cover{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.twpp-play{
  width:38px;
  height:38px;
  min-width:38px;
  border:0;
  padding:0;
  background:#6762BC;
  border-radius:10px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
}

.twpp-icon-play{
  width:0;
  height:0;
  margin-left:3px;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  border-left:16px solid #ffffff;
}

.twpp-icon-pause{
  display:none;
  position:relative;
  width:16px;
  height:18px;
}

.twpp-icon-pause::before,
.twpp-icon-pause::after{
  content:"";
  position:absolute;
  top:0;
  width:5px;
  height:18px;
  background:#ffffff;
  border-radius:3px;
}

.twpp-icon-pause::before{left:2px;}
.twpp-icon-pause::after{right:2px;}

.twpp-player.is-playing .twpp-icon-play{display:none;}
.twpp-player.is-playing .twpp-icon-pause{display:block;}

.twpp-wave-shell{
  width:100%;
  min-width:0;
  background:transparent;
  display:flex;
  align-items:center;
}

.twpp-wave{
  width:100%;
  min-width:0;
  height:42px;
  background:transparent;
  display:flex;
  align-items:center;
}

.twpp-wave-canvas{
  width:100%;
  height:42px;
  display:block;
}

.twpp-bottom{
  display:grid;
  grid-template-columns:1fr auto;
  gap:12px;
  align-items:center;
  padding-left:106px;
  margin-top:2px;
}

.twpp-meta-inline{
  min-width:0;
}

.twpp-title{
  color:#000000;
  font-size:14px;
  font-weight:600;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.twpp-artist{
  color:#6762BC;
}

.twpp-time{
  color:#6762BC;
  font-size:13px;
  font-weight:500;
  white-space:nowrap;
}

.twpp-current,
.twpp-duration,
.twpp-sep{
  color:#6762BC;
}

@media (max-width:768px){
  .twpp-latest-wrapper{
    max-width:100%;
  }

  .twpp-player{
    min-height:74px;
    padding:9px 10px;
    border-radius:16px;
  }

  .twpp-top{
    grid-template-columns:48px 34px minmax(0,1fr);
    gap:9px;
  }

  .twpp-cover-wrap{
    width:48px;
    height:48px;
    min-width:48px;
  }

  .twpp-play{
    width:34px;
    height:34px;
    min-width:34px;
  }

  .twpp-bottom{
    padding-left:91px;
    gap:8px;
  }

  .twpp-title{
    font-size:13px;
  }

  .twpp-time{
    font-size:12px;
  }
}
