.grid-3 {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px 20px;
	margin-top: 20px;
}

/* 艺术家卡片样式 */
.artist-card {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 310px;
	background: rgba(26, 26, 26, 0.9);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 20px;
	box-sizing: border-box;
	z-index: 10;
	box-shadow: 0 10px 30px rgba(77, 77, 77, 0.2);
	cursor: pointer;
}

.artist-card-content {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	color: #fff;
	padding: 1rem;
	position: relative;
	animation: modalSlideIn 0.3s ease-out;
}

.artist-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

.artist-card-title {
	font-size: 30px;
	font-weight: 600;
	margin: 0;
	color: white;
	flex: 1;
	text-align: left;
}

.artist-card-image {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	margin-left: 15px;
	flex-shrink: 0;
}

.artist-card-description {
	font-size: 14px;
	line-height: 1.5;
	color: white;
	text-align: justify;
	flex: 1;
	overflow: hidden;
}

/* 1100px宽度响应式样式 */
@media (max-width: 1100px) {
	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
		gap: 10px 10px;
		margin-top: 10px;
	}

	.artist-card {
		padding: 15px;
	}
}

/* 910px宽度响应式样式 */
@media (max-width: 910px) {
	.grid-3 {
		grid-template-columns: repeat(2, 1fr);
	}

	.artist-card-header {
		flex-direction: row;
		align-items: flex-start;
	}

	.artist-card-image {
		margin-left: 15px;
	}

	.artist-card-title {
		font-size: 30px;
	}
}

/* 630px宽度响应式样式 */
@media (max-width: 630px) {
	.grid-3 {
		grid-template-columns: repeat(1, 1fr);
	}

	.artist-card-image {
		margin-left: 10px;
		width: 55px;
		height: 55px;
	}
}

/* 400px宽度响应式样式 */
@media (max-width: 400px) {
	.artist-card {
		padding: 12px;
	}

	.artist-card-description {
		font-size: 14px;
	}
}