/**
 * ============================================================================
 * dg-fhoh landingpage.css — Frontend-Styles
 * ============================================================================
 * v0.2.0  Echte Block-Styles für Hero, USP, CTA + Container-Grundgerüst
 *         Stub-Styles bleiben für die noch nicht implementierten Blocks.
 *
 * Design-System:
 *   - Silber-Gradient Hintergrund (#f8fafc → #e2e8f0)
 *   - Rot #dc2626 als einziger Akzent
 *   - Inter typography
 *   - Rundungen 16–24px
 *   - Glassmorphism nur sparsam (kein backdrop-filter auf großen Flächen wg. CWV)
 * ============================================================================
 */

/* --- Seiten-Container (edge-to-edge für Hero, Container innen für Blocks) --- */
.dg-fhoh-page {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 50%, #f8fafc 100%);
    color: #1e293b;
    line-height: 1.6;

    /* Full-bleed Trick: bricht aus Theme-Containern aus wenn sie eine
       max-width haben. Funktioniert in YooTheme Pro und allen
       Standard-Themes. Wenn das Theme bereits kein max-width wrapper
       hat, sorgt das für keinen negativen Effekt. */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.dg-fhoh-page * {
    box-sizing: border-box;
}

/* ============================================================================
   BLOCK 1: HERO
   ============================================================================ */

.dg-fhoh-hero {
    position: relative;
    min-height: 480px;
    padding: 0;
    background-color: #1e293b;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.dg-fhoh-hero.no-image {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.dg-fhoh-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.35) 0%,
        rgba(15, 23, 42, 0.25) 40%,
        rgba(15, 23, 42, 0.65) 85%,
        rgba(15, 23, 42, 0.85) 100%
    );
    z-index: 1;
}

.dg-fhoh-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* --- Breadcrumb --- */
.dg-fhoh-breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
}

.dg-fhoh-breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.dg-fhoh-breadcrumb a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.dg-fhoh-breadcrumb .sep {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.dg-fhoh-breadcrumb .current {
    color: #ffffff;
    font-weight: 600;
}

/* --- Region-Badge --- */
.dg-fhoh-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    align-self: flex-start;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* --- H1 --- */
.dg-fhoh-hero-h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px 0;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    max-width: 800px;
    letter-spacing: -0.02em;
}

.dg-fhoh-hero-claim {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 640px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* ============================================================================
   BLOCK 2: USP-LEISTE
   ============================================================================ */

.dg-fhoh-usp {
    padding: 40px 24px;
    margin-top: -40px; /* Überlappung mit Hero für Floating-Effect */
    position: relative;
    z-index: 5;
}

.dg-fhoh-usp-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.dg-fhoh-usp-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08),
                0 2px 8px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dg-fhoh-usp-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 48px rgba(15, 23, 42, 0.12),
                0 4px 12px rgba(15, 23, 42, 0.06);
}

.dg-fhoh-usp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc2626;
}

.dg-fhoh-usp-number {
    font-size: 36px;
    font-weight: 800;
    color: #dc2626;
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-usp-number-small {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 6px;
}

.dg-fhoh-usp-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

.dg-fhoh-usp-label small {
    display: block;
    font-size: 11px;
    margin-top: 2px;
    color: #94a3b8;
}

/* ============================================================================
   BLOCK 12: CTA-FOOTER
   ============================================================================ */

.dg-fhoh-cta {
    padding: 60px 24px 80px;
    background: linear-gradient(135deg, #fef2f2 0%, #ffffff 50%, #fef2f2 100%);
    margin-top: 40px;
}

.dg-fhoh-cta-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 20px 60px rgba(220, 38, 38, 0.12),
                0 4px 16px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(254, 226, 226, 0.6);
}

.dg-fhoh-cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.dg-fhoh-cta-title {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.dg-fhoh-cta-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0 0 32px 0;
    line-height: 1.5;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.dg-fhoh-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    align-items: center;
}

.dg-fhoh-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff !important;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    max-width: 100%;
    text-align: center;
}

.dg-fhoh-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.4);
    color: #ffffff !important;
    text-decoration: none;
}

.dg-fhoh-cta-btn-secondary {
    display: inline-block;
    color: #64748b !important;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.2s, color 0.2s;
}

.dg-fhoh-cta-btn-secondary:hover {
    background: rgba(220, 38, 38, 0.05);
    color: #dc2626 !important;
    text-decoration: none;
}

.dg-fhoh-cta-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
    font-size: 13px;
    color: #64748b;
    padding-top: 24px;
    border-top: 1px solid #f1f5f9;
}

/* ============================================================================
   BLOCK 4: SUCHWIDGET
   ============================================================================ */

.dg-fhoh-search {
    padding: 40px 24px 20px;
}

.dg-fhoh-search-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* --- Toggle: Beliebig / Datum festlegen --- */
.dg-fhoh-search-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 4px;
    margin: 0 auto 22px;
    gap: 2px;
}

.dg-fhoh-search-form {
    text-align: center;
}

.dg-fhoh-search-form .dg-fhoh-search-fields,
.dg-fhoh-search-form .dg-fhoh-search-hint {
    text-align: left;
}

.dg-fhoh-search-toggle-btn {
    background: transparent;
    border: none;
    padding: 9px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    font-family: inherit;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.dg-fhoh-search-toggle-btn:hover:not(.is-active) {
    color: #475569;
    background: rgba(255, 255, 255, 0.5);
}

.dg-fhoh-search-toggle-btn.is-active {
    background: #ffffff;
    color: #dc2626;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08),
                0 1px 2px rgba(15, 23, 42, 0.04);
}

/* --- Disabled date-fields (visuelles grayout bei Beliebig) --- */
.dg-fhoh-search-field.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.dg-fhoh-search-field.is-disabled input,
.dg-fhoh-search-field.is-disabled select {
    background: #f1f5f9;
    cursor: not-allowed;
}

.dg-fhoh-search-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px 28px;
    box-shadow: 0 12px 48px rgba(15, 23, 42, 0.08),
                0 2px 8px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.dg-fhoh-search-header {
    text-align: center;
    margin-bottom: 24px;
}

.dg-fhoh-search-title {
    font-size: clamp(20px, 2.6vw, 26px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-search-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* --- Formular --- */
.dg-fhoh-search-form {
    margin-bottom: 24px;
}

.dg-fhoh-search-fields {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}

.dg-fhoh-search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dg-fhoh-search-field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dg-fhoh-search-field label small {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-left: 2px;
}

.dg-fhoh-search-field label svg {
    color: #dc2626;
}

.dg-fhoh-search-field input,
.dg-fhoh-search-field select {
    width: 100%;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #1e293b;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.dg-fhoh-search-field input:focus,
.dg-fhoh-search-field select:focus {
    outline: none;
    border-color: #dc2626;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.dg-fhoh-search-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
    cursor: pointer;
}

.dg-fhoh-search-submit {
    display: flex;
    align-items: flex-end;
}

.dg-fhoh-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

.dg-fhoh-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(220, 38, 38, 0.4);
}

.dg-fhoh-search-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 14px 0 0 0;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

.dg-fhoh-search-hint svg {
    color: #94a3b8;
    flex-shrink: 0;
}

/* --- Filter-Chips --- */
.dg-fhoh-search-chips {
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.dg-fhoh-search-chips-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
    text-align: center;
}

.dg-fhoh-search-chips-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.dg-fhoh-search-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dg-fhoh-search-chip:hover {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
    text-decoration: none;
    transform: translateY(-1px);
}

.dg-fhoh-search-chip.is-active {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border-color: #dc2626;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.dg-fhoh-search-chip.is-active:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.dg-fhoh-search-chip-icon {
    font-size: 16px;
    line-height: 1;
}

.dg-fhoh-search-reset {
    text-align: center;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.dg-fhoh-search-reset a {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease;
}

.dg-fhoh-search-reset a:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* ============================================================================
   BLOCK 5: TOP-HÄUSER-GRID
   ============================================================================ */

.dg-fhoh-houses {
    padding: 60px 24px 40px;
}

.dg-fhoh-houses-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-fhoh-houses-header {
    text-align: center;
    margin-bottom: 36px;
}

.dg-fhoh-houses-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-houses-subtitle {
    font-size: 15px;
    color: #64748b;
    margin: 0;
}

.dg-fhoh-houses-subtitle strong {
    color: #dc2626;
}

.dg-fhoh-houses-filter-note {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 10px;
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

/* --- Grid --- */
.dg-fhoh-house-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.dg-fhoh-house-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06),
                0 1px 4px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

/* v0.5.76: Hidden Cards bleiben display:none — der semantisch reiche
   Anchor-Text (z.B. "Ferienhaus 17-1209 in Klitmöller — 7 Personen — 3 SZ
   — 350 m Strand — ab 538 €/Woche") ist nur für Google's Crawler relevant,
   nicht für menschliche Besucher. Sobald JS hydratisiert, wird der Text
   durch das volle Card-Layout ersetzt. */
.dg-fhoh-house-card.is-hidden {
    display: none;
}

.dg-fhoh-house-card.is-visible {
    display: block;
    animation: dg-fhoh-fade-in 0.4s ease;
}

@keyframes dg-fhoh-fade-in {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.dg-fhoh-house-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12),
                0 4px 12px rgba(15, 23, 42, 0.06);
    border-color: rgba(220, 38, 38, 0.2);
}

.dg-fhoh-house-card-link {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}

.dg-fhoh-house-card-link:hover {
    text-decoration: none !important;
    color: inherit !important;
}

/* --- Bild-Bereich --- */
.dg-fhoh-house-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    overflow: hidden;
}

.dg-fhoh-house-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dg-fhoh-house-card:hover .dg-fhoh-house-card-image img {
    transform: scale(1.05);
}

.dg-fhoh-house-card-noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.dg-fhoh-house-card-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.dg-fhoh-house-card-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dg-fhoh-house-card-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.35);
    font-size: 13px;
    z-index: 2;
    line-height: 1.2;
}

.dg-fhoh-house-card-price strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 2px;
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-house-card-price-label,
.dg-fhoh-house-card-price-unit {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
}

/* --- Body --- */
.dg-fhoh-house-card-body {
    padding: 18px 18px 8px;
}

.dg-fhoh-house-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 6px 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.7em;
}

.dg-fhoh-house-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #64748b;
    margin-bottom: 12px;
}

.dg-fhoh-house-card-location svg {
    color: #dc2626;
    flex-shrink: 0;
}

.dg-fhoh-house-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 12px;
    color: #475569;
    padding: 10px 0;
    border-top: 1px solid #f1f5f9;
}

.dg-fhoh-house-card-meta strong {
    color: #1e293b;
    font-weight: 700;
}

.dg-fhoh-house-card-beach {
    font-size: 11px;
    color: #64748b;
    margin-top: 6px;
    padding: 4px 0;
}

/* --- CTA-Footer der Karte --- */
.dg-fhoh-house-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 18px;
    background: #f8fafc;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid #f1f5f9;
    transition: background 0.2s ease;
}

.dg-fhoh-house-card:hover .dg-fhoh-house-card-cta {
    background: #fef2f2;
}

/* --- Load-More-Button --- */
.dg-fhoh-houses-loadmore {
    display: flex;
    justify-content: center;
    margin: 20px 0 24px;
}

.dg-fhoh-houses-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #dc2626;
    color: #dc2626;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.dg-fhoh-houses-loadmore-btn:hover {
    background: #dc2626;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.25);
}

.dg-fhoh-houses-loadmore-count {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

/* --- Alle-Häuser-Link --- */
.dg-fhoh-houses-allhouses {
    text-align: center;
    padding: 20px 0;
}

.dg-fhoh-houses-allhouses a {
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    transition: background 0.2s ease;
}

.dg-fhoh-houses-allhouses a:hover {
    background: rgba(220, 38, 38, 0.05);
    text-decoration: underline;
}

/* --- Empty-State --- */
.dg-fhoh-houses-empty {
    text-align: center;
    padding: 60px 24px;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #f1f5f9;
    color: #64748b;
}

.dg-fhoh-houses-empty svg {
    color: #cbd5e1;
    margin-bottom: 12px;
}

.dg-fhoh-houses-empty h3 {
    color: #1e293b;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.dg-fhoh-houses-empty p {
    margin: 0;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.dg-fhoh-houses-empty a {
    color: #dc2626;
    font-weight: 600;
}

/* ============================================================================
   BLOCK 6: LEAFLET-KARTE
   ============================================================================ */

.dg-fhoh-map {
    padding: 40px 24px 60px;
}

.dg-fhoh-map-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-fhoh-map-header {
    text-align: center;
    margin-bottom: 28px;
}

.dg-fhoh-map-title {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-map-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.dg-fhoh-map-subtitle strong {
    color: #dc2626;
}

/* --- Karten-Container --- */
.dg-fhoh-map-container {
    width: 100%;
    height: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1),
                0 2px 8px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
    background: #f1f5f9;
    position: relative;
}

.dg-fhoh-map-container .leaflet-container {
    height: 100%;
    width: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f1f5f9;
}

/* --- Loading-Placeholder --- */
.dg-fhoh-map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.dg-fhoh-map-loading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.dg-fhoh-map-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-top-color: #dc2626;
    border-radius: 50%;
    animation: dg-fhoh-spin 0.8s linear infinite;
}

@keyframes dg-fhoh-spin {
    to { transform: rotate(360deg); }
}

/* --- Custom Marker (roter Pin) --- */
.dg-fhoh-map-marker {
    background: transparent !important;
    border: none !important;
}

.dg-fhoh-map-marker-inner {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 3px solid #ffffff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.05);
    transition: transform 0.15s ease;
    position: relative;
}

.dg-fhoh-map-marker-inner::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 7px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-radius: 50%;
}

.dg-fhoh-map-marker:hover .dg-fhoh-map-marker-inner {
    transform: rotate(-45deg) scale(1.15);
    z-index: 1000;
}

/* --- Marker-Cluster (Leaflet.markercluster) --- */
/* Default-Styles des Plugins ausblenden, wir nutzen eigene */
.dg-fhoh-map-container .marker-cluster {
    background: transparent !important;
    border: none !important;
}

.dg-fhoh-map-container .marker-cluster div {
    background: transparent !important;
    color: transparent !important;
    width: 0 !important;
    height: 0 !important;
}

.dg-fhoh-map-container .marker-cluster span {
    display: none !important;
}

/* Custom Cluster-Styles */
.dg-fhoh-cluster {
    background: transparent !important;
    border: none !important;
}

.dg-fhoh-cluster-inner {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    border: 3px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4),
                0 0 0 6px rgba(220, 38, 38, 0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-cluster:hover .dg-fhoh-cluster-inner {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.5),
                0 0 0 8px rgba(220, 38, 38, 0.2);
}

.dg-fhoh-cluster-medium .dg-fhoh-cluster-inner {
    width: 46px;
    height: 46px;
    font-size: 14px;
}

.dg-fhoh-cluster-large .dg-fhoh-cluster-inner {
    width: 54px;
    height: 54px;
    font-size: 15px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5),
                0 0 0 8px rgba(220, 38, 38, 0.18);
}

.dg-fhoh-cluster-xlarge .dg-fhoh-cluster-inner {
    width: 62px;
    height: 62px;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.55),
                0 0 0 10px rgba(220, 38, 38, 0.2);
}

/* --- Popup --- */
.dg-fhoh-map-popup-wrapper .leaflet-popup-content-wrapper {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
}

.dg-fhoh-map-popup-wrapper .leaflet-popup-content {
    margin: 0;
    width: 260px !important;
}

.dg-fhoh-map-popup-wrapper .leaflet-popup-tip {
    background: #ffffff;
}

.dg-fhoh-map-popup {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.dg-fhoh-map-popup-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #f1f5f9;
}

.dg-fhoh-map-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dg-fhoh-map-popup-body {
    padding: 14px 16px 16px;
}

.dg-fhoh-map-popup h4 {
    margin: 0 0 6px 0;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dg-fhoh-map-popup-ort {
    font-size: 11px;
    color: #64748b;
    margin-bottom: 8px;
}

.dg-fhoh-map-popup-meta {
    font-size: 11px;
    color: #475569;
    padding: 6px 0;
    border-top: 1px solid #f1f5f9;
}

.dg-fhoh-map-popup-meta strong {
    color: #1e293b;
}

.dg-fhoh-map-popup-preis {
    font-size: 12px;
    color: #64748b;
    padding: 4px 0 10px;
}

.dg-fhoh-map-popup-preis strong {
    color: #dc2626;
    font-size: 15px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-map-popup-btn {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff !important;
    text-align: center;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
    transition: transform 0.15s ease;
}

.dg-fhoh-map-popup-btn:hover {
    transform: translateY(-1px);
    color: #ffffff !important;
    text-decoration: none !important;
}

/* --- Leaflet Controls dezenter --- */
.dg-fhoh-map-container .leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border-radius: 10px !important;
    overflow: hidden;
}

.dg-fhoh-map-container .leaflet-control-zoom a {
    background: #ffffff !important;
    color: #475569 !important;
    border-bottom: 1px solid #f1f5f9 !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 32px !important;
    font-size: 18px !important;
    transition: background 0.15s;
}

.dg-fhoh-map-container .leaflet-control-zoom a:hover {
    background: #fef2f2 !important;
    color: #dc2626 !important;
}

.dg-fhoh-map-container .leaflet-control-attribution {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 6px 0 0 0;
}

/* ============================================================================
   BLOCK 7: ERLEBEN — Sehenswürdigkeiten in der Nähe
   ============================================================================ */

.dg-fhoh-erleben {
    padding: 60px 24px 40px;
}

.dg-fhoh-erleben-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-fhoh-erleben-header {
    text-align: center;
    margin-bottom: 36px;
}

.dg-fhoh-erleben-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-erleben-subtitle {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.dg-fhoh-erleben-subtitle strong {
    color: #dc2626;
    font-weight: 700;
}

.dg-fhoh-erleben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dg-fhoh-erleben-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dg-fhoh-erleben-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    border-color: rgba(220, 38, 38, 0.3);
    text-decoration: none !important;
}

.dg-fhoh-erleben-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.dg-fhoh-erleben-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.dg-fhoh-erleben-card:hover .dg-fhoh-erleben-card-image img {
    transform: scale(1.06);
}

.dg-fhoh-erleben-card-noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(220, 38, 38, 0.25);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.dg-fhoh-erleben-distance {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #dc2626;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-erleben-card-body {
    padding: 18px 18px 20px;
}

.dg-fhoh-erleben-card-title {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    /* Truncate auf max 2 Zeilen */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.dg-fhoh-erleben-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    transition: gap 0.2s ease;
}

.dg-fhoh-erleben-card:hover .dg-fhoh-erleben-card-cta {
    gap: 8px;
}

/* ============================================================================
   BLOCK 11: VERWANDTE ORTE — Andere Orte aus derselben Region
   ============================================================================ */

.dg-fhoh-verwandte {
    padding: 60px 24px 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(241, 245, 249, 0.5) 100%);
}

.dg-fhoh-verwandte-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-fhoh-verwandte-header {
    text-align: center;
    margin-bottom: 36px;
}

.dg-fhoh-verwandte-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-verwandte-subtitle {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.dg-fhoh-verwandte-subtitle strong {
    color: #1e293b;
    font-weight: 700;
}

.dg-fhoh-verwandte-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dg-fhoh-verwandte-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dg-fhoh-verwandte-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    border-color: rgba(220, 38, 38, 0.3);
    text-decoration: none !important;
}

.dg-fhoh-verwandte-card-image {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #e2e8f0;
}

.dg-fhoh-verwandte-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

.dg-fhoh-verwandte-card:hover .dg-fhoh-verwandte-card-image img {
    transform: scale(1.07);
}

.dg-fhoh-verwandte-card-noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(220, 38, 38, 0.25);
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dg-fhoh-verwandte-distance {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #dc2626;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-verwandte-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px 18px 16px;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.85) 100%);
    color: #ffffff;
}

.dg-fhoh-verwandte-card-title {
    margin: 0 0 4px 0;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.dg-fhoh-verwandte-card-houses {
    display: inline-block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.dg-fhoh-verwandte-card-houses strong {
    color: #ffffff;
    font-weight: 800;
}

.dg-fhoh-verwandte-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
    transition: gap 0.2s ease;
}

.dg-fhoh-verwandte-card-cta svg {
    transition: transform 0.2s ease;
}

.dg-fhoh-verwandte-card:hover .dg-fhoh-verwandte-card-cta svg {
    transform: translateX(4px);
}

/* ============================================================================
   BLOCK 8: DOGFRIENDLY — Hundefreundliche Orte in der Nähe
   ============================================================================ */

.dg-fhoh-dogfriendly {
    padding: 60px 24px 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.04) 100%);
}

.dg-fhoh-dogfriendly-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-fhoh-dogfriendly-header {
    text-align: center;
    margin-bottom: 36px;
}

.dg-fhoh-dogfriendly-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-dogfriendly-subtitle {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.dg-fhoh-dogfriendly-subtitle strong {
    color: #16a34a;
    font-weight: 700;
}

.dg-fhoh-dogfriendly-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dg-fhoh-dogfriendly-card {
    display: block;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dg-fhoh-dogfriendly-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(22, 163, 74, 0.18);
    border-color: rgba(34, 197, 94, 0.4);
    text-decoration: none !important;
}

.dg-fhoh-dogfriendly-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.dg-fhoh-dogfriendly-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.dg-fhoh-dogfriendly-card:hover .dg-fhoh-dogfriendly-card-image img {
    transform: scale(1.06);
}

.dg-fhoh-dogfriendly-card-noimage {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    font-size: 56px;
    line-height: 1;
}

.dg-fhoh-dogfriendly-distance {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #16a34a;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-variant-numeric: tabular-nums;
}

.dg-fhoh-dogfriendly-category {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.dg-fhoh-dogfriendly-card-body {
    padding: 16px 18px 18px;
}

.dg-fhoh-dogfriendly-card-title {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.dg-fhoh-dogfriendly-card-ort {
    color: #64748b;
    font-size: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dg-fhoh-dogfriendly-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    transition: gap 0.2s ease;
}

.dg-fhoh-dogfriendly-card:hover .dg-fhoh-dogfriendly-card-cta {
    gap: 8px;
}

/* --- Load-More-Button & Reveal --- */
.dg-fhoh-dogfriendly-card.is-hidden {
    display: none;
}

.dg-fhoh-dogfriendly-card.is-visible {
    display: block;
}

.dg-fhoh-dogfriendly-loadmore {
    display: flex;
    justify-content: center;
    margin: 24px 0 8px;
}

.dg-fhoh-dogfriendly-loadmore-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 2px solid #16a34a;
    color: #16a34a;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.dg-fhoh-dogfriendly-loadmore-btn:hover {
    background: #16a34a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.28);
}

.dg-fhoh-dogfriendly-loadmore-count {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

/* ============================================================================
   BLOCK 3: EINLEITUNG — KI-generierter Einleitungstext
   ============================================================================ */

.dg-fhoh-einleitung {
    padding: 60px 24px 30px;
}

.dg-fhoh-einleitung-inner {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 40px 48px 44px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.dg-fhoh-einleitung-heading {
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.dg-fhoh-einleitung-body {
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
}

.dg-fhoh-einleitung-body p {
    margin: 0 0 16px 0;
}

.dg-fhoh-einleitung-body p:last-child {
    margin-bottom: 0;
}

.dg-fhoh-einleitung-body strong {
    color: #1e293b;
    font-weight: 700;
}

/* --- Admin-Placeholder bei fehlendem Content --- */
.dg-fhoh-einleitung-placeholder {
    padding: 30px 24px;
}

.dg-fhoh-einleitung-placeholder-inner {
    max-width: 820px;
    margin: 0 auto;
    background: #fef3c7;
    border: 2px dashed #f59e0b;
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
}

.dg-fhoh-einleitung-placeholder-badge {
    display: inline-block;
    background: #f59e0b;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.dg-fhoh-einleitung-placeholder p {
    color: #78350f;
    margin: 8px 0 16px 0;
}

/* ============================================================================
   BLOCK 9: PRAKTISCHE INFOS — KI-generierte Themen-Karten
   ============================================================================ */

.dg-fhoh-prakt {
    padding: 60px 24px 50px;
    background: linear-gradient(180deg, transparent 0%, rgba(59, 130, 246, 0.04) 100%);
}

.dg-fhoh-prakt-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dg-fhoh-prakt-header {
    text-align: center;
    margin-bottom: 36px;
}

.dg-fhoh-prakt-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-prakt-subtitle {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.dg-fhoh-prakt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.dg-fhoh-prakt-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 18px;
    padding: 28px 26px 26px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dg-fhoh-prakt-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.3);
}

.dg-fhoh-prakt-card-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 14px;
}

.dg-fhoh-prakt-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-prakt-card-text {
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================================
   BLOCK 10: FAQ — Accordion mit nativem details/summary + Schema.org
   ============================================================================ */

.dg-fhoh-faq {
    padding: 50px 24px 60px;
}

.dg-fhoh-faq-inner {
    max-width: 820px;
    margin: 0 auto;
}

.dg-fhoh-faq-header {
    text-align: center;
    margin-bottom: 32px;
}

.dg-fhoh-faq-title {
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.dg-fhoh-faq-subtitle {
    color: #64748b;
    font-size: 15px;
    margin: 0;
}

.dg-fhoh-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dg-fhoh-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dg-fhoh-faq-item:hover {
    border-color: #cbd5e1;
}

.dg-fhoh-faq-item[open] {
    border-color: #dc2626;
    box-shadow: 0 4px 18px rgba(220, 38, 38, 0.08);
}

.dg-fhoh-faq-question {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    user-select: none;
}

.dg-fhoh-faq-question::-webkit-details-marker {
    display: none;
}

.dg-fhoh-faq-question-text {
    flex: 1;
    line-height: 1.4;
}

.dg-fhoh-faq-question-icon {
    flex-shrink: 0;
    color: #dc2626;
    transition: transform 0.2s ease;
    display: flex;
}

.dg-fhoh-faq-item[open] .dg-fhoh-faq-question-icon {
    transform: rotate(180deg);
}

.dg-fhoh-faq-answer {
    padding: 4px 22px 22px 22px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    margin-top: 4px;
    padding-top: 18px;
}

.dg-fhoh-faq-answer p {
    margin: 0 0 12px 0;
}

.dg-fhoh-faq-answer p:last-child {
    margin-bottom: 0;
}

/* ============================================================================
   BLOCK-STUBS (Blocks 3, 4, 7-11 — noch nicht implementiert)
   ============================================================================ */

.dg-fhoh-block {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 24px;
}

.dg-fhoh-block-stub {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0.06) 100%);
    border: 2px dashed rgba(220, 38, 38, 0.25);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
}

.dg-fhoh-block-stub-num {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dg-fhoh-block-stub-title {
    margin: 8px 0 4px 0;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
}

.dg-fhoh-block-stub-meta {
    color: #64748b;
    font-size: 13px;
    margin: 4px 0;
}

.dg-fhoh-block-stub-meta strong {
    color: #dc2626;
    font-family: monospace;
}

.dg-fhoh-block-stub-desc {
    color: #475569;
    font-size: 14px;
    max-width: 600px;
    margin: 8px auto 0;
    line-height: 1.5;
}

.dg-fhoh-block--dogfriendly-orte .dg-fhoh-block-stub {
    border-color: rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.03) 0%, rgba(34, 197, 94, 0.06) 100%);
}

.dg-fhoh-block--dogfriendly-orte .dg-fhoh-block-stub-num {
    background: #22c55e;
}

/* ============================================================================
   MOBILE ANPASSUNGEN
   ============================================================================ */

@media (max-width: 768px) {
    .dg-fhoh-hero {
        min-height: 380px;
    }

    .dg-fhoh-hero-content {
        padding: 60px 20px 40px;
        min-height: 380px;
    }

    .dg-fhoh-hero-h1 {
        font-size: 28px;
    }

    .dg-fhoh-hero-claim {
        font-size: 15px;
    }

    .dg-fhoh-breadcrumb {
        font-size: 12px;
    }

    .dg-fhoh-usp {
        padding: 24px 16px;
        margin-top: -20px;
    }

    .dg-fhoh-usp-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dg-fhoh-usp-card {
        padding: 20px 14px;
    }

    .dg-fhoh-usp-number {
        font-size: 28px;
    }

    .dg-fhoh-usp-number-small {
        font-size: 15px;
    }

    .dg-fhoh-usp-icon {
        width: 44px;
        height: 44px;
    }

    /* Block 4 Mobile */
    .dg-fhoh-search {
        padding: 30px 16px 12px;
    }

    .dg-fhoh-search-card {
        padding: 24px 18px 20px;
        border-radius: 18px;
    }

    .dg-fhoh-search-header {
        margin-bottom: 18px;
    }

    .dg-fhoh-search-fields {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .dg-fhoh-search-submit {
        grid-column: 1 / -1;
    }

    .dg-fhoh-search-btn {
        width: 100%;
    }

    .dg-fhoh-search-chip {
        font-size: 12px;
        padding: 8px 14px;
    }

    /* Block 5 Mobile */
    .dg-fhoh-houses {
        padding: 40px 16px 24px;
    }

    .dg-fhoh-houses-header {
        margin-bottom: 24px;
    }

    .dg-fhoh-house-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .dg-fhoh-house-card-body {
        padding: 14px 14px 6px;
    }

    .dg-fhoh-house-card-title {
        font-size: 14px;
        min-height: 2.5em;
    }

    .dg-fhoh-house-card-meta {
        font-size: 11px;
        gap: 4px 10px;
    }

    .dg-fhoh-house-card-cta {
        padding: 10px 14px;
        font-size: 12px;
    }

    .dg-fhoh-house-card-price {
        padding: 6px 10px;
        font-size: 11px;
    }

    .dg-fhoh-house-card-price strong {
        font-size: 15px;
    }

    .dg-fhoh-house-card-badges {
        top: 8px;
        left: 8px;
        gap: 4px;
    }

    .dg-fhoh-house-card-badge {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .dg-fhoh-houses-loadmore-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Block 6 Mobile */
    .dg-fhoh-map {
        padding: 30px 16px 40px;
    }

    .dg-fhoh-map-header {
        margin-bottom: 18px;
    }

    .dg-fhoh-map-container {
        height: 380px;
        border-radius: 16px;
    }

    /* Block 7 Mobile */
    .dg-fhoh-erleben {
        padding: 40px 16px 24px;
    }

    .dg-fhoh-erleben-header {
        margin-bottom: 24px;
    }

    .dg-fhoh-erleben-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .dg-fhoh-erleben-card-body {
        padding: 14px 14px 16px;
    }

    .dg-fhoh-erleben-card-title {
        font-size: 14px;
        min-height: 40px;
    }

    .dg-fhoh-erleben-distance {
        font-size: 11px;
        padding: 5px 9px;
    }

    /* Block 11 Mobile */
    .dg-fhoh-verwandte {
        padding: 40px 16px 30px;
    }

    .dg-fhoh-verwandte-header {
        margin-bottom: 24px;
    }

    .dg-fhoh-verwandte-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .dg-fhoh-verwandte-card-title {
        font-size: 17px;
    }

    .dg-fhoh-verwandte-card-houses {
        font-size: 12px;
    }

    .dg-fhoh-verwandte-card-cta {
        padding: 12px 16px;
        font-size: 12px;
    }

    /* Block 3 Mobile */
    .dg-fhoh-einleitung {
        padding: 40px 16px 20px;
    }

    .dg-fhoh-einleitung-inner {
        padding: 28px 24px 32px;
        border-radius: 16px;
    }

    .dg-fhoh-einleitung-body {
        font-size: 15px;
        line-height: 1.65;
    }

    /* Block 9 Mobile */
    .dg-fhoh-prakt {
        padding: 40px 16px 30px;
    }

    .dg-fhoh-prakt-header {
        margin-bottom: 24px;
    }

    .dg-fhoh-prakt-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dg-fhoh-prakt-card {
        padding: 22px 22px 20px;
    }

    .dg-fhoh-prakt-card-icon {
        font-size: 30px;
    }

    .dg-fhoh-prakt-card-title {
        font-size: 17px;
    }

    /* Block 10 Mobile */
    .dg-fhoh-faq {
        padding: 30px 16px 50px;
    }

    .dg-fhoh-faq-header {
        margin-bottom: 24px;
    }

    .dg-fhoh-faq-question {
        font-size: 15px;
        padding: 16px 18px;
    }

    .dg-fhoh-faq-answer {
        font-size: 14px;
        padding: 4px 18px 18px 18px;
    }

    /* Block 8 Mobile */
    .dg-fhoh-dogfriendly {
        padding: 40px 16px 30px;
    }

    .dg-fhoh-dogfriendly-header {
        margin-bottom: 24px;
    }

    .dg-fhoh-dogfriendly-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .dg-fhoh-dogfriendly-card-body {
        padding: 14px 14px 16px;
    }

    .dg-fhoh-dogfriendly-card-title {
        font-size: 14px;
        min-height: 40px;
    }

    .dg-fhoh-dogfriendly-distance,
    .dg-fhoh-dogfriendly-category {
        font-size: 11px;
        padding: 5px 9px;
    }

    .dg-fhoh-cta {
        padding: 40px 16px 60px;
    }

    .dg-fhoh-cta-inner {
        padding: 32px 20px;
    }

    .dg-fhoh-cta-btn-primary {
        padding: 14px 24px;
        font-size: 15px;
        width: 100%;
    }

    .dg-fhoh-cta-meta {
        gap: 10px 18px;
        font-size: 12px;
    }

    .dg-fhoh-block {
        margin: 24px auto;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .dg-fhoh-usp-inner {
        grid-template-columns: 1fr;
    }

    .dg-fhoh-house-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dg-fhoh-erleben-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dg-fhoh-verwandte-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .dg-fhoh-dogfriendly-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}
