/*
 * Aigner Capital | Core – Frontend Styles
 * Plugin Version: 1.2.1
 * Author: ConstructMedia – https://constructmedia.de
 */

@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700;800&display=swap');



/* =========================================
   CSS Custom Properties / Design Tokens
   ========================================= */
:root {
  --ac-green:       #213049;   /* primary dark blue (Aigner Capital) */
  --ac-green-dark:  #14213a;   /* darker blue for hover */
  --ac-green-light: #2d4368;   /* lighter blue accent */
  --ac-gold:        #839CAC;   /* secondary blue-gray (Aigner Capital) */
  --ac-dark:        #000000;
  --ac-gray-900:    #000000;
  --ac-gray-700:    #2a2a2a;
  --ac-gray-500:    #839CAC;
  --ac-gray-300:    #c4d0d8;
  --ac-gray-100:    #eef2f4;
  --ac-white:       #ffffff;
  --ac-border:      #213049;
  --ac-radius:      0;
  --ac-radius-lg:   0;
  --ac-shadow:      none;
  --ac-shadow-lg:   none;
  --ac-transition:  0.2s ease;
  --ac-font:        'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  }

/* =========================================
   Base Reset
   ========================================= */
.aigner-inserate-wrapper *,
.aigner-detail-wrapper * {
	box-sizing: border-box !important;
}

.aigner-inserate-wrapper,
.aigner-detail-wrapper {
	font-family: var(--ac-font) !important;
	color: var(--ac-gray-900) !important;
	line-height: 1.6 !important;
}

/* =========================================
   List View – Search / Filter
   ========================================= */
.aigner-inserate-filter {
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  }

.aigner-search-bar {
  display: flex !important;
  align-items: stretch !important;
  gap: 0 !important;
  border: 1px solid var(--ac-border) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  background: var(--ac-white) !important;
  box-shadow: none !important;
  height: 48px !important;
  }

.aigner-search-input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  padding: 0 16px !important;
  height: 100% !important;
  font-size: 15px !important;
  font-family: var(--ac-font) !important;
  color: var(--ac-gray-900) !important;
  background: transparent !important;
  margin: 0 !important;
  line-height: 1 !important;
  }

.aigner-search-input::placeholder {
	color: var(--ac-gray-500) !important;
}

.aigner-search-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 0 24px !important;
  height: 100% !important;
  background: var(--ac-green) !important;
  color: var(--ac-white) !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: var(--ac-font) !important;
  transition: background var(--ac-transition) !important;
  white-space: nowrap !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  margin: 0 !important;
  line-height: 1 !important;
  }

.aigner-search-btn:hover {
	background: var(--ac-green-dark) !important;
}

/* =========================================
   List View – Meta
   ========================================= */
.aigner-inserate-meta {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 16px !important;
	padding-bottom: 12px !important;
	border-bottom: 1px solid var(--ac-border) !important;
}

.aigner-inserate-count {
	font-size: 14px !important;
	color: var(--ac-gray-500) !important;
}

/* =========================================
   List View – Grid
   ========================================= */
.aigner-inserate-list {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
	gap: 24px !important;
	margin-bottom: 40px !important;
}

/* =========================================
   Card
   ========================================= */
.aigner-inserat-card {
	background: var(--ac-white) !important;
	border: 1px solid var(--ac-border) !important;
	border-radius: 0 !important;
	overflow: hidden !important;
	box-shadow: none !important;
	transition: transform var(--ac-transition), box-shadow var(--ac-transition) !important;
}

.aigner-inserat-card:hover {
	transform: translateY(-3px) !important;
	box-shadow: none !important;
}

.aigner-card-link {
	display: flex !important;
	flex-direction: column !important;
	height: 100% !important;
	text-decoration: none !important;
	color: inherit !important;
}

.aigner-card-image {
	position: relative !important;
	aspect-ratio: 4 / 3 !important;
	overflow: hidden !important;
	background: var(--ac-gray-100) !important;
}

.aigner-card-thumb {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.4s ease !important;
}

.aigner-inserat-card:hover .aigner-card-thumb {
	transform: scale(1.04) !important;
}

.aigner-card-no-image {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	height: 100% !important;
	color: var(--ac-gray-300) !important;
}

.aigner-card-badge {
	position: absolute !important;
	top: 12px !important;
	left: 12px !important;
	background: var(--ac-green) !important;
	color: var(--ac-white) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	padding: 4px 10px !important;
	border-radius: 0 !important;
}

.aigner-card-body {
	padding: 16px !important;
	flex: 1 !important;
}

.aigner-card-title {
	font-size: 17px !important;
	font-weight: 700 !important;
	margin: 0 0 12px 0 !important;
	color: var(--ac-dark) !important;
	line-height: 1.3 !important;
}

.aigner-card-specs {
	display: flex !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
	margin-bottom: 10px !important;
}

.aigner-spec-item {
	display: flex !important;
	flex-direction: column !important;
	background: var(--ac-gray-100) !important;
	border-radius: 0 !important;
	padding: 5px 10px !important;
	font-size: 12px !important;
}

.aigner-spec-label {
	color: var(--ac-gray-500) !important;
	font-size: 10px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.4px !important;
	font-weight: 600 !important;
}

.aigner-spec-value {
	color: var(--ac-gray-900) !important;
	font-weight: 600 !important;
	font-size: 13px !important;
}

.aigner-card-standort {
	display: flex !important;
	align-items: center !important;
	gap: 5px !important;
	font-size: 13px !important;
	color: var(--ac-gray-500) !important;
	margin-top: 6px !important;
}

.aigner-card-footer {
	padding: 12px 16px 16px !important;
	border-top: 1px solid var(--ac-border) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
}

.aigner-card-preis {
	display: flex !important;
	flex-direction: column !important;
}

.aigner-preis-haupt {
	font-size: 22px !important;
	font-weight: 800 !important;
	color: var(--ac-green) !important;
	line-height: 1.1 !important;
}

.aigner-currency {
	font-size: 16px !important;
}

.aigner-alter-preis {
	font-size: 12px !important;
	color: var(--ac-gray-500) !important;
	text-decoration: line-through !important;
}

.aigner-mwst-hint {
	font-size: 11px !important;
	color: var(--ac-gray-500) !important;
}

.aigner-preis-auf-anfrage {
	font-size: 15px !important;
	color: var(--ac-gray-700) !important;
	font-weight: 600 !important;
}

.aigner-card-cta {
	font-size: 13px !important;
	font-weight: 700 !important;
	color: var(--ac-green) !important;
	white-space: nowrap !important;
}

/* =========================================
   Pagination
   ========================================= */
.aigner-pagination {
	display: flex !important;
	justify-content: center !important;
	gap: 6px !important;
	margin-top: 32px !important;
	flex-wrap: wrap !important;
}

.aigner-page-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-width: 38px !important;
	height: 38px !important;
	padding: 0 10px !important;
	border: 1px solid var(--ac-border) !important;
	border-radius: 0 !important;
	background: var(--ac-white) !important;
	color: var(--ac-gray-700) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	text-decoration: none !important;
	transition: all var(--ac-transition) !important;
}

.aigner-page-btn:hover {
	border-color: var(--ac-green) !important;
	color: var(--ac-green) !important;
}

.aigner-page-btn.aigner-page-active {
	background: var(--ac-green) !important;
	border-color: var(--ac-green) !important;
	color: var(--ac-white) !important;
}

/* =========================================
   No Results
   ========================================= */
.aigner-no-results {
  text-align: center !important;
  padding: 40px 24px !important;
  color: var(--ac-gray-500) !important;
  }

.aigner-no-results svg {
	margin-bottom: 16px !important;
	opacity: 0.3 !important;
}

.aigner-no-results h3 {
	font-size: 20px !important;
	color: var(--ac-gray-700) !important;
	margin-bottom: 8px !important;
}

.aigner-no-results p {
	margin-bottom: 20px !important;
}

.aigner-btn-reset {
	display: inline-flex !important;
	align-items: center !important;
	padding: 10px 24px !important;
	background: var(--ac-green) !important;
	color: var(--ac-white) !important;
	border-radius: 0 !important;
	text-decoration: none !important;
	font-weight: 600 !important;
	font-size: 14px !important;
	transition: background var(--ac-transition) !important;
}

.aigner-btn-reset:hover {
	background: var(--ac-green-dark) !important;
	color: var(--ac-white) !important;
}

/* =========================================
   Detail View – Breadcrumb
   ========================================= */
.aigner-breadcrumb {
	display: flex !important;
	align-items: center !important;
	justify-content: space-between !important;
	margin-bottom: 20px !important;
	flex-wrap: wrap !important;
	gap: 8px !important;
}

.aigner-back-link {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	color: var(--ac-green) !important;
	text-decoration: none !important;
	transition: gap var(--ac-transition) !important;
}

.aigner-back-link:hover {
	gap: 2px !important;
	color: var(--ac-green-dark) !important;
}

.aigner-anzeigen-nr {
	font-size: 13px !important;
	color: var(--ac-gray-500) !important;
}

/* =========================================
   Detail View – Layout
   ========================================= */
.aigner-detail-header {
	margin-bottom: 20px !important;
}

.aigner-detail-title {
	font-size: clamp(22px, 3vw, 32px) !important;
	font-weight: 800 !important;
	margin: 0 !important;
	color: var(--ac-dark) !important;
	line-height: 1.2 !important;
}

.aigner-detail-main {
	display: grid !important;
	grid-template-columns: 1fr 320px !important;
	gap: 32px !important;
	align-items: start !important;
}

@media (max-width: 900px) {
	.aigner-detail-main {
		grid-template-columns: 1fr !important;
	}
}

/* =========================================
   Gallery
   ========================================= */
.aigner-galerie {
	margin-bottom: 32px !important;
}

.aigner-galerie-main {
	position: relative !important;
	border-radius: 0 !important;
	overflow: hidden !important;
	background: var(--ac-gray-100) !important;
	cursor: pointer !important;
	aspect-ratio: 16/10 !important;
}

.aigner-main-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
	transition: transform 0.35s ease !important;
}

.aigner-galerie-main:hover .aigner-main-image {
	transform: scale(1.02) !important;
}

.aigner-galerie-nav {
	position: absolute !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	background: rgba(0,0,0,0.55) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	width: 44px !important;
	height: 44px !important;
	font-size: 28px !important;
	line-height: 1 !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background var(--ac-transition) !important;
	z-index: 2 !important;
}

.aigner-galerie-nav:hover {
	background: rgba(0,0,0,0.75) !important;
}

.aigner-galerie-prev { left: 12px; }
.aigner-galerie-next { right: 12px; }

.aigner-galerie-thumbs {
	display: flex !important;
	gap: 8px !important;
	margin-top: 10px !important;
	flex-wrap: nowrap !important;
	overflow-x: auto !important;
	padding-bottom: 4px !important;
}

.aigner-thumb-btn {
	position: relative !important;
	flex-shrink: 0 !important;
	width: 80px !important;
	height: 60px !important;
	border-radius: 0 !important;
	overflow: hidden !important;
	border: 2px solid transparent !important;
	cursor: pointer !important;
	padding: 0 !important;
	background: none !important;
	transition: border-color var(--ac-transition) !important;
}

.aigner-thumb-btn img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	display: block !important;
}

.aigner-thumb-btn:hover,
.aigner-thumb-btn.aigner-thumb-active {
	border-color: var(--ac-green) !important;
}

.aigner-more-overlay {
	position: absolute !important;
	inset: 0 !important;
	background: rgba(0,0,0,0.55) !important;
	color: #fff !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-size: 13px !important;
	font-weight: 700 !important;
}

.aigner-no-image-placeholder {
	aspect-ratio: 16/10 !important;
	background: var(--ac-gray-100) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	border-radius: 0 !important;
	color: var(--ac-gray-300) !important;
	margin-bottom: 32px !important;
}

/* =========================================
   Detail – Sections
   ========================================= */
.aigner-section {
	background: var(--ac-white) !important;
	border: 1px solid var(--ac-border) !important;
	border-radius: 0 !important;
	padding: 24px !important;
	margin-bottom: 20px !important;
}

.aigner-section-title {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.6px !important;
	color: var(--ac-gray-700) !important;
	margin: 0 0 18px 0 !important;
	padding-bottom: 14px !important;
	border-bottom: 2px solid var(--ac-gray-100) !important;
}

/* Technische Daten Table */
.aigner-tech-table {
	width: 100% !important;
	border-collapse: collapse !important;
	font-size: 14px !important;
}

.aigner-tech-table tr {
	border-bottom: 1px solid var(--ac-gray-100) !important;
}

.aigner-tech-table tr:last-child {
	border-bottom: none !important;
}

.aigner-tech-label {
	padding: 10px 0 !important;
	color: var(--ac-gray-500) !important;
	width: 50% !important;
}

.aigner-tech-value {
	padding: 10px 0 !important;
	font-weight: 600 !important;
	color: var(--ac-gray-900) !important;
}

/* Eigenschaften */
.aigner-eigenschaften-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)) !important;
	gap: 8px !important;
}

.aigner-eigenschaft-item {
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	font-size: 14px !important;
	color: var(--ac-gray-700) !important;
}

.aigner-check-icon {
	color: var(--ac-green) !important;
	flex-shrink: 0 !important;
}

/* Beschreibung */
.aigner-beschreibung-text {
	font-size: 15px !important;
	line-height: 1.75 !important;
	color: var(--ac-gray-700) !important;
}

.aigner-beschreibung-text p {
	margin-top: 0 !important;
	margin-bottom: 12px !important;
}

/* =========================================
   Detail Right – Preis Box
   ========================================= */
.aigner-preis-box {
	background: var(--ac-gray-900) !important;
	color: var(--ac-white) !important;
	border-radius: 0 !important;
	padding: 24px !important;
	margin-bottom: 16px !important;
	position: sticky !important;
	top: 24px !important;
}

.aigner-preis-box .aigner-preis-haupt {
	font-size: 32px !important;
	color: var(--ac-white) !important;
	margin-bottom: 4px !important;
}

.aigner-preis-box .aigner-alter-preis-box {
	font-size: 13px !important;
	color: rgba(255,255,255,0.6) !important;
	margin-bottom: 4px !important;
}

.aigner-preis-box .aigner-mwst-hint {
	font-size: 12px !important;
	color: rgba(255,255,255,0.55) !important;
	margin-bottom: 18px !important;
}

.aigner-preis-box .aigner-preis-auf-anfrage {
	font-size: 18px !important;
	color: rgba(255,255,255,0.85) !important;
	margin-bottom: 18px !important;
}

.aigner-anfrage-btn {
	width: 100% !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	padding: 14px 20px !important;
	background: var(--ac-green) !important;
	color: var(--ac-white) !important;
	border: none !important;
	border-radius: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	font-family: var(--ac-font) !important;
	cursor: pointer !important;
	transition: background var(--ac-transition) !important;
	margin-top: 12px !important;
}

.aigner-anfrage-btn:hover {
	background: var(--ac-green-light) !important;
}

/* =========================================
   Anfrage Form
   ========================================= */
.aigner-anfrage-form-wrapper {
	background: var(--ac-white) !important;
	border: 1px solid var(--ac-border) !important;
	border-radius: 0 !important;
	padding: 24px !important;
	margin-bottom: 16px !important;
}

.aigner-form-title {
	font-size: 16px !important;
	font-weight: 700 !important;
	margin: 0 0 18px 0 !important;
	color: var(--ac-gray-900) !important;
}

.aigner-form-group {
	margin-bottom: 14px !important;
}

.aigner-form-group label {
	display: block !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: var(--ac-gray-700) !important;
	margin-bottom: 5px !important;
}

.aigner-form-input {
	width: 100% !important;
	padding: 10px 12px !important;
	border: 1px solid var(--ac-border) !important;
	border-radius: 0 !important;
	font-size: 14px !important;
	font-family: var(--ac-font) !important;
	color: var(--ac-gray-900) !important;
	background: var(--ac-white) !important;
	transition: border-color var(--ac-transition), box-shadow var(--ac-transition) !important;
	outline: none !important;
}

.aigner-form-input:focus {
	border-color: var(--ac-green) !important;
	box-shadow: none !important;
}

.aigner-form-textarea {
	resize: vertical !important;
	min-height: 90px !important;
}

.aigner-form-submit {
	width: 100% !important;
	padding: 12px !important;
	background: var(--ac-green) !important;
	color: var(--ac-white) !important;
	border: none !important;
	border-radius: 0 !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	font-family: var(--ac-font) !important;
	cursor: pointer !important;
	transition: background var(--ac-transition) !important;
}

.aigner-form-submit:hover {
	background: var(--ac-green-dark) !important;
}

.aigner-form-submit:disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
}

.aigner-form-status {
	padding: 10px 14px !important;
	border-radius: 0 !important;
	font-size: 14px !important;
	margin-bottom: 12px !important;
}

.aigner-form-status.aigner-status-success {
	background: #e8f5e9 !important;
	color: #2e7d32 !important;
	border: 1px solid #a5d6a7 !important;
}

.aigner-form-status.aigner-status-error {
	background: #ffebee !important;
	color: #c62828 !important;
	border: 1px solid #ef9a9a !important;
}

/* =========================================
   Meta Box
   ========================================= */
.aigner-meta-box {
	background: var(--ac-white) !important;
	border: 1px solid var(--ac-border) !important;
	border-radius: 0 !important;
	overflow: hidden !important;
}

.aigner-meta-row {
	display: flex !important;
	justify-content: space-between !important;
	padding: 12px 18px !important;
	border-bottom: 1px solid var(--ac-gray-100) !important;
	font-size: 14px !important;
	gap: 12px !important;
}

.aigner-meta-row:last-child {
	border-bottom: none !important;
}

.aigner-meta-label {
	color: var(--ac-gray-500) !important;
	font-weight: 500 !important;
	flex-shrink: 0 !important;
}

.aigner-meta-value {
	color: var(--ac-gray-900) !important;
	font-weight: 600 !important;
	text-align: right !important;
}

/* =========================================
   Lightbox
   ========================================= */
.aigner-lightbox {
	position: fixed !important;
	inset: 0 !important;
	background: rgba(0,0,0,0.92) !important;
	z-index: 99999 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.aigner-lightbox-content {
	max-width: 90vw !important;
	max-height: 90vh !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
}

.aigner-lightbox-content img {
	max-width: 100% !important;
	max-height: 90vh !important;
	object-fit: contain !important;
	border-radius: 0 !important;
}

.aigner-lightbox-close {
	position: fixed !important;
	top: 20px !important;
	right: 24px !important;
	background: rgba(255,255,255,0.15) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	width: 44px !important;
	height: 44px !important;
	font-size: 24px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background var(--ac-transition) !important;
	z-index: 100000 !important;
}

.aigner-lightbox-close:hover {
	background: rgba(255,255,255,0.3) !important;
}

.aigner-lightbox-prev,
.aigner-lightbox-next {
	position: fixed !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	background: rgba(255,255,255,0.15) !important;
	color: #fff !important;
	border: none !important;
	border-radius: 0 !important;
	width: 52px !important;
	height: 52px !important;
	font-size: 32px !important;
	cursor: pointer !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	transition: background var(--ac-transition) !important;
	z-index: 100000 !important;
}

.aigner-lightbox-prev { left: 16px; }
.aigner-lightbox-next { right: 16px; }

.aigner-lightbox-prev:hover,
.aigner-lightbox-next:hover {
	background: rgba(255,255,255,0.3) !important;
}

.aigner-lightbox-counter {
	position: fixed !important;
	bottom: 20px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	color: rgba(255,255,255,0.7) !important;
	font-size: 14px !important;
	font-family: var(--ac-font) !important;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 640px) {
	.aigner-inserate-list {
		grid-template-columns: 1fr !important;
	}

	.aigner-eigenschaften-list {
		grid-template-columns: 1fr 1fr !important;
	}

	.aigner-preis-box {
		position: static !important;
	}

	.aigner-detail-right {
		order: -1 !important;
	}

	.aigner-galerie-thumbs {
		gap: 6px !important;
	}

	.aigner-thumb-btn {
		width: 64px !important;
		height: 48px !important;
	}

	.aigner-lightbox-prev { left: 6px; }
	.aigner-lightbox-next { right: 6px; }
}

  /* =========================================
     Visual Editor Section Content
     ========================================= */
  .aigner-section-content {
      font-size: 15px !important;
      line-height: 1.7 !important;
      color: var(--ac-gray-700) !important;
  }

  .aigner-section-content > *:first-child { margin-top: 0; }
  .aigner-section-content > *:last-child  { margin-bottom: 0; }

  .aigner-section-content p {
      margin: 0 0 12px 0 !important;
  }

  .aigner-section-content ul,
  .aigner-section-content ol {
      margin: 0 0 12px 0 !important;
      padding-left: 22px !important;
  }

  .aigner-section-content li {
      margin-bottom: 6px !important;
  }

  .aigner-section-content ul li::marker {
      color: var(--ac-green) !important;
  }

  .aigner-section-content table {
      width: 100% !important;
      border-collapse: collapse !important;
      font-size: 14px !important;
      margin: 0 0 12px 0 !important;
  }

  .aigner-section-content table tr {
      border-bottom: 1px solid var(--ac-gray-100) !important;
  }

  .aigner-section-content table tr:last-child {
      border-bottom: none !important;
  }

  .aigner-section-content table td,
  .aigner-section-content table th {
      padding: 10px 12px !important;
      text-align: left !important;
      vertical-align: top !important;
  }

  .aigner-section-content table th,
  .aigner-section-content table td:first-child {
      color: var(--ac-gray-500) !important;
      font-weight: 600 !important;
  }

  .aigner-section-content table td:last-child {
      color: var(--ac-gray-900) !important;
      font-weight: 600 !important;
  }

  .aigner-section-content strong { color: var(--ac-gray-900); }
  .aigner-section-content a {
      color: var(--ac-green) !important;
      text-decoration: underline !important;
  }

  .aigner-card-marke {
      font-size: 13px !important;
      color: var(--ac-gray-500) !important;
      margin-bottom: 6px !important;
      font-weight: 500 !important;
  }
  

  /* Wrapper Spacing Reset */
  .aigner-inserate-wrapper,
  .aigner-detail-wrapper {
  margin: 0 auto !important;
  padding: 0 !important;
  max-width: 100% !important;
  }
  .aigner-inserate-wrapper > *:first-child,
  .aigner-detail-wrapper > *:first-child {
  margin-top: 0 !important;
  }
  .aigner-inserate-wrapper > *:last-child,
  .aigner-detail-wrapper > *:last-child {
  margin-bottom: 0 !important;
  }
  