div.card,
.card-img-top {
  border-radius: 0;
  border: none;
}

.scroll-top {
  --scrolltop-bg: #4A6C44;
  --scrolltop-hover-bg: #A47551;
}

div.frame-group-inner {
  --frame-embedded-border-radius: 0;
  --frame-spacing: 0;
}

div.textpic-item.textpic-gallery {
  padding: 0;
}

/* Einheitliches Padding für Text-Bild-Kombinationen */
div.textpic-item.textpic-text {
  padding: 1.5rem;
}

/* Responsive Anpassungen ab Desktop */
@media (min-width: 768px) {
  div.textpic-right .textpic-item.textpic-text {
    padding-right: 1.5rem;
  }

  div.textpic-left .textpic-item.textpic-text {
    padding-left: 0;
  }
}

/* Dropdown menu */
.dropdown-menu {
  width: auto !important;
  min-width: 280px !important;
  white-space: nowrap;
}

.dropdown-menu .nav-link {
  color: #4A6C44 !important;
}

.dropdown-menu .nav-link:hover {
  color: #3B5636 !important;
}

/* Responsive Anpassungen für Mobilgeräte */
@media (max-width: 767px) {
  div.textpic-item.textpic-text {
    padding-top: 0;
  }
}

.frame-background-quaternary {
  --frame-link-color: #4A6C44;
  --frame-link-hover-color: #3B5636;
}

/* Form Consent – Bestätigungsseite Newsletter */
.alert-danger {
  --bs-alert-color: #6b4a2e;
  --bs-alert-bg: #f3e6d8;
  --bs-alert-border-color: #A47551;
}

.alert-success {
  --bs-alert-color: #33422f;
  --bs-alert-bg: #e8ede4;
  --bs-alert-border-color: #4A6C44;
}

/* News-Layout */
.news-teaser {
    display: flex;
    align-items: stretch;
    margin-bottom: 2rem;
    overflow: hidden;
}

.news-teaser.bg-beige {
    background-color: #D8CBB3;
}

.news-teaser.bg-white {
    background-color: #ffffff;
}

.news-teaser.img-right {
    flex-direction: row-reverse;
}

.news-teaser-image {
    flex: 0 0 50%;
}

.news-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-teaser-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.news-teaser-date {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.news-teaser-title {
    margin: 0 0 0.5rem 0;
}

.news-teaser-subtitle {
    font-family: 'Mynerve-Regular';
    font-size: clamp(2.4rem, 3vw, 1.9rem);
    color: #A47551;
    margin: -0.25rem 0 0.75rem 0;
    line-height: 1.2;
}

.news-teaser-text {
    margin-bottom: 1.25rem;
}

.news-teaser-more {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-weight: 600;
    text-decoration: underline;
}

.news-teaser-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .news-teaser,
    .news-teaser.img-right {
        flex-direction: column;
    }
    .news-teaser-image img {
        height: 220px;
    }
}

/* Resources/Public/Css/custom-overrides.css in hofklepper_sitepackage */
.subnav-link {
    color: #4a7c2f; /* dein Grün, klickbar */
}
.subnav-link:hover,
.subnav-link:focus {
    color: #2f5720; /* dunkleres Grün */
    background-color: #f2f2f2;
}
.active > .subnav-link {
    color: #6b6b6b !important; /* Grau für aktuelle Seite */
}
.active > .subnav-link:before {
    border-left-color: #6b6b6b;
}
	
/*
 * Carousel Overlay (Abdunkelung für Bild/Video-Hintergründe)
 * -------------------------------------------------- */
.carousel-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.carousel-item .carousel-content {
  position: relative;
  z-index: 2;
}