/* Luister Hierna Podcasts - front-end list & cards */

.luister-podcasts-list {
	display: grid;
	gap: 1.5rem;
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: 1fr;
}

.luister-podcast-card {
	display: flex;
	flex-direction: column;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0,0,0,.08);
	transition: box-shadow .2s ease;
}

.luister-podcast-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.luister-podcast-card .luister-podcast-link {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.luister-podcast-image {
	/* Match your working size 356×251 so landscape images fit without crop */
	aspect-ratio: 356 / 251;
	overflow: hidden;
	background: #f5f5f5;
	position: relative;
	flex-shrink: 0;
}

/* Fit image inside 16:9 box: show full image, no crop, no stretch or squash */
.luister-podcast-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}
/* Override any inline width/height from WordPress so aspect ratio is kept */
.luister-podcast-card .luister-podcast-image img[width][height] {
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
}

.luister-podcast-content {
	flex: 1 1 auto;
	padding: 1rem 1.25rem;
}

.luister-podcast-title {
	margin: 0 0 .5rem;
	font-size: 1.25rem;
	line-height: 1.3;
}

.luister-podcast-date {
	display: block;
	font-size: 0.875rem;
	color: #666;
	margin-bottom: .5rem;
}

.luister-podcast-description {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #444;
}

.luister-podcast-actions {
	margin-top: auto;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .75rem;
	padding: .75rem 1.25rem;
	border-top: 1px solid #eee;
	background: #fafafa;
}

.luister-podcast-actions .luister-podcast-play {
	flex: 0 0 auto;
}

.luister-podcast-actions .luister-podcast-share {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	flex-wrap: nowrap;
	justify-content: center;
	gap: .5rem;
	width: 100%;
	max-width: 100%;
}

/* Row with "Luister" and "Deel skakel" buttons */
.luister-actions-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 0.5rem;
	width: 100%;
}

.luister-share-icons-row,
.luister-shares-count-row {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	flex-wrap: nowrap;
	gap: .5rem;
	width: 100%;
	max-width: 100%;
}

/* Podcast cards: fixed columns so each icon sits above its count */
.luister-podcast-actions .luister-podcast-share {
	align-items: center;
}

.luister-podcast-actions .luister-share-icons-row,
.luister-podcast-actions .luister-shares-count-row,
.luister-single-share .luister-share-icons-row,
.luister-single-share .luister-shares-count-row {
	display: grid;
	grid-template-columns: 6rem repeat(4, 36px);
	column-gap: 0.4rem;
	row-gap: 0;
	align-items: center;
	justify-items: center;
	width: max-content;
	max-width: 100%;
	margin-inline: auto;
}

.luister-podcast-actions .luister-share-track,
.luister-single-share .luister-share-track {
	display: contents;
}

.luister-share-label,
.luister-shares-label {
	font-size: 0.875rem;
	color: #666;
	text-align: left;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: normal;
}

.luister-podcast-actions .luister-share-label,
.luister-podcast-actions .luister-shares-label,
.luister-single-share .luister-share-label,
.luister-single-share .luister-shares-label {
	justify-self: start;
	width: auto;
	min-width: 0;
}

.luister-share-track {
	display: flex;
	align-items: center;
	flex: 1 1 auto;
	min-width: 0;
	flex-wrap: nowrap;
	gap: 0.5rem;
	justify-content: flex-start;
}

.luister-share-count-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	min-width: 36px;
	font-size: 0.75rem;
	color: #666;
	text-align: center;
}

.luister-podcast-actions .luister-share-count-item .luister-share-count {
	font-size: 0.75rem;
	text-align: center;
	display: block;
	width: 100%;
}

.luister-podcast-play {
	display: inline-block;
	padding: .4rem .9rem;
	background: #25D366;
	color: #fff !important;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: background .2s ease;
}

.luister-podcast-play:hover {
	background: #20bd5a;
	color: #fff;
}

.luister-podcast-share {
	display: flex;
	align-items: center;
	gap: .5rem;
}

.luister-share-item {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	width: 36px;
}

.luister-share-count {
	font-size: 0.7rem;
	color: #666;
	line-height: 1;
}

.luister-share-label {
	font-size: 0.875rem;
	color: #666;
}

.luister-share-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #fff;
	transition: transform .2s ease, opacity .2s ease;
}

.luister-share-icon:hover {
	opacity: .9;
	transform: scale(1.08);
}

.luister-share-whatsapp { background: #25D366; }
.luister-share-telegram { background: #0088cc; }
.luister-share-facebook { background: #1877F2; }
.luister-share-twitter { background: #000; }
.luister-share-youtube { background: #FF0000; }
.luister-share-instagram { background: #E4405F; }

.luister-share-icon svg {
	width: 18px;
	height: 18px;
}

/* Copy-link button row in cards: center under the whole card (aligned with "Luister" button) */
.luister-copy-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 0.25rem;
	width: 100%;
}

/* Extra share row on single block: keep aligned under icons/labels area */
.luister-single-extra-share {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	flex-wrap: wrap;
	margin-top: 0.5rem;
	margin-left: 0;
	width: 100%;
}

.luister-copy-link-btn,
.luister-native-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	border-radius: 999px;
	font-size: 0.8rem;
	line-height: 1;
	padding: 0.38rem 0.85rem;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}

.luister-copy-link-btn:hover,
.luister-copy-link-btn:focus,
.luister-native-share-btn:hover,
.luister-native-share-btn:focus {
	background: #25D366;
	border-color: #25D366;
	color: #fff;
	outline: none;
}

/* (feedback text removed – we now change button label instead) */

/* Mobile: single column, touch-friendly */
@media (max-width: 767px) {
	.luister-podcasts-list {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 0 0.5rem;
	}
	.luister-podcast-card {
		min-width: 0;
	}
	.luister-podcast-actions {
		padding: 1rem;
		gap: 1rem;
	}
	.luister-podcast-play {
		min-height: 44px;
		padding: 0.5rem 1rem;
		font-size: 1rem;
	}
	.luister-share-icon {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}
	.luister-share-item,
	.luister-share-count-item {
		width: 44px;
		min-width: 44px;
	}
	.luister-single-share .luister-share-item,
	.luister-single-share .luister-share-count-item {
		width: 44px;
		min-width: 44px;
	}
	.luister-share-icon svg {
		width: 22px;
		height: 22px;
	}
	.luister-share-label,
	.luister-shares-label {
		font-size: 0.8125rem;
	}
	/* Tighter columns on mobile so icons align with counts */
	.luister-podcast-actions .luister-share-icons-row,
	.luister-podcast-actions .luister-shares-count-row,
	.luister-single-share .luister-share-icons-row,
	.luister-single-share .luister-shares-count-row {
		grid-template-columns: 5.25rem repeat(4, 32px);
		column-gap: 0.2rem;
	}
	.luister-podcast-actions .luister-share-item,
	.luister-podcast-actions .luister-share-count-item,
	.luister-single-share .luister-share-item,
	.luister-single-share .luister-share-count-item {
		width: 32px;
		min-width: 32px;
	}
	.luister-podcast-actions .luister-share-icon,
	.luister-single-share .luister-share-icon {
		width: 32px;
		height: 32px;
		min-width: 32px;
		min-height: 32px;
	}
	.luister-podcast-actions .luister-share-icon svg,
	.luister-single-share .luister-share-icon svg {
		width: 16px;
		height: 16px;
	}
	.luister-podcast-title {
		font-size: 1.1rem;
	}
	.luister-podcast-content {
		padding: 0.75rem 1rem;
	}
}

/* Very narrow phones */
@media (max-width: 380px) {
	.luister-share-label,
	.luister-shares-label {
		font-size: 0.75rem;
	}
	.luister-podcast-actions .luister-share-icons-row,
	.luister-podcast-actions .luister-shares-count-row,
	.luister-single-share .luister-share-icons-row,
	.luister-single-share .luister-shares-count-row {
		grid-template-columns: 4.75rem repeat(4, 28px);
		column-gap: 0.15rem;
	}
	.luister-podcast-actions .luister-share-item,
	.luister-podcast-actions .luister-share-count-item,
	.luister-single-share .luister-share-item,
	.luister-single-share .luister-share-count-item {
		width: 28px;
		min-width: 28px;
	}
	.luister-podcast-actions .luister-share-icon,
	.luister-single-share .luister-share-icon {
		width: 28px;
		height: 28px;
		min-width: 28px;
		min-height: 28px;
	}
}

.luister-podcasts-empty {
	text-align: center;
	color: #666;
	padding: 2rem;
}

.luister-podcasts-toolbar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0.25rem 0 0.65rem;
	padding: 0.42rem 0.55rem;
	background: transparent;
	border-radius: 7px;
	box-sizing: border-box;
}

.luister-per-page-form {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	font-size: 0.72rem;
	white-space: nowrap;
	color: #555;
	height: 24px;
	line-height: 1;
}

.luister-per-page-form label,
.luister-per-page-form span {
	font-size: 0.72rem;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	height: 24px;
	margin: 0;
	padding: 0;
}

.luister-per-page-form select {
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background: #fff;
	color: #333;
	padding: 0 0.32rem;
	min-width: 44px;
	height: 24px;
	line-height: 1;
	font-size: 0.7rem;
	vertical-align: middle;
	margin: 0;
}

.luister-pagination {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.2rem;
}

.luister-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 24px;
	height: 24px;
	padding: 0 0.34rem;
	border: 1px solid #d9d9d9;
	border-radius: 4px;
	background: #fff;
	color: #1d4ed8;
	text-decoration: none;
	font-size: 0.68rem;
}

.luister-pagination .page-numbers.current {
	background: #1d4ed8;
	border-color: #1d4ed8;
	color: #fff;
}

.luister-pagination a.page-numbers:hover,
.luister-pagination a.page-numbers:focus {
	background: #dbe8ff;
	border-color: #dbe8ff;
	outline: none;
}

@media (max-width: 767px) {
	.luister-podcasts-toolbar {
		padding: 0.4rem 0.5rem;
	}
}

/* Single shortcode: one card only */
.luister-podcast-single .luister-podcast-card {
	max-width: 600px;
}

/* Single podcast page: audio player + description + share */
/* Hide theme's author/date byline (Admin / Date) on full podcast page */
.single-luister_podcast .entry-meta,
.single-luister_podcast .post-meta,
.single-luister_podcast .posted-on,
.single-luister_podcast .byline,
.single-luister_podcast .entry-footer .posted-on,
.single-luister_podcast .entry-footer .byline,
.single-luister_podcast [class*="post-meta"],
.single-luister_podcast [class*="entry-meta"] {
	display: none !important;
}

.luister-single-podcast {
	margin: 1.5rem 0;
	padding: 1.25rem 0;
	border-top: 1px solid #eee;
}

.luister-single-cover {
	/* Align cover with the audio player width */
	max-width: 600px;
}
.luister-single-cover-link {
	display: block;
	text-decoration: none;
}
.luister-single-cover .luister-podcast-image {
	margin-bottom: 1.25rem;
}
.luister-single-description {
	margin-bottom: 1.25rem;
	line-height: 1.6;
	color: #444;
}
.luister-single-audio {
	margin-bottom: 1.25rem;
}
.luister-audio-wrap {
	position: relative;
	max-width: 600px;
}
.luister-tap-to-play {
	display: block;
	width: 100%;
	padding: 1rem 1.5rem;
	font-size: 1.1rem;
	font-weight: 600;
	color: #fff;
	background: #25D366;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background .2s ease;
	-webkit-tap-highlight-color: transparent;
}
.luister-tap-to-play:hover,
.luister-tap-to-play:focus {
	background: #20bd5a;
	color: #fff;
	outline: none;
}
.luister-tap-to-play.luister-played {
	display: none;
}
.luister-audio-player {
	width: 100%;
	max-width: 600px;
	height: 48px;
	margin-top: 0.5rem;
}
.luister-tap-to-play.luister-played + .luister-audio-player {
	margin-top: 0;
}
.luister-audio-fallback {
	font-size: 0.875rem;
	color: #666;
	margin: 0.5rem 0 0;
}
.luister-single-share {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
}
.luister-single-share .luister-share-count-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	min-width: 36px;
	text-align: center;
}
.luister-single-share .luister-share-item {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
}
.luister-single-share .luister-share-count {
	font-size: 0.75rem;
	color: #666;
	text-align: center;
	display: block;
	width: 100%;
}
.luister-single-share .luister-share-icon {
	display: inline-flex;
}

@media (min-width: 768px) {
	.luister-podcasts-list.luister-cols-2:not(.luister-podcast-single) {
		grid-template-columns: repeat(2, 1fr);
	}
	.luister-podcasts-list.luister-cols-3:not(.luister-podcast-single) {
		grid-template-columns: repeat(3, 1fr);
	}
	.luister-podcasts-list.luister-cols-4:not(.luister-podcast-single) {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media (min-width: 1024px) {
	.luister-podcasts-list.luister-cols-3:not(.luister-podcast-single) {
		grid-template-columns: repeat(3, 1fr);
	}
	.luister-podcasts-list.luister-cols-4:not(.luister-podcast-single) {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Podcast popup modal */
.luister-popup-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.2s ease, opacity 0.2s ease;
	padding: 1rem;
	box-sizing: border-box;
}
.luister-popup-overlay.luister-popup-open {
	visibility: visible;
	opacity: 1;
}
.luister-popup-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	cursor: pointer;
}
.luister-popup-modal {
	position: relative;
	width: 100%;
	max-width: 480px;
	max-height: 90vh;
	overflow-y: auto;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
	padding: 1.5rem 1.75rem;
	z-index: 1;
}
.luister-popup-close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 40px;
	height: 40px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
	line-height: 1;
	color: #666;
	background: none;
	border: none;
	cursor: pointer;
	border-radius: 50%;
	transition: background 0.2s ease, color 0.2s ease;
}
.luister-popup-close:hover,
.luister-popup-close:focus {
	background: #f0f0f0;
	color: #333;
	outline: none;
}
.luister-popup-title {
	margin: 0 2rem 0.5rem 0;
	font-size: 1.25rem;
	line-height: 1.3;
	color: #222;
}
.luister-popup-description {
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #444;
	margin-bottom: 1rem;
	white-space: pre-wrap;
}
.luister-popup-audio {
	margin: 1rem 0;
}
.luister-popup-player {
	width: 100%;
	height: 48px;
}
.luister-popup-actions-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}
.luister-popup-full-link {
	display: inline-block;
	font-size: 0.875rem;
	color: #25D366;
	text-decoration: none;
}
.luister-popup-full-link:hover {
	text-decoration: underline;
}
.luister-popup-copy-link,
.luister-popup-native-share {
	border: 1px solid #ddd;
	background: #fff;
	color: #333;
	border-radius: 999px;
	font-size: 0.8rem;
	padding: 0.25rem 0.75rem;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.luister-popup-copy-link:hover,
.luister-popup-copy-link:focus,
.luister-popup-native-share:hover,
.luister-popup-native-share:focus {
	background: #25D366;
	border-color: #25D366;
	color: #fff;
	outline: none;
}
.luister-popup-feedback {
	margin-top: 0.25rem;
	font-size: 0.8rem;
	color: #666;
	min-height: 1em;
}

/* Aktuele Nuus (Luister Hierna) */
.luister-nuus-wrap {
	max-width: 1100px;
	margin: 0 auto;
	padding: 1rem 0.5rem;
}

.luister-nuus-heading {
	text-align: center;
	color: #2c2c8c;
	font-size: 2rem;
	margin: 0 0 1.25rem 0;
	line-height: 1.2;
	font-weight: 800;
}

/* Single article page title shown by the theme */
body.single-luister_nuus h1,
body.single-luister_nuus .entry-title,
body.single-luister_nuus .post-title,
body.single-luister_nuus .wp-block-post-title,
body.single-lh_kuns_kultuur h1,
body.single-lh_kuns_kultuur .entry-title,
body.single-lh_kuns_kultuur .post-title,
body.single-lh_kuns_kultuur .wp-block-post-title {
	color: #2c2c8c !important;
}

/* Hide theme byline/meta on single article links (admin/date row). */
body.single-luister_nuus .entry-meta,
body.single-luister_nuus .post-meta,
body.single-luister_nuus .posted-on,
body.single-luister_nuus .byline,
body.single-luister_nuus .author,
body.single-luister_nuus .post-author,
body.single-luister_nuus .post-date,
body.single-luister_nuus .meta-author,
body.single-luister_nuus .meta-date,
body.single-lh_kuns_kultuur .entry-meta,
body.single-lh_kuns_kultuur .post-meta,
body.single-lh_kuns_kultuur .posted-on,
body.single-lh_kuns_kultuur .byline,
body.single-lh_kuns_kultuur .author,
body.single-lh_kuns_kultuur .post-author,
body.single-lh_kuns_kultuur .post-date,
body.single-lh_kuns_kultuur .meta-author,
body.single-lh_kuns_kultuur .meta-date {
	display: none !important;
}

.luister-nuus-item {
	max-width: 993px;
	margin: 0 auto 2.25rem auto;
}

.luister-nuus-title {
	text-align: center;
	color: #2c2c8c;
	font-size: 1.75rem;
	margin: 0 0 0.35rem 0;
	line-height: 1.2;
}

.luister-nuus-author {
	text-align: center;
	color: #2873fb;
	font-size: 0.95rem;
	margin-bottom: 1rem;
	font-weight: 700;
}

.luister-nuus-awards {
	text-align: center;
	margin: 0 0 1rem 0;
}

.luister-nuus-award {
	color: #3d3c3c;
	font-size: 0.95rem;
	margin: 0.25rem 0;
	line-height: 1.35;
	font-weight: 400;
}

.luister-nuus-content {
	color: #222;
	line-height: 1.65;
	font-size: 0.98rem;
	margin-top: 0.6rem;
	text-align: left;
}

.luister-nuus-content p {
	margin: 0 0 1rem;
}

.luister-nuus-image {
	margin-top: 1.05rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.luister-nuus-image img {
	width: clamp(220px, 60vw, 300px);
	height: clamp(220px, 60vw, 300px);
	max-width: none;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}

.luister-nuus-caption {
	margin-top: 0.25rem;
	color: #666;
	font-size: 0.85rem;
}

.luister-nuus-share {
	display: flex;
	justify-content: center;
	margin-top: 1.05rem;
}

.luister-inline-video {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.luister-inline-video-title {
	margin: 0 0 0.35rem 0;
	font-size: 1.05rem;
	color: #222;
	text-align: center;
}

.luister-inline-video-desc {
	margin: 0 0 0.65rem 0;
	color: #444;
	line-height: 1.45;
	text-align: center;
	max-width: 560px;
}

.luister-video-preview-btn {
	position: relative;
	width: min(100%, 560px);
	padding: 0;
	border: 0;
	background: #000;
	cursor: pointer;
	border-radius: 10px;
	overflow: hidden;
}

.luister-video-preview-btn img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 320px;
	object-fit: cover;
}

.luister-video-no-poster {
	display: block;
	color: #fff;
	padding: 2rem;
}

.luister-video-play-badge {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.72);
	color: #fff;
	font-size: 0.95rem;
	padding: 0.45rem 0.8rem;
	border-radius: 999px;
}

.luister-inline-video-player {
	width: min(100%, 560px);
	max-height: 320px;
	border-radius: 10px;
	background: #000;
}

.luister-inline-video-share {
	margin-top: 0.6rem;
}

/* Nuus/Kuns copy buttons should stay grey (no green hover/focus state). */
.luister-nuus-share .luister-copy-link-btn,
.luister-inline-video-share .luister-copy-link-btn {
	background: #f3f3f3 !important;
	border-color: #ddd !important;
	color: #666 !important;
}

.luister-nuus-share .luister-copy-link-btn:hover,
.luister-nuus-share .luister-copy-link-btn:focus,
.luister-inline-video-share .luister-copy-link-btn:hover,
.luister-inline-video-share .luister-copy-link-btn:focus {
	background: #f3f3f3 !important;
	border-color: #ddd !important;
	color: #666 !important;
}


.luister-nuus-share-btn {
	text-decoration: none;
}

@media (max-width: 767px) {
	.luister-nuus-heading {
		font-size: 1.4rem;
		margin-bottom: 1rem;
	}
	.luister-nuus-title {
		font-size: 1.25rem;
	}
	.luister-nuus-item {
		margin-bottom: 1.5rem;
	}
	.luister-nuus-content {
		font-size: 0.95rem;
	}
	.luister-nuus-image img {
		max-width: 220px;
	}
}

