:root {
	--mab-gold: #C6A572;
	--mab-dark: #232F37;
	--mab-beige: #F6F4EF;
	--mab-white: #FFFFFF;
	--mab-muted: #68737A;
	--mab-border: rgba(35, 47, 55, 0.13);
	--mab-shadow: 0 16px 42px rgba(35, 47, 55, 0.10);
}

.mab-news,
.mab-news-single {
	color: var(--mab-dark);
	font-family: inherit;
}

.mab-news {
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(32px, 6vw, 78px) 20px;
}

.mab-news__header {
	max-width: 760px;
	margin: 0 auto clamp(28px, 5vw, 54px);
	text-align: center;
}

.mab-news__eyebrow {
	display: inline-block;
	margin-bottom: 8px;
	color: #80663f;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.mab-news__header h1,
.mab-news__section-heading h2,
.mab-news-article__header h1,
.mab-news-article__footer h2 {
	color: var(--mab-dark);
	line-height: 1.12;
	margin: 0;
}

.mab-news__header h1 {
	font-size: clamp(2rem, 5vw, 4rem);
}

.mab-news__header p {
	margin: 16px auto 0;
	color: var(--mab-muted);
	font-size: clamp(1rem, 2vw, 1.2rem);
	line-height: 1.7;
}

.mab-news__filters {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding: 2px 2px 18px;
	margin: 0 0 24px;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

.mab-news__filter {
	flex: 0 0 auto;
	border: 1px solid var(--mab-border);
	border-radius: 999px;
	background: var(--mab-white);
	color: var(--mab-dark);
	padding: 10px 17px;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 650;
	line-height: 1;
	cursor: pointer;
	transition: 0.2s ease;
}

.mab-news__filter:hover,
.mab-news__filter:focus-visible,
.mab-news__filter.is-active {
	border-color: var(--mab-dark);
	background: var(--mab-dark);
	color: var(--mab-white);
}

.mab-news__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 3vw, 30px);
}

.mab-news-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--mab-border);
	border-radius: 18px;
	background: var(--mab-white);
	box-shadow: 0 7px 28px rgba(35, 47, 55, 0.06);
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.mab-news-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mab-shadow);
}

.mab-news-card[hidden] {
	display: none !important;
}

.mab-news-card__image-link {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: var(--mab-beige);
}

.mab-news-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mab-news-card:hover .mab-news-card__image {
	transform: scale(1.035);
}

.mab-news-card__placeholder {
	display: grid;
	width: 100%;
	height: 100%;
	place-items: center;
	font-size: 4rem;
}

.mab-news-card__featured-label {
	position: absolute;
	top: 14px;
	left: 14px;
	border-radius: 999px;
	background: rgba(35, 47, 55, 0.93);
	color: #fff;
	padding: 8px 12px;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.035em;
}

.mab-news-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 21px;
}

.mab-news-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--mab-muted);
	font-size: 0.78rem;
}

.mab-news-card__category {
	color: #80663f;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mab-news-card__title {
	margin: 0;
	font-size: clamp(1.2rem, 2vw, 1.48rem);
	line-height: 1.28;
}

.mab-news-card__title a {
	color: var(--mab-dark);
	text-decoration: none;
}

.mab-news-card__excerpt {
	margin: 12px 0 19px;
	color: var(--mab-muted);
	font-size: 0.96rem;
	line-height: 1.65;
}

.mab-news-card__more {
	margin-top: auto;
	color: var(--mab-dark);
	font-size: 0.92rem;
	font-weight: 750;
	text-decoration: none;
}

.mab-news-card__more span {
	display: inline-block;
	margin-left: 4px;
	transition: transform 0.2s ease;
}

.mab-news-card__more:hover span {
	transform: translateX(4px);
}

.mab-news__section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: clamp(24px, 4vw, 38px);
}

.mab-news__section-heading h2 {
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.mab-news__text-link {
	color: var(--mab-dark);
	font-weight: 700;
	text-decoration: none;
}

.mab-news__latest-footer {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.mab-news__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	border: 1px solid var(--mab-dark);
	border-radius: 9px;
	background: var(--mab-dark);
	color: var(--mab-white) !important;
	padding: 12px 21px;
	font-size: 0.94rem;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	transition: 0.2s ease;
}

.mab-news__button:hover,
.mab-news__button:focus-visible {
	background: var(--mab-gold);
	border-color: var(--mab-gold);
	color: var(--mab-dark) !important;
}

.mab-news__button--outline {
	background: transparent;
	color: var(--mab-dark) !important;
}

.mab-news__pagination {
	margin-top: 36px;
}

.mab-news__pagination ul {
	display: flex;
	justify-content: center;
	gap: 7px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.mab-news__pagination a,
.mab-news__pagination span {
	display: grid;
	min-width: 42px;
	min-height: 42px;
	place-items: center;
	border: 1px solid var(--mab-border);
	border-radius: 8px;
	color: var(--mab-dark);
	text-decoration: none;
}

.mab-news__pagination .current {
	background: var(--mab-dark);
	color: var(--mab-white);
}

.mab-news__empty {
	border-radius: 16px;
	background: var(--mab-beige);
	padding: 48px 24px;
	text-align: center;
}

/* Einzelbeitrag */
.mab-news-single {
	background: var(--mab-white);
}

.mab-news-article {
	margin: 0;
}

.mab-news-article__inner {
	width: min(920px, calc(100% - 40px));
	margin: 0 auto;
	padding: clamp(32px, 6vw, 82px) 0;
}

.mab-news-article__back {
	display: inline-block;
	margin-bottom: 30px;
	color: var(--mab-dark);
	font-weight: 700;
	text-decoration: none;
}

.mab-news-article__header {
	max-width: 800px;
	margin-bottom: 30px;
}

.mab-news-article__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 15px;
}

.mab-news-article__categories span {
	border-radius: 999px;
	background: var(--mab-beige);
	color: #80663f;
	padding: 7px 11px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.mab-news-article__header h1 {
	font-size: clamp(2rem, 6vw, 4.3rem);
}

.mab-news-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 17px;
	color: var(--mab-muted);
	font-size: 0.92rem;
}

.mab-news-article__hero {
	overflow: hidden;
	margin: 0 0 clamp(28px, 5vw, 50px);
	border-radius: 18px;
	background: var(--mab-beige);
}

.mab-news-article__hero img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 660px;
	object-fit: cover;
}

.mab-news-article__content {
	font-size: clamp(1rem, 1.8vw, 1.12rem);
	line-height: 1.82;
}

.mab-news-article__content > * {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
}

.mab-news-article__content > figure,
.mab-news-article__content > .wp-block-video,
.mab-news-article__content > .wp-block-gallery,
.mab-news-article__content > .wp-block-embed {
	max-width: 920px;
}

.mab-news-article__content img,
.mab-news-article__content video,
.mab-news-article__content iframe {
	max-width: 100%;
	border-radius: 12px;
}

.mab-news-article__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	max-width: 760px;
	margin: 38px auto 0;
	padding-top: 30px;
	border-top: 1px solid var(--mab-border);
}

.mab-news-article__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-top: clamp(48px, 7vw, 82px);
	border-radius: 18px;
	background: var(--mab-beige);
	padding: clamp(24px, 5vw, 44px);
}

.mab-news-article__footer h2 {
	font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.mab-news-article__footer p {
	margin: 9px 0 0;
	color: var(--mab-muted);
}

@media (max-width: 900px) {
	.mab-news__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.mab-news {
		padding-right: 15px;
		padding-left: 15px;
	}

	.mab-news__grid {
		grid-template-columns: 1fr;
	}

	.mab-news__section-heading {
		align-items: start;
	}

	.mab-news__text-link--desktop {
		display: none;
	}

	.mab-news-card__body {
		padding: 18px;
	}

	.mab-news-article__inner {
		width: min(100% - 28px, 920px);
	}

	.mab-news-article__footer {
		align-items: stretch;
		flex-direction: column;
	}

	.mab-news-article__footer .mab-news__button {
		width: 100%;
	}

	.mab-news-article__actions {
		flex-direction: column;
	}

	.mab-news-article__actions .mab-news__button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.mab-news-card,
	.mab-news-card__image,
	.mab-news-card__more span,
	.mab-news__button {
		transition: none;
	}
}


.mab-news__search{display:flex;max-width:620px;margin:0 auto 24px;gap:8px}.mab-news__search input{flex:1;min-width:0;border:1px solid var(--mab-border);border-radius:9px;background:#fff;padding:12px 14px;font:inherit}.mab-news__search button{border:1px solid var(--mab-dark);border-radius:9px;background:var(--mab-dark);color:#fff;padding:10px 18px;font:inherit;font-weight:700;cursor:pointer}.mab-news-card__meta{flex-wrap:wrap}.mab-news-card__likes{white-space:nowrap}.mab-news-article__social{display:flex;flex-wrap:wrap;gap:10px;max-width:760px;margin:30px auto 0;padding-top:24px;border-top:1px solid var(--mab-border)}.mab-news-article__social a,.mab-news-article__social button{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--mab-border);border-radius:999px;background:#fff;color:var(--mab-dark);padding:9px 14px;font:inherit;font-size:.9rem;font-weight:700;text-decoration:none;cursor:pointer}.mab-news-article__social a:hover,.mab-news-article__social button:hover{border-color:var(--mab-gold);background:var(--mab-beige)}.mab-news-like.is-liked{background:var(--mab-dark);color:#fff}.mab-news-article__comments{max-width:760px;margin:45px auto 0;padding-top:30px;border-top:1px solid var(--mab-border)}.mab-news-article__comments input,.mab-news-article__comments textarea{width:100%;border:1px solid var(--mab-border);border-radius:8px;padding:10px}.mab-news-article__comments input[type=submit]{width:auto;background:var(--mab-dark);color:#fff;font-weight:700;cursor:pointer}@media(max-width:620px){.mab-news__search{flex-direction:column}.mab-news__search button{width:100%}.mab-news-article__social>*{flex:1 1 calc(50% - 8px);justify-content:center}}

.mab-news-article__video{
	max-width:920px;
	margin:32px auto 0;
}
.mab-news-article__video video{
	display:block;
	width:100%;
	max-height:760px;
	background:#111;
	border-radius:16px;
	box-shadow:0 12px 34px rgba(35,47,55,.14);
}
