
  /**
 * Witthöft Immobilien – Anlageimmobilien Listing Styles
 * CDN Version 2.0
 */

.is--analgeimmobilien__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .is--analgeimmobilien__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .is--analgeimmobilien__grid { grid-template-columns: 1fr; gap: 14px; padding: 0 4px; }
}

.wh-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  position: relative;
  font-family: 'Encode Sans', sans-serif;
}
.wh-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}

.wh-card__img-wrap {
  position: relative !important;
  width: 100% !important;
  aspect-ratio: 4 / 3;
  overflow: hidden !important;
  background: #f0f0f0;
}
.wh-card__slides {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  height: 100% !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
}
.wh-card__slide {
  min-width: 100% !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  overflow: hidden !important;
}
.wh-card__slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.wh-card__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.2s ease;
  z-index: 6;
  color: #1a1a1a;
  padding: 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.wh-card:hover .wh-card__arrow { opacity: 1; }
.wh-card__arrow:hover { background: #038c8d; color: #fff; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.wh-card__arrow--left { left: 10px; }
.wh-card__arrow--right { right: 10px; }

.wh-card__dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 6;
}
.wh-card:hover .wh-card__dots { opacity: 1; }
@media (max-width: 768px) {
  .wh-card__dots { opacity: 1; }
  .wh-card__arrow { display: none; }
}
.wh-card__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background 0.2s ease;
}
.wh-card__dot.wh-dot-active { background: #fff; }

.wh-card__badge {
  position: absolute;
  top: 0; left: 0;
  background: rgba(3, 140, 141, 0.65);
  color: #fff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 12px 20px;
  border-bottom-right-radius: 3px;
  z-index: 5;
}

.wh-card__sold-badge {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(3, 140, 141, 0.92);
  color: #fff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  padding: 7px 14px;
  border-radius: 3px;
  z-index: 5;
}

.wh-card__body { padding: 18px 20px 16px; }
@media (max-width: 600px) { .wh-card__body { padding: 14px 16px; } }

.wh-card__title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 600px) { .wh-card__title { font-size: 16px; } }

.wh-card__location {
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  color: #777;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.wh-card__location::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #038c8d;
  flex-shrink: 0;
}

.wh-card__facts {
  display: flex;
  align-items: flex-end;
  border-top: 1px solid #eee;
  padding-top: 14px;
  gap: 0;
}
.wh-card__fact {
  flex: 1;
  min-width: 0;
  padding-right: 10px;
}
.wh-card__fact:not(:last-of-type) {
  border-right: 1px solid #eee;
  margin-right: 10px;
}
.wh-card__fact-icon {
  display: block;
  margin-bottom: 3px;
  color: #038c8d;
}
.wh-card__fact-icon svg {
  width: 14px; height: 14px;
  display: block;
}
.wh-card__fact-value {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: visible;
  text-overflow: unset;
}
.wh-card__fact-label {
  font-family: 'Encode Sans', sans-serif;
  font-size: 9px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}
@media (max-width: 600px) {
  .wh-card__fact-value { font-size: 12px; }
  .wh-card__fact-label { font-size: 8px; }
}

.wh-card__cta {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #f2f2f2;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  margin-left: auto;
  color: #333;
}
.wh-card:hover .wh-card__cta { background: #038c8d; color: #fff; }
.wh-card__cta svg { width: 15px; height: 15px; }

.wh-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: #999;
  font-size: 16px;
  font-family: 'Encode Sans', sans-serif;
}
.wh-empty-funnel { display: none; }
.wh-empty-funnel.is--visible { display: block; }

.wh-load-more {
  grid-column: 1 / -1;
  text-align: center;
  padding: 32px 0 0;
}
.wh-load-more button {
  background: #038c8d;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 3px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}
.wh-load-more button:hover { background: #026d6e; }

@keyframes wh-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.wh-skeleton-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.wh-skeleton-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: wh-shimmer 1.4s ease-in-out infinite;
}
.wh-skeleton-body { padding: 18px 20px 16px; }
.wh-skeleton-line {
  border-radius: 3px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: wh-shimmer 1.4s ease-in-out infinite;
}
.wh-skeleton-title { height: 18px; width: 85%; margin-bottom: 8px; }
.wh-skeleton-sub { height: 13px; width: 45%; margin-bottom: 18px; }
.wh-skeleton-facts { display: flex; gap: 10px; border-top: 1px solid #eee; padding-top: 14px; }
.wh-skeleton-fact {
  flex: 1; height: 34px; border-radius: 3px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 400px 100%;
  animation: wh-shimmer 1.4s ease-in-out infinite;
}