body[data-theme="light"] {
  --iz-left-header-border: linear-gradient(338deg, #e1e1e166, #f6f6f666);
}
body[data-theme="dark"] {
  --iz-left-header-border: #FFFFFF08;
}

.left-header-wrapper {
  padding: 2px;
  border-radius: 32px;
}

.left-header {
  background: var(--iz-white-black);
  padding: 0 48px 48px;
  justify-content: center;
  border-radius: 32px;
}

.left-header .left-header-banner {
  width: 300px;
  height: 300px;
  border-radius: 32.44px;
  overflow: hidden;
}

.left-header .left-header-banner img {
  position: absolute;
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 32.44px;
  z-index: 0;
}

.marquee-section-wrapper {
  width: 100%;
  overflow: hidden;
}

.marquee-section {
  position: relative;
  min-height: 82px;
}

.marquee {
  white-space: nowrap;
}

.marquee-div {
  position: absolute;
  left: 100%;
  animation: move linear 20s infinite;
  min-width: 100%;
}

@keyframes move {
  from { transform: translateX(0%); } 
  to { transform: translateX(-165%); }
}

.left-header .left-header-title {
  margin-top: 35px;
  font-size: 32px;
  font-weight: 600;
  font-family: FS PF BeauSans Pro, sans-serif;
  line-height: 41.6px;
  color: var(--iz-list-may-like-left-header-title);
  display: flex;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.left-header .left-header-singer {
  margin: 12px auto;
  font-family: FS PF BeauSans Pro, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  color: var(--iz-list-may-like-left-header-singer);
}

.left-header .play-all-button {
  border: 1.63px solid #ff3740;
  border-radius: 52.28px;
  font-size: 20px;
  font-weight: 400;
  font-family: FS PF BeauSans Pro, sans-serif;
  color: var(--iz-list-may-like-play-all-button);
  padding: 8px 16px;
  margin-bottom: 21px;
  cursor: pointer;
}

.left-header .play-all-button-icon {
  margin-right: 16px;
}

.left-header-heart-icon {
  height: 22px;
  width: 22px;
  background-color: var(--iz-list-may-like-left-header-bottom-icon);
  -webkit-mask: url(/images/heart-icon-light-mode.svg) no-repeat center;
  mask: url(/images/heart-icon-light-mode.svg) no-repeat center;
}

.left-header-share-icon {
  height: 22px;
  width: 22px;
  background-color: var(--iz-list-may-like-left-header-bottom-icon);
  -webkit-mask: url(/images/share-icon.svg) no-repeat center;
  mask: url(/images/share-icon.svg) no-repeat center;
}

.left-header .left-header-bottom-icon {
  font-size: 14px;
  color: var(--iz-list-may-like-left-header-bottom-icon);
  font-weight: 400;
  font-family: FS PF BeauSans Pro, sans-serif;
}

.dot-divider::after {
  content: " • ";
  white-space: pre;
  color: #d9d9d9;
}
.dot-divider:last-child::after {
  content: "";
}

@media screen and (max-width: 1800px) {
  .left-header {
    padding: 0;
  }
}

@media screen and (min-width: 1400px) and (max-width:1600px)  {
  .left-header .left-header-title {
    font-size: 24px;
  }
  .left-header .play-all-button {
    font-size: 18px;
  }
}

@media screen and (min-width: 1401px) and (max-width:1550px)  {
  .left-header-wrapper{
    margin: 0 -30px;
  }
}

@media screen and (max-width: 1399px)  {
  .left-header {
    padding: 0;
  }
  @keyframes move {
    from { transform: translateX(0%); } 
    to { transform: translateX(-180%); }
  }
}