.elementor-8012 .elementor-element.elementor-element-d387496{--display:flex;--margin-top:080px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-8012 .elementor-element.elementor-element-d387496{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-87d43ce */<style>
  /* === RHUB VARIABLEN === */
  :root {
    --rhub-primary: #1a3b5c; /* Dunkelblau als Beispiel */
    --rhub-text: #333333;
    --rhub-text-light: #666666;
    --rhub-bg-light: #f8f9fa;
    --rhub-border: #e2e8f0;
    --rhub-radius: 8px;
    --rhub-transition: 0.2s ease-in-out;
  }

  /* === GRUNDLAYOUT === */
  .rhub {
    font-family: inherit;
    color: var(--rhub-text);
    line-height: 1.6;
  }
  .rhub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* === HERO SECTION === */
  .rhub-hero {
    background: var(--rhub-bg-light);
    padding: 60px 0 40px;
    text-align: center;
  }
  .rhub-hero .rhub-eyebrow, .rhub-cluster-eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--rhub-text); /* Konsistent dunkel machen */
    display: block;
    margin-bottom: 10px;
  }
  .rhub-h1 {
    font-size: 2.5rem;
    color: var(--rhub-primary);
    margin: 0 0 15px;
  }
  .rhub-deck {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--rhub-text-light);
  }
  .rhub-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
  .rhub-stat-num {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--rhub-primary);
  }
  .rhub-stat-label {
    font-size: 0.9rem;
    color: var(--rhub-text-light);
  }

  /* === SUCHE === */
  .rhub-search-wrap {
    padding: 30px 0;
    background: #fff;
    border-bottom: 1px solid var(--rhub-border);
  }
  .rhub-search {
    display: flex;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--rhub-primary);
    border-radius: 50px;
    padding: 5px 20px;
    transition: box-shadow var(--rhub-transition);
  }
  .rhub-search:focus-within {
    box-shadow: 0 0 0 3px rgba(26, 59, 92, 0.1);
  }
  .rhub-search-input {
    border: none;
    outline: none;
    flex-grow: 1;
    padding: 12px 10px;
    font-size: 1rem;
    background: transparent;
  }
  .rhub-search-clear {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #999;
    cursor: pointer;
    display: none;
  }
  .rhub-search.has-text .rhub-search-clear {
    display: block; /* Wird durch JS getriggert */
  }
  .rhub-search-hint {
    text-align: center;
    font-size: 0.9rem;
    color: var(--rhub-text-light);
    margin-top: 15px;
  }

  /* === NAVIGATION === */
  .rhub-nav {
    background: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--rhub-border);
  }
  .rhub-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
  }
  .rhub-nav-link {
    text-decoration: none;
    color: var(--rhub-text);
    font-size: 0.95rem;
    padding: 5px 12px;
    background: var(--rhub-bg-light);
    border-radius: 20px;
    transition: background var(--rhub-transition);
  }
  .rhub-nav-link:hover {
    background: var(--rhub-border);
  }

  /* === SEKTIONEN & GRIDS === */
  .rhub-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--rhub-border);
  }
  .rhub-section-head {
    margin-bottom: 40px;
    text-align: center;
  }
  .rhub-cluster-title {
    font-size: 2rem;
    margin: 0 0 10px;
    color: var(--rhub-primary);
  }
  .rhub-cluster-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--rhub-text-light);
  }
  
  .rhub-grid, .rhub-grid-featured {
    display: grid;
    gap: 24px;
  }
  .rhub-grid-featured {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
  .rhub-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }

  /* === CARDS === */
  .rhub-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--rhub-border);
    border-radius: var(--rhub-radius);
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: transform var(--rhub-transition), box-shadow var(--rhub-transition);
  }
  .rhub-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  .rhub-card-cat {
    align-self: flex-start;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  /* Kategoriefarben (Beispiele) */
  .rhub-card-cat--verkauf { background: #e3f2fd; color: #1565c0; }
  .rhub-card-cat--verwaltung { background: #e8f5e9; color: #2e7d32; }
  .rhub-card-cat--mietrecht { background: #fff3e0; color: #e65100; }
  
  .rhub-card-title {
    font-size: 1.25rem;
    margin: 0 0 10px;
    color: var(--rhub-primary);
  }
  .rhub-card-excerpt {
    font-size: 0.95rem;
    color: var(--rhub-text-light);
    flex-grow: 1;
    margin: 0 0 20px;
  }
  .rhub-card-meta {
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #888;
    margin-top: auto;
  }
  .rhub-card-arrow {
    margin-left: auto;
    font-weight: bold;
    color: var(--rhub-primary);
    transition: transform var(--rhub-transition);
  }
  .rhub-card:hover .rhub-card-arrow {
    transform: translateX(5px);
  }

  /* === JS STATUS-KLASSEN (SEHR WICHTIG!) === */
  .rhub-card-hidden {
    display: none !important;
  }
  .rhub-cluster-hidden {
    display: none !important;
  }
  .rhub-no-results {
    display: none;
    text-align: center;
    padding: 60px 20px;
    background: #fff0f0;
    color: #d32f2f;
  }
  .rhub-no-results.show {
    display: block !important;
  }

  /* === WIDGET SECTION === */
  .rhub-widget-section {
    padding: 60px 0;
    background: var(--rhub-primary);
    color: #fff;
    text-align: center;
  }
  .rhub-widget-section h2 {
    color: #fff;
    margin-bottom: 20px;
  }
  .rhub-widget-head p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: rgba(255,255,255,0.8);
  }

  /* === CTA SECTION (Farbkorrektur) === */
  .rhub-cta {
    text-align: center;
    padding: 60px 20px;
    color: var(--rhub-text); /* Standardmäßig dunkel */
  }
  /* Spezifische Selektoren, um Elementor zu überschreiben */
  .rhub .rhub-cta-eyebrow {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--rhub-text) !important; /* Augenbraue dunkel */
    display: block;
    margin-bottom: 10px;
  }
  .rhub-cta h2, .rhub-cta p {
    color: var(--rhub-text) !important; /* H2 und P dunkeln */
  }
  
  .rhub-cta-btn {
    display: inline-block;
    background: var(--rhub-primary);
    color: #fff !important; /* Button Text weiß lassen */
    padding: 15px 30px;
    border-radius: var(--rhub-radius);
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: opacity var(--rhub-transition);
  }
  .rhub-cta-btn:hover {
    opacity: 0.9;
  }

  /* === RESPONSIVE === */
  @media (max-width: 768px) {
    .rhub-h1 { font-size: 2rem; }
    .rhub-stat-num { font-size: 1.5rem; }
    .rhub-nav-inner { justify-content: flex-start; }
  }
</style>/* End custom CSS */
/* Start custom CSS */<style id="ratgeber-hub-styles">
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:opsz,wght@9..40,300..600&display=swap');

.rhub { font-family: 'DM Sans', system-ui, -apple-system, sans-serif; color: #1c2333; line-height: 1.7; --gold: #c9973a; --gold-light: #e8b85c; --navy: #0c1a2e; --cream: #f8f5f0; --cream-dark: #ede9e2; --muted: #5a6478; }
.rhub-container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 5vw, 2.5rem); }

/* HERO */
.rhub-hero { padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem); border-bottom: 1px solid var(--cream-dark); }
.rhub-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.rhub-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
.rhub-h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; color: var(--navy); line-height: 1.1; letter-spacing: -0.012em; margin: 0 0 1.25rem; max-width: 22ch; }
.rhub-deck { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: clamp(1.1rem, 2.2vw, 1.45rem); font-weight: 400; color: var(--gold); line-height: 1.45; margin: 0 0 2rem; max-width: 48ch; }
.rhub-stats { display: flex; flex-wrap: wrap; gap: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--cream-dark); }
.rhub-stat-num { display: block; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.rhub-stat-label { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; }

/* TOC NAV (Sprung-Anker zu Clustern) */
.rhub-nav { padding: 1.75rem 0; border-bottom: 1px solid var(--cream-dark); background: var(--cream); margin-bottom: 3rem; }
.rhub-nav-inner { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.rhub-nav-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-right: 0.5rem; }
.rhub-nav-link { display: inline-flex; align-items: center; padding: 0.4rem 0.95rem; font-size: 0.83rem; color: var(--navy); border: 1px solid var(--cream-dark); border-radius: 100px; text-decoration: none; transition: border-color 0.2s, color 0.2s, background 0.2s; background: #fff; }
.rhub-nav-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,151,58,0.06); }

/* FEATURED-Section */
.rhub-section { padding: 3rem 0 2rem; }
.rhub-section-head { margin-bottom: 2rem; }
.rhub-cluster-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.625rem; }
.rhub-cluster-eyebrow::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--gold); }
.rhub-cluster-title { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--navy); line-height: 1.2; margin: 0 0 0.625rem; letter-spacing: -0.005em; }
.rhub-cluster-desc { font-size: 0.96rem; color: var(--muted); max-width: 65ch; margin: 0; }

/* GRIDS */
.rhub-grid-featured, .rhub-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; align-items: stretch; }
@media (max-width: 980px) { .rhub-grid-featured, .rhub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; } }
@media (max-width: 620px) { .rhub-grid-featured, .rhub-grid { grid-template-columns: 1fr; gap: 1rem; } }

/* CARDS */
.rhub-card { background: #fff; border: 1px solid var(--cream-dark); border-radius: 14px; padding: 1.5rem; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; display: flex; flex-direction: column; gap: 0.75rem; text-decoration: none !important; color: inherit !important; box-sizing: border-box; min-height: 220px; position: relative; overflow: hidden; }
.rhub-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(12,26,46,0.08); border-color: rgba(201,151,58,0.32); }
.rhub-card-cat { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 100px; align-self: flex-start; line-height: 1; flex-shrink: 0; }
.rhub-card-cat--verkauf { background: rgba(201,151,58,0.12); color: var(--gold); border: 1px solid rgba(201,151,58,0.28); }
.rhub-card-cat--verwaltung { background: rgba(12,26,46,0.06); color: var(--navy); border: 1px solid rgba(12,26,46,0.14); }
.rhub-card-cat--mietrecht { background: #f0ebe0; color: #6b5a2e; border: 1px solid #ddd1ad; }
.rhub-card-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); line-height: 1.3; margin: 0; letter-spacing: -0.005em; word-wrap: break-word; }
.rhub-card-excerpt { font-size: 0.87rem; color: var(--muted); line-height: 1.55; margin: 0; flex: 1 1 auto; word-wrap: break-word; }
.rhub-card-meta { display: flex; align-items: center; gap: 0.5rem; padding-top: 0.85rem; border-top: 1px solid var(--cream-dark); margin-top: auto; font-size: 0.75rem; color: var(--muted); flex-shrink: 0; }
.rhub-card-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.rhub-card-arrow { margin-left: auto; color: var(--gold); font-weight: 600; opacity: 0; transform: translateX(-4px); transition: opacity 0.2s, transform 0.2s; }
.rhub-card:hover .rhub-card-arrow { opacity: 1; transform: translateX(0); }

/* Featured Card variant — größer, mit gold Top-Border */
.rhub-card--featured { padding: 1.75rem; border-top: 3px solid var(--gold); min-height: 260px; }
.rhub-card--featured .rhub-card-title { font-size: 1.28rem; }
.rhub-card--featured .rhub-card-excerpt { font-size: 0.92rem; }

/* SEARCH */
.rhub-search-wrap { background: var(--cream); padding: clamp(1.5rem, 3vw, 2.25rem) 0; border-bottom: 1px solid var(--cream-dark); }
.rhub-search { display: flex; align-items: center; gap: 0.75rem; background: #fff; border: 1.5px solid var(--cream-dark); border-radius: 12px; padding: 0.9rem 1.25rem; max-width: 720px; margin: 0 auto; transition: border-color 0.2s, box-shadow 0.2s; }
.rhub-search:focus-within { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,151,58,0.15); }
.rhub-search-icon { width: 18px; height: 18px; flex-shrink: 0; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='8'/><line x1='21' y1='21' x2='16.65' y2='16.65'/></svg>"); background-repeat: no-repeat; background-position: center; }
.rhub-search input { flex: 1; min-width: 0; border: none; outline: none; background: transparent; font-family: inherit; font-size: 0.95rem; color: var(--navy); padding: 0; margin: 0; }
.rhub-search input::placeholder { color: var(--muted); }
.rhub-search-clear { width: 24px; height: 24px; border-radius: 50%; background: var(--cream); color: var(--muted); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.1rem; line-height: 1; border: none; opacity: 0; transition: opacity 0.2s, background 0.2s; padding: 0; flex-shrink: 0; }
.rhub-search.has-text .rhub-search-clear { opacity: 1; }
.rhub-search-clear:hover { background: rgba(201,151,58,0.25); }
.rhub-search-hint { text-align: center; font-size: 0.8rem; color: var(--muted); margin: 0.85rem 0 0; }
.rhub-card-hidden { display: none !important; }
.rhub-cluster-hidden { display: none !important; }
.rhub-no-results { text-align: center; padding: 4rem 0 3rem; color: var(--muted); display: none; }
.rhub-no-results.show { display: block; }
.rhub-no-results-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--navy); margin: 0 0 0.5rem; }
.rhub-no-results p { margin: 0; font-size: 0.95rem; }

/* WIDGET-SECTION */
.rhub-widget-section { padding: 3.5rem 0 2.5rem; margin-top: 2.5rem; border-top: 1px solid var(--cream-dark); }
.rhub-widget-head { text-align: center; max-width: 580px; margin: 0 auto 1.75rem; }
.rhub-widget-head h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 1.9rem); font-weight: 700; color: var(--navy); margin: 0.5rem 0 0.75rem; line-height: 1.2; }
.rhub-widget-head p { font-size: 0.96rem; color: var(--muted); margin: 0; line-height: 1.6; }

/* FOOTER CTA */
.rhub-cta { background: var(--navy); background-image: radial-gradient(ellipse at top right, rgba(201,151,58,0.18) 0%, transparent 60%); border-radius: 18px; padding: 2.5rem 2rem; margin: 3rem 0 1rem; color: #fff; text-align: center; }
.rhub-cta-eyebrow { display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem; justify-content: center; }
.rhub-cta-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold-light); }
.rhub-cta h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(1.5rem, 3vw, 1.9rem); color: #fff; margin: 0 0 0.75rem; }
.rhub-cta p { color: rgba(255,255,255,0.85); margin: 0 auto 1.5rem; font-size: 1rem; max-width: 520px; }
.rhub-cta-btn { display: inline-flex; align-items: center; gap: 0.55rem; padding: 0.95rem 1.85rem; font-size: 0.88rem; font-weight: 600; background: var(--gold); color: #fff !important; border-radius: 8px; text-decoration: none; transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.rhub-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(201,151,58,0.4); }

@media (max-width: 768px) { .rhub-hero { padding: 2.5rem 0 2rem; } .rhub-stats { gap: 1.5rem; } .rhub-section { padding: 2rem 0 1.5rem; } }
</style>/* End custom CSS */