/**
 * Artist Card Styles
 * Ficha del artista para posts de categoría "estasonando"
 */

.artist-card {
	background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.artist-card__header {
	background: #e5ff80;
	color: #000;
	text-align: center;
	padding: 0.5rem 1rem;
	font-weight: 700;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0;
	line-height: 1;
}

.artist-card__image {
	margin: 0;
	padding: 0;
	line-height: 0;
}

.artist-card__image a {
	display: block;
	line-height: 0;
}

.artist-card__image img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: top center;
	display: block;
	margin: 0;
	padding: 0;
}

.artist-card__name {
	background: #e5ff80;
	color: #000;
	text-align: center;
	padding: 0.5rem 1rem;
	margin: 0;
	font-weight: 700;
	font-size: 1rem;
}

.artist-card__name a {
	color: #000;
	text-decoration: none;
}

.artist-card__name a:hover {
	text-decoration: underline;
}

.artist-card__genre {
	padding: 0.75rem 1rem;
	color: #fff;
	font-size: 0.85rem;
	line-height: 1.4;
}

.artist-card__genre-label {
	color: #e5ff80;
	font-weight: 700;
}

.artist-card__genre a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.2s ease;
}

.artist-card__genre a:hover {
	color: #e5ff80;
}

.artist-card__genre-list {
	color: #ccc;
}

.artist-card__genre-list a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.2s ease;
}

.artist-card__genre-list a:hover {
	color: #e5ff80;
}

.artist-card__social-title {
	padding: 0.75rem 1rem 0;
	text-align: center;
	color: #e5ff80;
	font-weight: 700;
	font-size: 0.85rem;
}

.artist-card__social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem;
	flex-wrap: wrap;
}

.artist-card__social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #3a3a3a;
	border-radius: 6px;
	transition: all 0.2s ease;
	line-height: 1;
}

.artist-card__social-link:hover {
	background: #e5ff80;
	transform: translateY(-2px);
}

.artist-card__social-link svg {
	width: 18px;
	height: 18px;
	fill: #fff;
	transition: fill 0.2s ease;
	display: block;
}

.artist-card__social-link:hover svg {
	fill: #000;
}

/* Responsive */
@media (max-width: 768px) {
	.artist-card__header {
		font-size: 0.75rem;
		padding: 0.4rem 0.75rem;
	}
	
	.artist-card__name {
		font-size: 0.9rem;
	}
	
	.artist-card__social-link {
		width: 28px;
		height: 28px;
	}
	
	.artist-card__social-link svg {
		width: 16px;
		height: 16px;
	}
}
