/* GW News Plugin – global */
.gwnp-latest-tile,
.gwnp-archive,
.gwnp-overview-carousel {
	font-family: 'Plus Jakarta Sans', sans-serif;
	box-sizing: border-box;
}
.gwnp-latest-tile *,
.gwnp-archive *,
.gwnp-overview-carousel * {
	font-family: 'Plus Jakarta Sans', sans-serif;
	box-sizing: border-box;
}

/* Shared category tag / pill */
.gwnp-tag {
	display: inline-block;
	border: 1px solid #1f304b;
	border-radius: 999px;
	padding: 2px 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #1f304b;
	line-height: 1.5;
	white-space: nowrap;
}

.gwnp-btn {
	display: inline-block;
	text-decoration: none;
	padding: 10px 24px;
	border-radius: 8px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: opacity 0.2s ease;
}
.gwnp-btn:hover {
	opacity: 0.85;
	color: #FFFFFF;
	text-decoration: none;
}
.gwnp-btn,
.gwnp-btn:link,
.gwnp-btn:visited,
.gwnp-btn:active,
.gwnp-btn:hover,
.gwnp-btn:focus {
	text-decoration: none !important;
}
.gwnp-btn-primary {
	background-color: #1C5FF1;
	color: #FFFFFF;
}
.gwnp-btn-small {
	padding: 8px 18px;
	font-size: 14px;
	border-radius: 8px;
}
.gwnp-btn-tiny {
	padding: 8px 20px;
	font-size: 13px;
	border-radius: 6px;
}

/* ===========================================================
 * SHORTCODE 1 – Aktuellster Beitrag (editorial)
 * =========================================================== */
.gwnp-latest-tile {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	background-color: transparent;
	cursor: pointer;
}
.gwnp-latest-content {
	flex: 1 1 45%;
	min-width: 280px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.gwnp-latest-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
}
.gwnp-latest-meta-text {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #FFFFFF;
}
.gwnp-latest-meta-sep {
	font-size: 11px;
	color: #FFFFFF;
}
.gwnp-latest-title {
	font-weight: 800;
	margin: 0;
	font-size: 44px;
	line-height: 1.05;
	text-transform: uppercase;
	color: #FFFFFF;
}
.gwnp-latest-excerpt {
	margin: 0;
	color: #FFFFFF;
	line-height: 1.6;
	font-size: 15px;
}
.gwnp-latest-meta .gwnp-tag {
	color: #FFFFFF;
	border-color: #FFFFFF;
}
.gwnp-latest-image {
	flex: 1 1 45%;
	min-width: 280px;
	align-self: stretch;
	min-height: 380px;
	background-size: cover;
	background-position: center;
	background-color: #cccccc;
}

@media (max-width: 768px) {
	.gwnp-latest-tile {
		gap: 24px;
	}
	.gwnp-latest-title {
		font-size: 32px;
	}
	.gwnp-latest-image {
		min-height: 240px;
	}
}

/* ===========================================================
 * SHORTCODE 2 – Beitragsarchiv (Masonry)
 * =========================================================== */
.gwnp-archive {
	max-width: 1100px;
	margin: 0 auto;
	color: #1f304b;
}

/* Header row */
.gwnp-archive-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 14px;
	border-bottom: 1px solid #e2e7ee;
}
.gwnp-archive-title {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #1f304b;
}
.gwnp-archive-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #1f304b;
	display: inline-block;
}
.gwnp-archive-viewall {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1f304b;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.gwnp-archive-viewall:hover {
	color: #1C5FF1;
}

/* Filter row */
.gwnp-archive-filter {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 18px 0 26px;
}
.gwnp-archive-filter-label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1f304b;
	margin-right: 4px;
}
.gwnp-cat-pill {
	cursor: pointer;
	transition: background-color 0.15s ease, color 0.15s ease;
}
.gwnp-cat-pill:hover {
	background-color: #E7EEFA;
}
.gwnp-cat-pill.active {
	background-color: #1f304b;
	color: #FFFFFF;
}

/* Masonry grid */
.gwnp-archive-grid {
	transition: opacity 0.15s ease;
}
.gwnp-archive-grid.gwnp-loading {
	opacity: 0.5;
}
.gwnp-archive-masonry {
	column-count: 2;
	column-gap: 32px;
}
.gwnp-grid-card {
	break-inside: avoid;
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	display: inline-block;
	width: 100%;
	margin-bottom: 40px;
	cursor: pointer;
}
.gwnp-grid-card-image {
	width: 100%;
	overflow: hidden;
	margin-bottom: 14px;
	background-color: #eef1f5;
}
.gwnp-grid-card-image img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.3s ease;
}
.gwnp-grid-card:hover .gwnp-grid-card-image img {
	transform: scale(1.03);
}
.gwnp-grid-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}
.gwnp-grid-meta-text {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #1f304b;
}
.gwnp-grid-meta-sep {
	font-size: 11px;
	color: #9aa6b6;
}
.gwnp-grid-title {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.15;
	text-transform: uppercase;
	color: #1f304b;
}
.gwnp-archive-empty {
	color: #1f304b;
}

/* Pagination */
.gwnp-pagination {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 16px;
}
.gwnp-page-link,
.gwnp-page-link:link,
.gwnp-page-link:visited,
.gwnp-page-link:hover,
.gwnp-page-link:active,
.gwnp-page-link:focus {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 8px;
	background-color: #FFFFFF;
	color: #1f304b;
	text-decoration: none !important;
	border: 1px solid #1f304b;
}
.gwnp-page-link.active {
	background-color: #1C5FF1;
	color: #FFFFFF;
	border-color: #1C5FF1;
}
.gwnp-page-link.disabled {
	opacity: 0.4;
	pointer-events: none;
}
.gwnp-page-ellipsis {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 6px 14px;
	border-radius: 8px;
	background-color: #FFFFFF;
	color: #1f304b;
	border: 1px solid #1f304b;
}

@media (max-width: 768px) {
	.gwnp-archive-masonry {
		column-count: 1;
	}
	.gwnp-grid-title {
		font-size: 20px;
	}
}

/* ===========================================================
 * SHORTCODE 3 – Übersicht
 * =========================================================== */
.gwnp-overview-main {
	background-color: #1f304b;
	color: #FFFFFF;
	border-radius: 15px;
	overflow: hidden;
	cursor: pointer;
}
.gwnp-overview-main-image {
	width: 100%;
	height: 150px;
	background-size: cover;
	background-position: center;
	background-color: #cccccc;
}
.gwnp-overview-main-content {
	padding: 8px 16px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: left;
	height: 150px;
	box-sizing: border-box;
}
.gwnp-overview-main-title {
	margin: 0;
	color: #FFFFFF;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.3;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	flex-shrink: 0;
}
.gwnp-overview-main-excerpt {
	margin: 0;
	color: #FFFFFF;
	line-height: 1.4;
	font-size: 13px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.gwnp-overview-main-content .gwnp-btn {
	align-self: flex-start;
	margin-bottom: 16px;
	flex-shrink: 0;
}

.gwnp-overview-carousel {
	position: relative;
	overflow: hidden;
}
.gwnp-overview-carousel-track {
	display: flex;
}
.gwnp-overview-carousel-slide {
	flex: 0 0 auto;
}
.gwnp-overview-carousel-slide .gwnp-overview-main {
	margin: 0;
}
.gwnp-carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 24px;
}
.gwnp-carousel-arrow {
	background-color: #1f304b;
	color: #FFFFFF;
	border: none;
	width: 36px;
	height: 36px;
	border-radius: 15px;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gwnp-carousel-arrow:hover {
	opacity: 0.85;
}
.gwnp-carousel-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
}
.gwnp-carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #cfd9e6;
	cursor: pointer;
	display: inline-block;
}
.gwnp-carousel-dot.active {
	background-color: #1f304b;
}
