/* categories title */
.categories {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	margin-top: 40px;
}

	.categories h4 {
		margin-top: 30px;
		margin-bottom: 0px;
	}

	.categories ul {
		margin-top: 10px;
	}

		.categories li {
			font-weight: 100;
			font-size: .8rem;
			display: inline-block;
			list-style-type: none;
			border-bottom: 3px solid lightblue;
		}

			.categories li.current {
				color: white;
				background-color: lightblue;
				padding-left: 8px;
				padding-right: 8px;
			}

.item h2 {
	margin-top: 10px;
}

.item h4 {
	margin-bottom: 0px;
	color: grey;
}

.item-content {
		display: flex;
		column-gap: 20px;
	}

	.audioplayer {
		background-color: #f1fafd;
		background-color: white;
		position: sticky;
		top: 0;
	}



@media(max-width:600px){
	.block-image img {
		float: none;
		width: 100%;
		height: auto;
	}
}

	a button {
		cursor: pointer;
	}

.advertisement {
	font-size: 16px;
	text-align: center;
	width: 80%;
	margin: 0 auto;
	border: 1px solid grey;
	padding: 30px;
	background-color: #ffffdb;
}

