.pickup-pin {
  margin-bottom: 20px;
  text-align: center;
  line-height: normal;

}

.pin-title {
  font-size: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.pin-desc {
  font-size: 15px;
  color: #fff;
  font-weight: normal;
}

.artist-wrapper {
  margin: 0 auto;
  max-width: 1320px;
  padding: 16px 12px 40px;
}

.artist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
  max-width: 1320px;
}

.artist-item {
  position: relative;
  display: flex;
  background: #eeeeee;
  border-radius: 6px;
  padding: 15px;
  gap: 15px;
  align-items: flex-start;
  height: 100%
}

.artist-thumb-link {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}

.artist-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.artist-item:hover .artist-thumb {
  transform: scale(1.05);
}

.artist-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.artist-meta-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.artist-title {
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin: 8px 0 8px;
  line-height: 1.3;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 66px;
}

.artist-button-wrapper {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  bottom: 15px;
  right: 15px;
}

.artist-button {
  background-color: transparent;
  border: 1px solid #1976d2;
  color: #1976d2;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 60px;
  border-radius: 50px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  white-space: nowrap;
}

.artist-button:hover {
  background-color: #1976d2;
  color: #fff;
}

.artist-view-more-section {
  display: flex;
  padding: 24px 12px 0;
}

.artist-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%;
}

.artist-view-more:hover {
  background-color: #e7e7e7;
  color: #121212;
}

@media screen and (max-width: 992px) {
  .pin-title {
    color: #1976d2;
  }

  .pin-desc {
    color: #121212;
  }

  .artist-wrapper {
    padding: 16px 0 0;
  }

  .artist-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .artist-item {
    background: #fff;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
    padding: 10px;
  }

  .artist-thumb-link {
    aspect-ratio: auto;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 5px;
  }

  .artist-thumb {
    width: 100%;
    height: 100%;
  }

  .artist-meta {
    padding: 0;
    height: 100%;
  }

  .artist-meta-content {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .artist-title {
    -webkit-line-clamp: 2;
    max-height: 48px;
    flex-grow: 1;
  }

  .artist-button-wrapper {
    position: static;
    margin-left: auto;
    margin-top: 0;
  }

  .artist-button {
    display: inline-block;
  }

  .artist-view-more-section {
    padding: 24px 12px 24px;
    background-color: #ffffff;
  }
  
  .artist-grid > .artist-item:first-child {
    align-items: flex-start;
    height: 100%;
    position: relative;
  }
  
  .artist-grid > .artist-item:first-child .artist-thumb-link {
    width: 120px;
    height: 120px;
  }

  .artist-grid > .artist-item:first-child .artist-button-wrapper {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
  
  .artist-grid > .artist-item:first-child .artist-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .pin-title {
    font-size: 26px;
  }

  .artist-title {
    font-size: 14px;
  }
  
  .artist-button {
    font-size: 11px;
    font-weight: normal;
    padding: 3px 20px;
  }
  
  .artist-grid > .artist-item:first-child .artist-button {
    padding: 3px 30px;
  }
  
  .artist-thumb-link {
    width: 60px;
    height: 60px;
  }

  .artist-grid > .artist-item:first-child .artist-thumb-link {
    width: 100px;
    height: 100px;
  }
  
  .artist-grid > .artist-item:first-child .artist-title {
    font-size: 16px;
  }
}