/* Import main style */
@import url("/style.css");

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	padding: 60px 10%;
	justify-content: center;
}
.album {
	background-color: #2a2a2a;
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease;
	box-shadow: 0 0 10px rgba(0,0,0,0.4);
	max-width: 400px;
	margin: 0 auto;
}
.album:hover {
	transform: scale(1.03);
}
.album img {
	width: 100%;
	display: block;
}
.album-content {
	padding: 20px;
}
.album-title {
	font-size: 1.3em;
	margin-bottom: 5px;
	color: #fff0f5;
}
.album-sub {
	font-size: 0.95em;
	color: #ccc;
	font-style: italic;
	margin-bottom: 15px;
}
.album-buttons a {
	display: inline-block;
	margin-right: 10px;
	padding: 8px 16px;
	border: 1px solid #944;
	color: #fdd;
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.9em;
}
.album-buttons a:hover {
	background-color: #944;
	color: #fff;
}
.playlist-section {
	padding: 40px 10%;
	background-color: #222;
	text-align: center;
}
.playlist-section h2 {
	font-size: 2em;
	margin-bottom: 20px;
}
.playlist-embed {
	max-width: 600px;
	margin: 0 auto;
}
.listen {
	padding: 2rem;
	max-width: 800px;
	margin: auto;
}
.listen h2 {
	color: #f4e3c1;
	border-bottom: 1px solid #333;
	padding-bottom: 0.5rem;
}
