:root {
    --rgh-green-dark: #1a6b3a;
    --rgh-green: #2d8653;
    --rgh-green-light: #4aaa70;
    --rgh-green-pale: #e8f5ee;
    --rgh-orange: #e07b39;
    --rgh-text-dark: #1e2d26;
    --rgh-text-muted: #5a7265;
    --rgh-bg-light: #ffffff;
    --rgh-border: #d0e6d8;
    --rgh-shadow: 0 4px 24px rgba(45, 134, 83, .10);
    --rgh-radius: .75rem;
    --rgh-radius-lg: 1.5rem;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--rgh-text-dark);
    line-height: 1.7
}

h1,
h2,
h3 {
    font-family: 'Inter', Georgia, serif;
    font-weight: 700;
    line-height: 1.25
}

h4,
h5,
h6 {
    font-weight: 600
}

a {
    color: var(--rgh-green)
}

.btn-primary {
    background-color: var(--rgh-green);
    border-color: var(--rgh-green);
    font-weight: 600;
    border-radius: var(--rgh-radius)
}

.btn-primary:hover {
    background-color: var(--rgh-green-dark);
    border-color: var(--rgh-green-dark)
}

.btn-outline-primary {
    color: var(--rgh-green);
    border-color: var(--rgh-green);
    font-weight: 600;
    border-radius: var(--rgh-radius)
}

.btn-outline-primary:hover {
    background-color: var(--rgh-green);
    border-color: var(--rgh-green)
}

.rgh-navbar {
    background: #fff;
    border-bottom: 1px solid var(--rgh-border);
    padding: .75rem 0;
    position: sticky;
    top: 0;
    z-index: 1030
}

.rgh-navbar .navbar-brand {
    display: flex;
    align-items: center;
    gap: .75rem
}

.rgh-navbar .rgh-brand-text .line1 {
    font-family: 'Inter', serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--rgh-green-dark);
    display: block
}

.rgh-navbar .rgh-brand-text .line2 {
    font-size: .72rem;
    color: var(--rgh-text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block
}

.rgh-navbar .nav-link {
    color: var(--rgh-text-dark) !important;
    font-weight: 500;
    font-size: .9rem;
    padding: .5rem .85rem !important;
    border-radius: .5rem
}

.rgh-navbar .nav-link:hover,
.rgh-navbar .nav-link.active {
    color: var(--rgh-green) !important;
    background-color: var(--rgh-green-pale)
}

.rgh-section {
    padding: 5rem 0
}

.rgh-section--sm {
    padding: 3rem 0
}

.rgh-section--light {
    background: #ffffff
}

.rgh-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--rgh-green-dark);
    margin-bottom: .5rem
}

.rgh-section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--rgh-orange);
    border-radius: 2px;
    margin-top: .6rem
}

.text-center .rgh-section-title::after {
    margin-left: auto;
    margin-right: auto
}

.rgh-section-subtitle {
    color: var(--rgh-text-muted);
    font-size: 1.05rem
}

.rgh-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--rgh-green-dark)
}

.rgh-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.45)
}

.rgh-hero__content {
    position: relative;
    z-index: 2;
    padding: 5rem 0
}

.rgh-hero__eyebrow {
    display: inline-block;
    background: var(--rgh-orange);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: 1rem
}

.rgh-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    color: #fff
}

.rgh-hero .lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .9);
    max-width: 560px;
    margin-bottom: 2rem
}

.rgh-hero__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3
}

.rgh-page-header {
    background: linear-gradient(135deg, var(--rgh-green-dark), var(--rgh-green));
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
    color: #fff
}

.rgh-page-header__deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05)
}

.rgh-page-header__deco--1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px
}

.rgh-page-header__deco--2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 5%
}

.rgh-page-header h1 {
    color: #fff
}

.rgh-page-header .lead {
    color: rgba(255, 255, 255, .85)
}

.rgh-page-header__wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 3
}

.rgh-breadcrumb {
    background: var(--rgh-green-pale);
    border-bottom: 1px solid var(--rgh-border);
    padding: .75rem 0;
    font-size: .87rem
}

.rgh-breadcrumb .breadcrumb {
    margin: 0;
    background: none
}

.rgh-breadcrumb .breadcrumb-item a {
    color: var(--rgh-green)
}

.rgh-card-news {
    border: 1px solid var(--rgh-border);
    border-radius: var(--rgh-radius-lg);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.rgh-card-news:hover {
    transform: translateY(-5px);
    box-shadow: var(--rgh-shadow)
}

.rgh-card-news__img {
    height: 210px;
    overflow: hidden;
    position: relative
}

.rgh-card-news__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rgh-card-news__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--rgh-orange);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 100px
}

.rgh-card-news__body {
    padding: 1.4rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.rgh-card-news__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rgh-text-dark);
    font-family: 'Inter', serif;
    margin-bottom: .6rem
}

.rgh-cta {
    position: relative;
    overflow: hidden;
    border-radius: var(--rgh-radius-lg);
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, var(--rgh-green-dark), var(--rgh-green));
    color: #fff
}

.rgh-cta__deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06)
}

.rgh-cta__deco--1 {
    width: 220px;
    height: 220px;
    top: -60px;
    right: -60px
}

.rgh-cta__deco--2 {
    width: 140px;
    height: 140px;
    bottom: -40px;
    right: 100px
}

.rgh-event-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--rgh-radius);
    background: #fff;
    border: 1px solid var(--rgh-border);
    margin-bottom: 1rem
}

.rgh-event-date {
    min-width: 60px;
    text-align: center;
    background: var(--rgh-green-pale);
    border-radius: var(--rgh-radius);
    padding: .6rem .5rem;
    border: 1px solid var(--rgh-border)
}

.rgh-event-date .day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rgh-green-dark);
    line-height: 1
}

.rgh-event-date .month {
    font-size: .7rem;
    text-transform: uppercase;
    color: var(--rgh-text-muted);
    font-weight: 600
}

.rgh-room-card {
    border-radius: var(--rgh-radius-lg);
    overflow: hidden;
    position: relative;
    height: 280px
}

.rgh-room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.rgh-room-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 107, 58, .9), transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff
}

.rgh-room-card__overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .25rem
}

.rgh-contact-box {
    background: #fff;
    border: 1px solid var(--rgh-border);
    border-radius: var(--rgh-radius-lg);
    padding: 2rem
}

.rgh-contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rgh-border)
}

.rgh-contact-item:last-child {
    border-bottom: none
}

.rgh-contact-icon {
    width: 42px;
    height: 42px;
    background: var(--rgh-green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rgh-green-dark)
}

.rgh-form .form-control,
.rgh-form .form-select {
    border: 1.5px solid var(--rgh-border);
    border-radius: var(--rgh-radius)
}

.rgh-form .form-control:focus,
.rgh-form .form-select:focus {
    border-color: var(--rgh-green);
    box-shadow: 0 0 0 3px rgba(45, 134, 83, .12)
}

.rgh-form .form-control::placeholder,
.rgh-form .form-select::placeholder {
    color: #adb5bd;
    opacity: 1
}

.rgh-team-card {
    text-align: center;
    padding: 1.75rem 1rem;
    border-radius: var(--rgh-radius-lg);
    background: #fff;
    border: 1px solid var(--rgh-border);
    height: 265px;
}

.rgh-team-card__avatar-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--rgh-green-pale);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--rgh-green)
}

.rgh-team-card__role {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--rgh-orange);
    margin-bottom: .3rem
}

.rgh-team-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--rgh-text-dark)
}

.rgh-accordion .accordion-button {
    font-weight: 600
}

.rgh-accordion .accordion-button:not(.collapsed) {
    color: var(--rgh-green-dark);
    background: var(--rgh-green-pale)
}

.rgh-accordion .accordion-item {
    border: 1px solid var(--rgh-border);
    border-radius: var(--rgh-radius) !important;
    margin-bottom: .5rem
}

.rgh-footer {
    background: var(--rgh-green-dark);
    color: rgba(255, 255, 255, .85);
    padding: 4rem 0 0
}

.rgh-footer h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: .6rem;
    position: relative
}

.rgh-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--rgh-orange);
    border-radius: 1px
}

.rgh-footer ul.footer-links {
    list-style: none;
    padding: 0
}

.rgh-footer .footer-links a {
    color: rgba(255, 255, 255, .72);
    font-size: .9rem
}

.rgh-footer .footer-links a:hover {
    color: #fff
}

.rgh-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 1.25rem 0;
    margin-top: 2.5rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5)
}

.badge-rgh-green {
    background: var(--rgh-green-pale);
    color: var(--rgh-green-dark);
    border: 1px solid var(--rgh-border)
}

.badge-rgh-orange {
    background: var(--rgh-orange);
    color: #fff
}

.text-rgh-green {
    color: var(--rgh-green) !important
}

/* ═══════════════════════════════════════════════════════════════════
   RGH Blog-Liste & Blog-Filter
   ═══════════════════════════════════════════════════════════════════ */
.rgh-blog-filter {
    background: #fff;
    border-radius: .75rem;
    padding: 1.5rem;
    border: 1px solid var(--rgh-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05)
}

.rgh-blog-filter__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--rgh-green-dark);
    margin-bottom: 1.25rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--rgh-green)
}

.rgh-blog-filter__section-title {
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--rgh-text-muted);
    margin-bottom: .5rem
}

.rgh-blog-filter__category-btn {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .75rem;
    border-radius: 999px;
    background: var(--rgh-green-pale);
    color: var(--rgh-green-dark);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all .18s ease
}

.rgh-blog-filter__category-btn:hover {
    background: var(--rgh-green);
    color: #fff
}

.rgh-blog-filter__category-btn.active {
    background: var(--rgh-green-dark);
    color: #fff
}

.rgh-blog-filter__year-group {
    border-left: 3px solid var(--rgh-green-pale);
    padding-left: .75rem
}

.rgh-blog-filter__year-btn {
    display: inline-block;
    font-size: .95rem;
    font-weight: 700;
    color: var(--rgh-green-dark);
    padding: .1rem .5rem;
    border-radius: .35rem;
    text-decoration: none;
    transition: background .15s
}

.rgh-blog-filter__year-btn:hover,
.rgh-blog-filter__year-btn.active {
    background: var(--rgh-green-pale);
    color: var(--rgh-green-dark)
}

.rgh-blog-filter__month-btn {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .6rem;
    border-radius: .4rem;
    background: #f5f5f5;
    color: var(--rgh-text-dark);
    font-size: .8rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all .18s ease
}

.rgh-blog-filter__month-btn:hover {
    background: var(--rgh-green-pale);
    color: var(--rgh-green-dark)
}

.rgh-blog-filter__month-btn.active {
    background: var(--rgh-green);
    color: #fff
}

.rgh-blog-filter__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.4em;
    height: 1.4em;
    border-radius: 999px;
    background: rgba(0, 0, 0, .1);
    font-size: .72em;
    font-weight: 700;
    padding: 0 .3em
}

.rgh-blog-filter__category-btn.active .rgh-blog-filter__count,
.rgh-blog-filter__month-btn.active .rgh-blog-filter__count {
    background: rgba(255, 255, 255, .25)
}

.rgh-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .28rem .75rem;
    border-radius: 999px;
    background: var(--rgh-green-pale);
    color: var(--rgh-green-dark);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--rgh-green);
    transition: all .18s
}

.rgh-filter-pill:hover {
    background: var(--rgh-green);
    color: #fff
}

.rgh-blog-pagination .pagination {
    gap: .2rem
}

.rgh-blog-pagination .page-link {
    border-radius: .4rem !important;
    color: var(--rgh-green-dark);
    border-color: var(--rgh-border)
}

.rgh-blog-pagination .page-item.active .page-link {
    background: var(--rgh-green);
    border-color: var(--rgh-green);
    color: #fff
}

.rgh-blog-pagination .page-link:hover {
    background: var(--rgh-green-pale);
    color: var(--rgh-green-dark)
}

.rgh-card-news__img-placeholder {
    height: 200px;
    border-radius: .375rem .375rem 0 0
}

/* ═══════════════════════════════════════════════════════════════════
   Zwei-Spalten-Layout (main + sidebar)
   ═══════════════════════════════════════════════════════════════════ */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
    max-width: 1320px;
    margin: 0 auto;
    padding: 3rem 0;
}

.col-main {
    min-width: 0
}

.col-sidebar {
    position: sticky;
    top: 90px
}

@media (max-width: 991px) {
    .two-col-layout {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .col-sidebar {
        position: static;
    }
}

.rgh-blog-list {
    padding: 0;
}

.rgh-events-list {
    padding: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   Rich-Text-Editor Inhalt (.prose)
   Stellt die vom Browser-Reset / Bootstrap entfernten Listen-Stile
   für Inhalte aus dem Tiptap-Editor wieder her.
   In den Twig-Templates muss der Container die Klasse "prose" tragen.
   ═══════════════════════════════════════════════════════════════════ */
.prose ul,
.prose ol {
    padding-left: 1.75rem;
    margin-top: .5rem;
    margin-bottom: 1rem;
    list-style-position: outside;
}

/* Override Bootstrap's list-inline-item which forces display:inline.
   Tiptap sometimes saves li elements with this Bootstrap class. */
.prose li,
.prose li.list-inline-item {
    display: list-item !important;
    padding-left: 0;
}

.prose ul {
    list-style-type: disc;
}

.prose ul ul {
    list-style-type: circle;
}

.prose ul ul ul {
    list-style-type: square;
}

.prose ol {
    list-style-type: decimal;
}

.prose ol ol {
    list-style-type: lower-alpha;
}

.prose li {
    margin-bottom: .35rem;
    line-height: 1.65;
}

.prose li>ul,
.prose li>ol {
    margin-top: .3rem;
    margin-bottom: .3rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rgh-green-dark);
    margin-top: 2rem;
    margin-bottom: .75rem;
}

.prose h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--rgh-green-dark);
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}

.prose blockquote {
    border-left: 4px solid var(--rgh-green);
    padding-left: 1rem;
    margin-left: 0;
    color: var(--rgh-text-muted);
    font-style: italic;
}

.prose a {
    color: var(--rgh-green);
    text-decoration: underline;
}

.prose a:hover {
    color: var(--rgh-green-dark);
}

.prose strong {
    font-weight: 700;
}

.prose em {
    font-style: italic;
}