
.audio-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #f8f9fa;
	border-radius: 16px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	padding: 25px;
	max-width: 500px;
	margin: 20px auto;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audio-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

.audio-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #343a40;
	margin-bottom: 20px;
	text-align: center;
}

.audio-player-wrapper {
	position: relative;
	width: 100%;
}

audio {
	width: 100%;
	border-radius: 12px;
	outline: none;
}

.download-btn {
	position: absolute;
	top: -20px;
	right: -20px;
	background: #007bff;
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 24px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
	transition: background 0.3s, transform 0.3s;
}

.download-btn:hover {
	background: #0056b3;
	transform: scale(1.1);
}
