.newrelease-pin {
  margin-bottom: 20px;
  text-align: center;
  line-height: normal;
}

.newrelease-title {
  font-size: 30px;
  color: #1976d2;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.newrelease-desc {
  font-size: 15px;
  color: #121212;
  font-weight: normal;
}

.newrelease-wrapper {
  margin: 0 auto;
  max-width: 1320px;
  padding: 16px 12px 40px;
}

.newrelease-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.newrelease-item {
  display: flex;
  overflow: hidden;
  background: #f5f5f5;
  border-radius: 6px;
  gap: 15px;
  align-items: center;
  padding-right: 10px;
}

.newrelease-thumb-link {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}

.newrelease-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.newrelease-item:hover .newrelease-thumb {
  transform: scale(1.05);
}

.newrelease-meta-content {
  overflow: hidden;
  margin: 10px 0;
}

.newrelease-song-title {
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin: 0;
  line-height: 1.3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.newrelease-artist-name {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 14px;
  font-weight: 600;
  color: #777777;
  margin: 10px 0 0;
}

.newrelease-view-more-section {
  display: flex;
  padding: 24px 12px 0;
}

.newrelease-view-more {
  margin: 0 auto;
  padding: 11px 15px;
  cursor: pointer;
  line-height: 14px;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #d0d0d0;
  background-color: #ffffff;
  color: #121212;
  width: 90%;
}

.newrelease-view-more:hover {
  background-color: #e7e7e7;
  color: #121212;
}

/* Responsif */
@media screen and (max-width: 992px) {
  .newrelease-title {
    color: #1976d2;
  }

  .newrelease-desc {
    color: #121212;
  }

  .newrelease-wrapper {
    padding: 16px 0 0;
  }

  .newrelease-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .newrelease-item {
    background: #fff;
    gap: 12px;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    padding: 10px;
  }

  .newrelease-thumb-link {
    width: 80px;
    height: 80px;
  }

  .newrelease-meta-content {
    margin: 0;
  }
  
  .newrelease-song-title {
    -webkit-line-clamp: 1;
  }
  
  .newrelease-view-more-section {
    padding: 24px 12px 24px;
    background-color: #ffffff;
  }

  .newrelease-grid > .newrelease-item:first-child .newrelease-thumb-link {
    width: 120px;
    height: 120px;
  
  }
  
  .newrelease-grid > .newrelease-item:first-child .newrelease-song-title {
    font-size: 18px;
  }
  
  .newrelease-grid .newrelease-item:nth-child(n+6) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .newrelease-title {
    font-size: 26px;
  }

  .newrelease-song-title {
    font-size: 14px;
  }

  .newrelease-thumb-link {
    width: 60px;
    height: 60px;
  }

  .newrelease-grid > .newrelease-item:first-child .newrelease-thumb-link {
    width: 100px;
    height: 100px;
  }
  
  .newrelease-grid > .newrelease-item:first-child .newrelease-song-title {
    font-size: 16px;
  }
}