@charset "UTF-8";
.lp-auto {
  margin: 12px auto;
  width: 100%;
  max-width: 1200px;
  padding: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .lp-auto {
    margin: 10px auto;
  }
}
@media (max-width: 600px) {
  .lp-auto {
    margin: 6px auto;
  }
}

/* ===== LAYOUT & GRUNDSTRUKTUREN ===== */
.lp-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 12px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.lp-quarter {
  grid-column: 1;
}

.lp-threequarter {
  grid-column: 2;
}

.lp-margin-bottom {
  margin-bottom: 12px;
}

.lp-margin-top {
  margin-top: 12px;
}

.lp-margin-left {
  margin-left: 12px;
}

.lp-white {
  background-color: var(--color-bg-body);
  color: var(--color-text-primary);
}
@media (prefers-color-scheme: light) {
  .lp-white {
    background-color: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-white {
    background-color: #1a2332;
  }
}
html[data-theme="light"] .lp-white {
  background-color: #ffffff;
}
html[data-theme="dark"] .lp-white {
  background-color: #1a2332;
}

.lp-border {
  border: 1px solid var(--color-border);
}

.lp-border-grey {
  border-color: var(--color-border);
}

.lp-round {
  border-radius: 6px;
}

.lp-round-medium {
  border-radius: 4px;
}

.lp-round-large {
  border-radius: 8px;
}

.lp-round-container {
  border-radius: 6px 6px 0 0;
}

.index_boxHeader {
  padding: 10px 12px;
  border-bottom: 1px solid var(--color-border);
}
@media (prefers-color-scheme: light) {
  .index_boxHeader {
    background: #f8f9fa;
  }
}
@media (prefers-color-scheme: dark) {
  .index_boxHeader {
    background: #0f172a;
  }
}
html[data-theme="light"] .index_boxHeader {
  background: #f8f9fa;
}
html[data-theme="dark"] .index_boxHeader {
  background: #0f172a;
}
.index_boxHeader h2 {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-primary);
}

.lp-link-original a {
  color: #e89c0a;
}
.lp-link-original a:hover {
  color: #c18208;
  text-decoration: underline;
}

.lp-list-index {
  list-style: none;
  padding: 10px 12px;
  margin: 0;
}
.lp-list-index li {
  padding: 6px 0;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
}
.lp-list-index li:last-child {
  border-bottom: none;
}
.lp-list-index li:before {
  content: "✓ ";
  color: #5ba831;
  font-weight: 700;
  margin-right: 6px;
}

.lp-index-all-categories {
  padding: 10px 12px;
  text-align: center;
  border-top: 1px solid var(--color-border);
  margin: 0;
}
.lp-index-all-categories a {
  font-weight: 600;
  color: #e89c0a;
}
.lp-index-all-categories a:hover {
  text-decoration: underline;
}

.lp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
  line-height: 1;
  min-height: 44px;
  width: auto;
}
.lp-button:hover {
  background: rgba(232, 156, 10, 0.05);
  border-color: #e89c0a;
  color: #e89c0a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(232, 156, 10, 0.1);
}
.lp-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(232, 156, 10, 0.05);
}
.lp-button:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
@media (prefers-color-scheme: light) {
  .lp-button {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-button {
    background: #1a2332;
  }
}
html[data-theme="light"] .lp-button {
  background: #ffffff;
}
html[data-theme="dark"] .lp-button {
  background: #1a2332;
}

.lp-button-secondary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}
.lp-button-secondary:hover {
  background: rgba(232, 156, 10, 0.05);
  border-color: #e89c0a;
  color: #e89c0a;
}

.lp-center {
  text-align: center;
}

.lp-padding-16 {
  padding: 12px;
}

.lp-container {
  padding: 10px 12px;
}

.lp-info-banner {
  position: relative;
  padding: 40px;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}
.lp-info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.lp-info-content {
  position: relative;
  z-index: 2;
  color: white;
}
.lp-info-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}
.lp-info-content p {
  font-size: 1rem;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.lp-info-content a {
  display: inline-block;
  padding: 6px 12px;
  background: var(--color-bg-secondary) !important;
  color: var(--color-text-primary) !important;
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border) !important;
}
.lp-info-content a:hover {
  background: rgba(232, 156, 10, 0.05) !important;
  color: #e89c0a !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-color: #e89c0a !important;
  transform: translateY(-2px);
}
.lp-info-content a:active {
  background: rgba(232, 156, 10, 0.1) !important;
  color: #e89c0a !important;
  transform: translateY(0);
}
.lp-info-content a:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
@media (prefers-color-scheme: light) {
  .lp-info-content a {
    background: #ffffff !important;
    color: var(--color-text-primary) !important;
    border-color: var(--color-border) !important;
  }
  .lp-info-content a:hover {
    background: rgba(232, 156, 10, 0.05) !important;
    border-color: #e89c0a !important;
    color: #e89c0a !important;
  }
  .lp-info-content a:active {
    background: rgba(232, 156, 10, 0.1) !important;
    color: #e89c0a !important;
  }
}
@media (prefers-color-scheme: dark) {
  .lp-info-content a {
    background: #1a2332 !important;
    color: #f1f5f9 !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
  }
  .lp-info-content a:hover {
    background: rgba(232, 156, 10, 0.1) !important;
    border-color: #e89c0a !important;
    color: #e89c0a !important;
  }
  .lp-info-content a:active {
    background: rgba(232, 156, 10, 0.15) !important;
    color: #e89c0a !important;
  }
}
html[data-theme="light"] .lp-info-content a {
  background: #ffffff !important;
  color: var(--color-text-primary) !important;
  border-color: var(--color-border) !important;
}
html[data-theme="light"] .lp-info-content a:hover {
  background: rgba(232, 156, 10, 0.05) !important;
  border-color: #e89c0a !important;
  color: #e89c0a !important;
}
html[data-theme="light"] .lp-info-content a:active {
  background: rgba(232, 156, 10, 0.1) !important;
  color: #e89c0a !important;
}
html[data-theme="dark"] .lp-info-content a {
  background: #1a2332 !important;
  color: #f1f5f9 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}
html[data-theme="dark"] .lp-info-content a:hover {
  background: rgba(232, 156, 10, 0.1) !important;
  border-color: #e89c0a !important;
  color: #e89c0a !important;
}
html[data-theme="dark"] .lp-info-content a:active {
  background: rgba(232, 156, 10, 0.15) !important;
  color: #e89c0a !important;
}

.lp-small-button {
  padding: 6px 10px;
  font-size: 13px;
  background-color: #e89c0a;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.lp-small-button:hover {
  background-color: #c18208;
  text-decoration: none;
}
.lp-small-button:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.lp-center {
  text-align: center;
}

.lp-padding-16 {
  padding: 12px;
}

.lp-container {
  padding: 10px 12px;
}

/* ===== INFO BANNER - ERSTELLE JETZT DEINE ANZEIGE ===== */
.lp-info-banner {
  position: relative;
  padding: 40px;
  background-size: cover;
  background-position: center center;
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  /* ✅ Dunkler Overlay für bessere Lesbarkeit */
}
.lp-info-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  /* ✅ 50% dunkler Overlay */
  z-index: 1;
}

.lp-info-content {
  position: relative;
  z-index: 2;
  /* ✅ Über dem Overlay */
  color: white;
}
.lp-info-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* ✅ Text Shadow für mehr Lesbarkeit */
  line-height: 1.3;
}
.lp-info-content p {
  font-size: 1rem;
  margin: 0 0 12px 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  /* ✅ Text Shadow */
}
.lp-info-content a {
  display: inline-block;
  padding: 12px 24px;
  background: #e89c0a;
  /* ✅ Orange Button */
  color: white !important;
  /* ✅ Weißer Text */
  text-decoration: none !important;
  font-weight: 600;
  border-radius: 4px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.lp-info-content a:hover {
  background: #c18208;
  color: white !important;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
@media (prefers-reduced-motion: no-preference) {
  .lp-info-content a:hover {
    transform: translateY(-2px);
  }
}
.lp-info-content a:active {
  background: #ad7507 !important;
  color: white !important;
  transform: translateY(0);
}
.lp-info-content a:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.lp-small-button {
  /* ✅ Wird durch .lp-info-content a überschrieben */
}

.lp-margin-left {
  margin-left: 10px !important;
}

.lp-gallery {
  margin-bottom: 18px;
}

.gallery-section {
  background: var(--color-bg-body);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 18px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.gallery-header h2 {
  margin: 0;
  font-size: 16px;
  color: var(--color-text-primary);
}
.gallery-header .gallery-edit-link {
  color: #e89c0a;
  font-size: 13px;
  text-decoration: none;
}
.gallery-header .gallery-edit-link:hover {
  text-decoration: underline;
}

.gallery-controls {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  justify-content: center;
}

.gallery-btn {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  width: 44px;
  height: 44px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.gallery-btn:hover {
  background: rgba(232, 156, 10, 0.05);
  border-color: #e89c0a;
  color: #e89c0a;
  transform: scale(1.05);
}
.gallery-btn:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
@media (prefers-color-scheme: light) {
  .gallery-btn {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .gallery-btn {
    background: #1a2332;
  }
}
html[data-theme="light"] .gallery-btn {
  background: #ffffff;
}
html[data-theme="dark"] .gallery-btn {
  background: #1a2332;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.gallery-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.gallery-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.gallery-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.gallery-item-link:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: -2px;
}
.gallery-item-link:visited {
  color: inherit;
}

.gallery-item-image {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
}
.gallery-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-count {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 3px 6px;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
}

.gallery-item-title {
  font-size: 13px;
  margin: 10px;
  margin-bottom: 6px;
  color: var(--color-text-primary);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.gallery-item-location {
  position: absolute;
  /* ✅ Absolute Position */
  bottom: 4px;
  /* ✅ Unten */
  left: 4px;
  /* ✅ Links */
  display: flex;
  align-items: center;
  gap: 3px;
  /* ✅ Abstand zwischen Icon und Text */
  color: var(--color-text-muted);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255, 255, 255, 0.9);
  /* ✅ Weißer Hintergrund für Lesbarkeit */
  padding: 2px 6px;
  /* ✅ Padding innen */
  border-radius: 2px;
  z-index: 10;
  /* ✅ Über Bild, unter Preis */
  line-height: 1.3;
  max-width: calc(100% - 8px);
  /* ✅ Nicht über den Rand hinaus */
  /* ✅ Dark Mode */
}
@media (prefers-color-scheme: dark) {
  .gallery-item-location {
    background: rgba(26, 35, 50, 0.9);
    /* #1a2332 mit Transparenz */
  }
}
html[data-theme="dark"] .gallery-item-location {
  background: rgba(26, 35, 50, 0.9);
}
.gallery-item-location svg {
  flex-shrink: 0;
  /* ✅ Icon behält Größe */
}
.gallery-item-location span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gallery-item-type {
  padding: 6px 10px;
  font-size: 13px;
}

.gallery-badge {
  display: inline-block;
  background: rgba(232, 156, 10, 0.2);
  color: #e89c0a;
  padding: 3px 6px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
}

.gallery-item-price {
  padding: 6px 10px 10px;
}

.price-badge {
  display: inline-block;
  padding: 3px 5px;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
  background: rgba(0, 0, 0, 0.75);
  color: white;
}
.price-badge.free {
  background: rgba(91, 168, 49, 0.9);
  color: white;
}
.price-badge.negotiable {
  background: rgba(212, 161, 55, 0.9);
  color: white;
}
.price-badge.fixed {
  background: rgba(91, 168, 49, 0.9);
  color: white;
}

.classifieds-section {
  margin-bottom: 18px;
}

.classifieds-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}

.classified-box {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  /* ✅ WICHTIG: overflow: hidden damit Location nicht übersteht */
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
@media (prefers-color-scheme: light) {
  .classified-box {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .classified-box {
    background: #1a2332;
  }
}
html[data-theme="light"] .classified-box {
  background: #ffffff;
}
html[data-theme="dark"] .classified-box {
  background: #1a2332;
}

.classified-link {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-decoration: none;
  color: inherit;
  position: relative;
  /* ✅ Für absolute Children */
}
.classified-link:hover {
  text-decoration: none;
}
.classified-link:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: -2px;
}
.classified-link:visited {
  color: inherit;
}

.classified-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  flex-shrink: 0;
}
.classified-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.classified-image-container:hover img {
  transform: scale(1.05);
}

.classified-favorite {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  min-width: 28px;
  /* ✅ NEU: Überschreibt die globale 44px Regel */
  min-height: 28px;
  /* ✅ NEU: Überschreibt die globale 44px Regel */
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  transition: all 0.2s ease;
  z-index: 30;
}
.classified-favorite::before {
  content: "★";
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.classified-favorite:hover {
  background: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
}
.classified-favorite.bookmarked {
  color: #e89c0a;
  background: rgba(0, 0, 0, 0.5);
}
.classified-favorite.bookmarked:hover {
  background: rgba(0, 0, 0, 0.7);
}

.classified-price {
  position: absolute;
  bottom: 0;
  /* ✅ Direkt am unteren Rand */
  right: 0;
  /* ✅ Direkt am rechten Rand */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  /* ✅ VON: 2px → 0 (kein Abstand zwischen Elementen) */
  font-size: 0.8125rem;
  font-weight: 700;
  color: #5ba831;
  z-index: 15;
  line-height: 1;
  margin: 0;
  padding: 0;
  /* ✅ VON: 2px 3px → 0 (kein Padding) */
}

.price-badge {
  display: inline-block;
  padding: 3px 5px;
  /* ✅ VON: 2px 4px → 3px 5px (etwas Abstand innen) */
  border-radius: 0;
  /* ✅ VON: $radius-sm → 0 (eckig am Rand) */
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.2;
  background: rgba(0, 0, 0, 0.75);
  color: white;
}
.price-badge.free {
  background: rgba(91, 168, 49, 0.9);
  color: white;
}
.price-badge.negotiable {
  background: rgba(212, 161, 55, 0.9);
  color: white;
}
.price-badge.fixed {
  background: rgba(91, 168, 49, 0.9);
  color: white;
}

/* ===== PROMO BOX STYLES ===== */
.promo-box {
  background: linear-gradient(135deg, rgba(232, 156, 10, 0.1) 0%, rgba(91, 168, 49, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  min-height: 220px;
}

.promo-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
}
.promo-link:hover {
  text-decoration: none;
}
.promo-link:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}

.promo-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
  width: 100%;
}

.promo-logo {
  max-width: 120px;
  height: auto;
  object-fit: contain;
}

.promo-text-only {
  font-size: 17px;
  font-weight: 700;
  color: #e89c0a;
}

.promo-text {
  font-size: 13px;
  color: var(--color-text-secondary);
  max-width: 200px;
  line-height: 1.5;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.3px;
  line-height: 1;
  min-height: 44px;
  width: auto;
}
.promo-cta:hover {
  background: rgba(232, 156, 10, 0.05);
  border-color: #e89c0a;
  color: #e89c0a;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(232, 156, 10, 0.1);
}
.promo-cta:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(232, 156, 10, 0.05);
}
.promo-cta:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
@media (prefers-color-scheme: light) {
  .promo-cta {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .promo-cta {
    background: #1a2332;
  }
}
html[data-theme="light"] .promo-cta {
  background: #ffffff;
}
html[data-theme="dark"] .promo-cta {
  background: #1a2332;
}

/* ===== SEARCH LOCATIONS (AUSGEWÄHLTE STÄDTE) ===== */
.search-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
  padding: 10px 12px;
}

.search-location-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
  min-height: 44px;
  /* ✅ Touch Target Mindestgröße */
  line-height: 1.4;
  /* ✅ Light Mode */
  /* ✅ Dark Mode */
}
.search-location-link:hover {
  background: rgba(232, 156, 10, 0.1);
  border-color: #e89c0a;
  color: #e89c0a;
}
.search-location-link:focus-visible {
  outline: 2px solid #e89c0a;
  outline-offset: 2px;
}
.search-location-link:active {
  transform: scale(0.98);
}
@media (prefers-color-scheme: light) {
  .search-location-link {
    background: #ffffff;
  }
}
@media (prefers-color-scheme: dark) {
  .search-location-link {
    background: #1a2332;
  }
}
html[data-theme="light"] .search-location-link {
  background: #ffffff;
}
html[data-theme="dark"] .search-location-link {
  background: #1a2332;
}

.classified-title {
  font-size: 0.8125rem;
  padding: 6px 6px 4px;
  color: var(--color-text-primary);
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  flex-shrink: 0;
  margin: 0;
  /* ✅ Light Mode - Explizit Dunkelgrau */
  /* ✅ Dark Mode - Weiß */
}
@media (prefers-color-scheme: light) {
  .classified-title {
    color: #1f2937;
  }
}
@media (prefers-color-scheme: dark) {
  .classified-title {
    color: #f1f5f9;
  }
}
html[data-theme="light"] .classified-title {
  color: #1f2937;
  /* ✅ Dunkelgrau im Light Mode */
}
html[data-theme="dark"] .classified-title {
  color: #f1f5f9;
  /* ✅ Weiß im Dark Mode */
}

@media (max-width: 1024px) {
  .search-locations-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  .classifieds-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .lp-info-banner {
    padding: 30px;
  }

  .lp-info-content h3 {
    font-size: 1.25rem;
  }
  .lp-info-content p {
    font-size: 0.95rem;
  }
  .lp-info-content a {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .classifieds-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .classified-title {
    font-size: 0.75rem;
    padding: 4px 3px 3px;
    line-height: 1.3;
  }

  .classified-location {
    bottom: 3px;
    left: 3px;
    font-size: 0.6875rem;
    padding: 2px 4px;
    gap: 2px;
  }

  .classified-price {
    bottom: 0;
    right: 0;
    font-size: 0.75rem;
  }
  .classified-price .price-badge {
    font-size: 0.6875rem;
    padding: 2px 4px;
  }

  .lp-info-banner {
    padding: 24px;
    margin-bottom: 10px;
  }
  .lp-info-banner::before {
    background: rgba(0, 0, 0, 0.6);
    /* ✅ Noch dunkler auf Mobile */
  }

  .lp-info-content h3 {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  .lp-info-content p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .lp-info-content a {
    display: block;
    padding: 12px 16px;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 6px;
  }
  .lp-info-content a:last-child {
    margin-bottom: 0;
  }

  .lp-margin-left {
    margin-left: 0 !important;
    margin-top: 6px;
  }
}
@media (max-width: 600px) {
  .search-locations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    padding: 6px;
  }

  .search-location-link {
    padding: 6px;
    min-height: 40px;
    font-size: 13px;
  }

  .classifieds-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }

  .classified-title {
    font-size: 0.6875rem;
    padding: 3px 3px 2px;
    line-height: 1.25;
  }

  .classified-location {
    bottom: 2px;
    left: 2px;
    font-size: 0.625rem;
    padding: 1px 3px;
    gap: 2px;
  }

  .classified-price {
    bottom: 0;
    right: 0;
    font-size: 0.6875rem;
  }
  .classified-price .price-badge {
    font-size: 0.625rem;
    padding: 2px 3px;
  }

  .lp-info-banner {
    padding: 16px;
    border-radius: 2px;
  }
  .lp-info-banner::before {
    background: rgba(0, 0, 0, 0.65);
    /* ✅ Noch dunkler */
  }

  .lp-info-content h3 {
    font-size: 1rem;
    margin-bottom: 6px;
  }
  .lp-info-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .lp-info-content a {
    display: block;
    padding: 10px 14px;
    font-size: 0.9rem;
    margin-bottom: 3px;
  }

  .lp-main-wrapper {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  .lp-main-wrapper {
    padding: 0 10px;
  }
}
