:root {
	--ds-pri-color: #00875a;
	--ds-sec-color: #0d5478;
	--ds-gray1-color: #d9d9d9;
	--ds-gray2-color: #858e9b;
	--ds-gray3-color: #ded7d7;
	--ds-white-color: #ffffff;
	--ds-black-color: #000000;
	--ds-light-pri-color: #00875a1f;
	--ds-light-sec-color: #0d547826;

	--ds-filter-btn-color: #1a1a1a;
	--ds-angebote-filter-btn-text-color: var(--ds-white-color);
	--ds-angebote-border-color: #e5e5e5;

	--ds-border-radius: 8px;

	--ds-bg1-color: #fafaf9;
}

.ds-angebote-archive-main {
	background-color: var(--ds-bg1-color);
	padding: 50px 20px;
}

.ds-angebote-archive {
	font-family: 'Barlow', Helvetica, Arial, Verdana, sans-serif !important;
	line-height: 1.5;
}

.ds-angebote-archive {
	margin: 0px auto;
	max-width: 1200px;
}

/* Header Section */
.ds-angebote-header {
	margin-bottom: 40px;
}

.ds-angebote-header-content {
	align-items: start;
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 350px;
	margin-bottom: 30px;
}

.ds-angebote-title-section {
	position: relative;
}

.ds-angebote-main-title {
	color: var(--ds-black-color);
	font-size: 1.8em;
	font-weight: 600;
	letter-spacing: -0.02em;
	margin: 0 0 5px 0;
}

.ds-angebote-subtitle {
	color: var(--ds-black-color);
	font-size: 1.5em;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin: 0 0 8px 0;
}

.ds-angebote-description {
	color: var(--ds-black-color);
	font-size: 21px;
	line-height: 1.2;
}

.ds-angebote-description + .ds-angebote-description {
	margin-top: 20px;
}

.ds-angebote-new-badge {
	background-color: #0066cc;
	border-radius: 12px;
	color: var(--ds-white-color);
	display: inline-block;
	font-size: 0.75em;
	font-weight: 500;
	letter-spacing: 0.5px;
	margin-top: 5px;
	padding: 3px 8px;
	text-transform: uppercase;
}

/* Quick Search */
.ds-angebote-quick-search {
	/* Grid item - width controlled by grid */
}

.ds-angebote-quick-search-title {
	align-items: center;
	color: var(--ds-black-color);
	display: flex;
	font-size: 21px;
	font-weight: 700;
	gap: 6px;
	margin: 0 0 8px 0;
}

.ds-angebote-quick-search-title svg {
	fill: #666;
	height: 24px;
	width: 24px;
}

.ds-angebote-quick-search-form {
	display: flex;
	gap: 0;
}

.ds-angebote-quick-search-input {
	background-color: var(--ds-white-color);
	border: 1px solid var(--ds-gray3-color);
	color: var(--ds-black-color);
	flex: 1;
	font-size: 18px;
	height: 32px;
	margin-top: 10px;
	padding: 0 10px;
	z-index: 9;
}

.ds-angebote-quick-search-input:focus {
	border-color: #007cba;
	box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
	outline: none;
}

.ds-angebote-quick-search-btn {
	align-items: center;
	background-color: var(--ds-pri-color);
	border: none;
	color: var(--ds-white-color);
	cursor: pointer;
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	margin-top: 10px;
	transition: all 0.2s ease;
	width: 35px;
}

.ds-angebote-quick-search-btn:hover {
	background-color: var(--ds-sec-color);
}

.ds-angebote-quick-search-btn:hover {
	background-color: var(--ds-sec-color);
}

.ds-angebote-quick-search-btn svg {
	fill: currentColor;
	height: 18px;
	width: 18px;
}

.ds-angebote-quick-search-form .ds-angebote-quick-search-btn svg path {
	fill: var(--ds-white-color);
}

/* Filters */
.ds-angebote-filters-title {
	color: var(--ds-black-color);
	font-size: 21px;
	font-weight: 500;
	margin: 0 0 20px 0;
}

.ds-angebote-filter-label {
	align-items: flex-start;
	display: flex;
	gap: 8px;
}

.ds-angebote-filter-label svg {
	fill: var(--ds-sec-color);
	height: 24px;
	width: 24px;
}

/* Checkbox Styling */
.ds-checkbox-group {
	margin-bottom: 20px;
}

.ds-angebote-checkbox-label {
	align-items: center;
	cursor: pointer;
	display: flex;
	font-size: 0.9em;
	gap: 8px;
}

.ds-angebote-checkbox {
	display: none;
}

.ds-angebote-checkbox:checked + .ds-angebote-checkbox-custom svg {
	opacity: 1;
}

.ds-angebote-checkbox-text {
	color: var(--ds-sec-color);
	font-size: 19px;
	font-weight: 400;
}

/* Checkbox List for Child Categories */
.ds-angebote-checkbox-list {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 8px;
}

.ds-angebote-checkbox-list .ds-angebote-checkbox-label:hover {
	background-color: transparent;
}

.ds-angebote-checkbox-list .ds-angebote-checkbox-label {
	align-items: center;
	background-color: var(--ds-white-color);
	border: 1px solid var(--ds-sec-color);
	border-radius: 20px;
	color: var(--ds-sec-color);
	cursor: pointer;
	display: flex;
	font-weight: 400;
	gap: 8px;
	padding: 6px 15px;
	transition: all 0.2s ease;
}

.ds-angebote-checkbox-list .ds-angebote-checkbox-custom {
	align-items: center;
	background-color: var(--ds-white-color);
	border: 1px solid var(--ds-sec-color);
	border-radius: 100%;
	display: flex;
	flex-shrink: 0;
	height: 18px;
	justify-content: center;
	position: relative;
	width: 18px;
}

.ds-angebote-checkbox-list .ds-angebote-checkbox-custom svg {
	fill: var(--ds-sec-color);
	height: 18px;
	opacity: 0;
	transition: opacity 0.2s ease;
	width: 13px;
}

.ds-angebote-checkbox-list .ds-angebote-checkbox:checked + .ds-angebote-checkbox-custom {
	background-color: var(--ds-white-color);
	border-color: var(--ds-white-color);
}

.ds-angebote-checkbox-list .ds-angebote-checkbox:checked + .ds-angebote-checkbox-custom svg {
	opacity: 1;
}

.ds-angebote-checkbox-list .ds-angebote-checkbox:checked + .ds-angebote-checkbox-custom + .ds-angebote-checkbox-text {
	color: var(--ds-white-color);
}

.ds-angebote-checkbox-list .ds-angebote-checkbox:checked ~ .ds-angebote-checkbox-text {
	color: var(--ds-white-color);
}

.ds-angebote-checkbox-list .ds-angebote-checkbox-label:has(.ds-angebote-checkbox:checked) {
	background-color: var(--ds-sec-color);
	border-color: var(--ds-sec-color);
	color: var(--ds-white-color);
}

/* Filter Info */
.ds-angebote-filter-info {
	color: #999;
	font-size: 0.8em;
	line-height: 1.4;
	margin: 12px 0 0 0;
}

.ds-angebote-results {
	margin-top: 50px;
	position: relative;
}

.ds-angebote-results:not(.ds-loading)::before {
	aspect-ratio: 1 / 1;
	background-image: url(../../images/svg/imgi_24_circle5\ 1.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	position: absolute;
	right: 0;
	top: -40px;
	width: 95px;
	z-index: 0;
}

.ds-angebote-results:not(.ds-loading)::after {
	aspect-ratio: 1 / 1;
	background-image: url(../../images/svg/imgi_24_circle5\ 1.svg);
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	position: absolute;
	right: 70px;
	top: -20px;
	width: 85px;
	z-index: 0;
}

.ds-angebote-results > p:not(.ds-angebote-count) {
	background-color: var(--ds-white-color);
	color: var(--ds-black-color);
	font-size: 29px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 20px;
	padding: 50px 20px;
	position: relative;
	text-align: center;
	z-index: 9;
}

.ds-angebote-archive:has(.ds-angebote-list) .ds-angebote-results:not(.ds-loading)::before {
	top: 50px;
}

.ds-angebote-archive:has(.ds-angebote-list) .ds-angebote-results:not(.ds-loading)::after {
	top: 75px;
}

/* Results Header */
.ds-angebote-results-header {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.ds-angebote-results-title {
	color: var(--ds-black-color);
	font-size: 1.3em;
	font-weight: 600;
	margin: 0;
}

/* Display Tabs */
.ds-angebote-display-tabs {
	border: 1px solid #ddd;
	border-radius: 6px;
	display: flex;
	gap: 0;
	overflow: hidden;
}

.ds-angebote-tab {
	background-color: var(--ds-white-color);
	border: none;
	color: #666;
	cursor: pointer;
	font-size: 0.9em;
	font-weight: 500;
	padding: 8px 16px;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

.ds-angebote-tab--active {
	background-color: #1a1a1a;
	color: var(--ds-white-color);
}

.ds-angebote-tab:hover:not(.ds-angebote-tab--active) {
	background-color: #f5f5f5;
}

/* Pagination */
.ds-angebote-pagination {
	align-items: center;
	display: flex;
	gap: 8px;
	justify-content: center;
	margin: 40px 0;
}

.ds-angebote-pagination-btn {
	align-items: center;
	background-color: transparent;
	border-radius: 100%;
	color: var(--ds-black-color);
	cursor: pointer;
	display: inline-flex;
	font-size: 21px;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	padding: 5px;
	text-decoration: none;
	transition: all 0.2s ease;
	width: 36px;
}

.ds-angebote-pagination-btn:hover,
.ds-angebote-pagination-current {
	background-color: var(--ds-sec-color);
	color: var(--ds-white-color);
}

.ds-angebote-pagination-btn:hover svg path {
	fill: var(--ds-white-color);
}

.ds-angebote-pagination-arrow {
	font-weight: 700;
}

.ds-angebote-pagination-dots {
	color: #999;
	font-size: 1.2em;
	line-height: 1;
	padding: 0 8px;
}

.ds-angebot-badge.Online {
	background-color: #e6eef1;
	color: #0d5478;
}

/* .article_main_landesweit .ds-angebot-content-wrapper {
	display: block;
} */

.ds-angebot-left-column b {
	font-weight: bold;
}

/* Mobile Pagination - max 2 pages */
@media (max-width: 767px) {
	.ds-angebote-pagination {
		flex-wrap: wrap;
	}
}

/* Contact Section - "Nicht fündig geworden?" */
.ds-angebote-contact-section {
	background-color: var(--ds-sec-color);
	border: none;
	border-radius: 0;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	max-width: none;
	padding: 40px 20px;
	position: relative;
	text-align: center;
	z-index: 9;
}

.ds-angebote-contact-title {
	color: var(--ds-white-color);
	font-size: 29px;
	font-weight: 500;
	margin-bottom: 20px;
}

.ds-angebote-contact-text {
	color: var(--ds-white-color);
	font-size: 21px;
	line-height: normal;
	margin-bottom: 20px;
}

.ds-angebote-contact-btn {
	background-color: var(--ds-pri-color);
	border-radius: 100px;
	color: var(--ds-white-color);
	display: inline-block;
	font-size: 19px;
	font-weight: 500;
	padding: 15px 30px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ds-angebote-contact-btn:hover {
	background-color: var(--ds-white-color);
	color: var(--ds-pri-color);
	transform: translateY(-2px);
}

/* No Filter Message */
.ds-angebote-no-filter {
	background-color: var(--ds-white-color);
	margin-top: 0;
	padding: 50px 20px;
	position: relative;
	text-align: center;
	z-index: 9;
}

.ds-angebote-no-filter-icon {
	display: block;
	fill: #999;
	height: 48px;
	margin: 0 auto 16px;
	width: 48px;
}

.ds-angebote-no-filter-title {
	color: var(--ds-black-color);
	font-size: 29px;
	font-weight: 500;
	margin: 0;
	margin-bottom: 20px;
}

.ds-angebote-no-filter-text {
	color: var(--ds-black-color);
	font-size: 21px;
	line-height: 1.2;
	margin: 20px auto 0;
	max-width: 500px;
}

/* Loading State */
.ds-angebote-results.ds-loading {
	opacity: 0.5;
	pointer-events: none;
	position: relative;
}

.ds-angebote-results.ds-loading::before {
	animation: ds-spin 1s linear infinite;
	border: 3px solid #f3f3f3;
	border-radius: 50%;
	border-top: 3px solid var(--ds-sec-color);
	content: '';
	height: 40px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	z-index: 1000;
}

@keyframes ds-spin {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}
	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

.ds-angebote-archive svg path {
	fill: var(--ds-sec-color);
}

.ds-angebot-item {
	background-color: var(--ds-white-color);
	margin-bottom: 30px;
	overflow: hidden;
	padding: 30px 20px;
	position: relative;
	z-index: 9;
}

.ds-angebot-badge {
	background-color: var(--ds-sec-color);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
	color: var(--ds-white-color);
	font-size: 16px;
	font-weight: 700;
	min-width: 182px;
	padding: 4px 35px;
	position: absolute;
	right: -73px;
	text-align: center;
	top: 24px;
	transform: rotate(38deg);
}

.ds-angebot-badge.ds-online {
	background-color: #e7eef1;
	color: var(--ds-sec-color);
}

/* 2-Column Layout for Item Content */
.ds-angebot-content-wrapper {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr 1fr;
	margin-top: 16px;
}

.ds-angebot-left-column {
	display: flex;
	flex-direction: column;
}

.ds-angebot-right-column {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ds-angebot-more-btn {
	align-self: flex-start;
	background-color: var(--ds-pri-color);
	border-radius: 100px;
	color: #fff;
	display: inline-block;
	font-size: 19px;
	font-weight: 500;
	padding: 14px 30px;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
}

.ds-angebot-more-btn:hover {
	background-color: #006644;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
	transform: translateY(-1px);
	color: #fff;
}

.ds-angebot-section-title {
	color: var(--ds-black-color);
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 8px 0;
}

.ds-angebot-address-text {
	color: var(--ds-black-color);
	font-size: 0.9em;
	line-height: 1.5;
	margin: 0;
}

.ds-angebote-filters {
	background-color: transparent;
	border: none;
	border-radius: 0;
	box-shadow: none;
	flex-shrink: 0;
	margin-bottom: 40px;
	padding: 0;
	width: 100%;
}

.ds-angebote-filter-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 30px;
}

.ds-angebote-filter-label {
	color: var(--ds-black-color);
	font-size: 21px;
	font-weight: 700;
}

.ds-angebote-filter-group select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: url(../../images/svg/chevron-down-solid-full.svg);
	background-position: 95% center;
	background-repeat: no-repeat;
	background-size: 20px;
	border: 1px solid var(--ds-gray3-color);
	color: var(--ds-black-color);
	cursor: pointer;
	font-size: 18px;
	height: 34px;
	margin-top: 20px;
	padding: 0 15px;
}

.ds-angebote-filter-group select:focus {
	border-color: #007cba;
	box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1);
	outline: none;
}

.ds-angebot-title {
	color: #1a1a1a;
	font-size: 29px;
	font-weight: 500;
	line-height: 1.2;
	margin-bottom: 0;
	margin-top: 0;
}

.ds-angebot-title a {
	text-decoration: none;
	transition: all 0.3s ease;
}

.ds-angebot-title a:hover {
	color: var(--ds-pri-color);
	text-decoration: underline;
	transition: all 0.3s ease;
}

.ds-angebot-title a svg {
	display: none;
	width: 18px;
}

.ds-angebot-subtitle {
	color: var(--ds-black-color);
	font-size: 23px;
	font-weight: 700;
	margin-bottom: 16px;
	margin-top: 0;
}

.ds-angebot-beschreibung {
	color: var(--ds-black-color);
	font-size: 21px;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 30px;
}

.ds-angebot-beschreibung p {
	margin-bottom: 8px;
	margin-top: 0;
}

.ds-angebote-filter-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.ds-angebote-btn {
	border: 1px solid;
	border-radius: 6px;
	cursor: pointer;
	display: block;
	flex: 1;
	font-size: 0.85em;
	font-weight: 500;
	letter-spacing: 0.5px;
	padding: 10px 16px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.2s ease;
}

.ds-angebote-btn.ds-angebote-btn--filter {
	background-color: #1a1a1a;
	border-color: #1a1a1a;
	color: var(--ds-white-color);
}

.ds-angebote-btn.ds-angebote-btn--filter:hover {
	background-color: #333;
	border-color: #333;
}

.ds-angebote-btn.ds-angebote-btn--reset {
	background-color: transparent;
	border-color: #999;
	color: #666;
}

.ds-angebote-btn.ds-angebote-btn--reset:hover {
	background-color: #f5f5f5;
	border-color: #666;
	color: #333;
}

.ds-angebote-btn.ds-angebote-btn--filter:hover,
.ds-angebote-btn.ds-angebote-btn--reset:hover {
	background-color: var(--ds-sec-color);
	border-color: var(--ds-sec-color);
	color: var(--ds-white-color);
	transition: all 0.3s ease;
}

.ds-angebot-meta-title {
	color: #333;
	font-size: 0.9em;
	font-weight: 600;
	margin: 0 0 8px 0;
}

.ds-angebot-meta-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.ds-angebot-meta span {
	background: rgba(13, 84, 120, 0.1);
	border: 1px solid var(--ds-sec-color);
	border-radius: 20px;
	color: var(--ds-sec-color);
	display: inline-block;
	font-size: 19px;
	margin-bottom: 4px;
	margin-right: 6px;
	padding: 6px 15px;
	text-decoration: none;
}

.ds-angebot-meta span.ds-cat-links-parent {
	background-color: #f0f8ff;
	border-color: #b3d9ff;
	color: var(--ds-sec-color);
}

.ds-angebot-meta span.ds-tag-links {
	background-color: #f0f8ff;
	border-color: #b3d9ff;
	color: var(--ds-sec-color);
}

.ds-angebot-meta span.ds-district-links {
	background-color: #f0f8ff;
	border-color: #b3d9ff;
	color: var(--ds-sec-color);
}

.ds-angebote-count {
	color: var(--ds-black-color);
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
	margin-bottom: 16px;
	margin-top: 0;
}

.ds-angebote-count span {
	color: var(--ds-black-color);
	font-size: 21px;
	font-weight: 700;
}

.ds-angebot-details-wrapper ul {
	font-size: 0.85em;
	list-style-type: none;
	margin-bottom: 12px;
	margin-top: 0;
	padding: 0;
}

.ds-angebot-details-wrapper ul li {
	align-items: center;
	display: flex;
}

.ds-angebot-details-wrapper ul li svg {
	margin-right: 5px;
	width: 18px;
}

.ds-angebot-details-wrapper ul a {
	color: var(--ds-pri-color);
	text-decoration: none;
	transition: all 0.3s ease;
}

.ds-angebot-details-wrapper ul a:hover {
	color: var(--ds-sec-color);
	text-decoration: underline;
	transition: all 0.3s ease;
}

.ds-angebot-contact-person-title,
.ds-angebot-address-title {
	color: #666;
	font-size: 0.9em;
	font-weight: 600;
	margin-bottom: 4px;
	margin-top: 0;
}

.ds-angebot-contact-wrapper .ds-angebot-details li:first-of-type {
	font-weight: 700;
}

.ds-angebote-list {
	margin-top: 48px;
}

.ds-angebote-title {
	color: var(--ds-black-color);
	font-size: 34px;
	font-weight: 500;
	margin-bottom: 20px;
}

.ds-breadcrubs {
	display: none;
}

/*
=======================================
=======================================
Media query
=======================================
=======================================
*/

@media (min-width: 992px) {
	.ds-angebote-archive {
		margin: 0px auto;
		max-width: 1730px;
	}

	.ds-angebote-header {
		margin-bottom: 0;
	}

	.ds-angebote-header-content {
		gap: 0;
		grid-template-columns: 1fr;
	}

	/* Results - Full Width */
	.ds-angebote-results {
		margin-top: 150px;
		overflow: visible;
		padding-bottom: 150px;
		width: 100%;
	}

	.ds-angebote-archive:has(.ds-angebote-list) .ds-angebote-results {
		margin-top: 20px;
	}

	.ds-angebot-item {
		padding: 20px;
	}

	.ds-angebot-details-wrapper {
		display: flex;
	}

	.ds-angebot-details-wrapper > div {
		flex: 1;
	}

	.ds-angebote-filters-title {
		font-size: 33px;
	}

	.ds-angebote-archive-main {
		padding-bottom: calc(100 / 1920 * 100vw);
		padding-top: calc(100 / 1920 * 100vw);
	}

	.ds-angebote-results > p,
	.ds-angebote-no-filter-title {
		font-size: 44px;
	}

	.ds-angebote-description {
		margin: 0 auto;
		max-width: 70%;
	}

	.ds-angebote-results:not(.ds-loading)::before {
		right: 100px;
		top: -205px;
		width: 295px;
	}

	.ds-angebote-results:not(.ds-loading)::after {
		right: 315px;
		top: -145px;
		width: 265px;
	}

	.ds-angebote-archive:has(.ds-angebote-list) .ds-angebote-results:not(.ds-loading)::before {
		right: 100px;
		top: 0;
		width: 295px;
	}

	.ds-angebote-archive:has(.ds-angebote-list) .ds-angebote-results:not(.ds-loading)::after {
		right: 315px;
		top: 50px;
		width: 265px;
	}

	.ds-angebote-filter-group select,
	.ds-angebote-quick-search-input {
		font-size: 21px;
		margin-top: 20px;
	}

	.ds-angebot-section-title {
		font-size: 25px;
	}

	.ds-angebote-quick-search-btn {
		margin-top: 20px;
	}

	.ds-angebote-quick-search-btn {
		width: 48px;
	}

	.ds-angebote-quick-search-input {
		padding: 0 15px;
	}

	.ds-angebote-filter-group select,
	.ds-angebote-quick-search-input {
		height: 45px;
	}

	.ds-angebote-filter-label {
		align-items: center;
	}

	.ds-angebote-count {
		font-size: 33px;
	}

	.ds-angebot-item {
		margin-bottom: 32px;
		padding: 50px;
	}

	.ds-angebot-title {
		font-size: 44px;
	}

	.ds-angebot-subtitle {
		font-size: 28px;
	}

	.ds-angebot-badge {
		font-size: 14px;
		right: -29px;
		top: 30px;
	}

	.ds-angebote-contact-title {
		font-size: 44px;
	}

	.ds-angebote-title {
		font-size: 45px;
	}

	.ds-breadcrubs {
		display: block;
		margin-bottom: 50px;
	}

	.ds-breadcrubs ul {
		background-color: var(--ds-sec-color);
		color: var(--ds-white-color);
		display: inline-flex;
		font-size: 21px;
		font-weight: 400;
		list-style-type: none;
		margin: 0;
		padding: 0 10px;
	}

	.ds-breadcrubs ul li:not(:last-of-type)::after {
		content: '/';
		margin: 0 10px;
	}

	.ds-breadcrubs ul li a {
		text-decoration: none;
	}

	.ds-breadcrubs ul li a:hover {
		text-decoration: underline;
	}
} /* End 992px */

@media (min-width: 1400px) {
	.ds-angebote-title {
		font-size: 70px;
	}
}

@media (min-width: 1300px) {
	/* Filter Section - Horizontal Layout */
	.ds-angebote-filters {
		background-color: transparent;
		border: none;
		box-shadow: none;
		float: none;
		margin-bottom: 30px;
		padding: 0;
		width: 100%;
	}

	.ds-angebote-filters form {
		align-items: start;
		display: grid;
		gap: 30px;
		grid-template-columns: 1fr 1fr 1fr;
		position: relative;
		z-index: 9;
	}

	.ds-angebote-filter-group {
		margin-bottom: 0;
	}

	/* Thema auswählen - Column 1, Row 1 */
	#ds-filter-form > .ds-angebote-filter-group:nth-of-type(1) {
		grid-column: 1 / 2;
		grid-row: 1;
		max-width: 600px;
	}

	/* Landkreise auswählen - Column 2, Row 1 */
	#ds-filter-form > .ds-angebote-filter-group:nth-of-type(2) {
		grid-column: 2 / 3;
		grid-row: 1;
	}

	/* Themensuche verfeinern - Column 1, Row 2 (unter Thema) */
	.ds-child-cat-wrapper {
		grid-column: 1 / 2;
		grid-row: 2;
	}

	/* Schnellsuche - Column 3, Row 1-2 */
	.ds-angebote-quick-search {
		grid-column: 3 / 4;
		grid-row: 1 / 3;
	}
}

@media (max-width: 991px) {
	.ds-angebote-filters {
		float: none;
		margin-bottom: 20px;
		margin-right: 0;
		width: 100%;
	}

	.ds-angebote-filters form {
		grid-template-columns: 1fr;
	}

	.ds-angebote-quick-search {
		grid-column: 1;
		grid-row: auto;
	}

	.ds-child-cat-wrapper {
		grid-column: 1;
		grid-row: auto;
	}

	.ds-angebote-results {
		overflow: visible;
		width: 100%;
	}

	.ds-angebote-header-content {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.ds-angebote-display-tabs {
		margin-top: 20px;
	}

	.ds-angebote-results-header {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}

	.ds-angebote-contact-section {
		margin-top: 40px;
		max-width: none;
	}

	.ds-angebot-content-wrapper {
		gap: 20px;
		grid-template-columns: 1fr;
	}

	.ds-angebot-title {
		hyphens: auto;
		overflow-wrap: break-word;
		word-break: break-word;
	}

	.ds-angebot-title {
		max-width: 80%;
	}
}

@media (max-width: 350px) {
	.ds-angebote-quick-search-input {
		max-width: 210px;
	}
}

/* END - Media query */

/* remove this css when different theme use */

.post-type-archive-angebote #header h1 {
	text-align: center;

	a {
		text-decoration: none;
	}
}

.post-type-archive-angebote #footer p {
	text-align: center;
}

.ds-angebote-filter-group.ds-child-cat-wrapper {
	grid-column-end: -1;
	grid-column-start: 1;
	grid-row-end: 3;
	grid-row-start: 2;
}

p.ds-angebot-phone,
.ds-angebot-email {
	color: #0d5478;
	margin: 0;
}

.ds-angebot-phone a,
.ds-angebot-email a {
	color: #0d5478;
	text-decoration: underline !important;
}

p.ds-angebot-phone a:hover,
.ds-angebot-email a:hover {
	text-decoration: none !important;
}

p.ds-angebot-phone i {
	background-color: #0d5478;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	margin-right: 11px;
	padding: 8px;
	position: relative;
	top: -4px;
}

p.ds-angebot-email i {
	background-color: #0d5478;
	border-radius: 50%;
	color: #fff;
	font-size: 11px;
	margin-right: 11px;
	padding: 8px;
	position: relative;
	top: -4px;
}
