@charset "utf-8";
/* CSS Document */
<style>
/* =========================================================
   B&R STARTSEITE – OBERER BEREICH
   ========================================================= */

.br-top {
    --br-red: #b51f2a;
    --br-red-dark: #951822;
    --br-dark: #292929;
    --br-text: #555;
    --br-border: #e7e7e7;
    --br-light: #f6f6f6;

    padding-top: 50px;
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.br-top-intro {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
}

.br-top-intro h1 {
    margin-bottom: 15px;

    color: var(--br-dark);

    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.12;
}

.br-top-intro p {
    margin: 0;

    color: var(--br-text);

    font-size: 1.15rem;
    line-height: 1.7;
}


/* =========================================================
   KARTEN
   ========================================================= */

.br-top-card {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background: #fff;

    border: 1px solid var(--br-border);
    border-radius: 18px;

    box-shadow: 0 10px 32px rgba(0, 0, 0, .065);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.br-top-card:hover {
    transform: translateY(-4px);

    box-shadow: 0 17px 42px rgba(0, 0, 0, .105);
}


/* Highlight etwas hervorheben */

.br-top-card-highlight {
    border-top: 4px solid var(--br-red);
}


/* =========================================================
   BILDER
   ========================================================= */

.br-top-image {
    position: relative;

    height: 300px;

    overflow: hidden;

    background: #eee;
}

.br-top-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.br-top-card:hover .br-top-image img {
    transform: scale(1.025);
}


/* =========================================================
   INHALT
   ========================================================= */

.br-top-content {
    flex: 1;

    padding: 30px 32px 32px;

    display: flex;
    flex-direction: column;
}


/* Label */

.br-top-label {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    margin-bottom: 16px;
    padding: 7px 13px;

    border-radius: 50px;

    background: rgba(181, 31, 42, .09);
    color: var(--br-red);

    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}


/* Überschriften */

.br-top-content h2 {
    margin-bottom: 14px;

    color: var(--br-dark);

    font-size: clamp(1.5rem, 2vw, 1.85rem);
    font-weight: 700;
    line-height: 1.2;
}

.br-top-content p {
    margin-bottom: 24px;

    color: var(--br-text);

    font-size: 1rem;
    line-height: 1.65;
}


/* =========================================================
   PREIS AKTION
   ========================================================= */

.br-top-action-bottom {
    margin-top: auto;
    padding-top: 19px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--br-border);
}

.br-top-price-label {
    display: block;

    margin-bottom: 2px;

    color: #777;

    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.br-top-price strong {
    display: block;

    color: var(--br-red);

    font-size: 1.85rem;
    line-height: 1.1;
}

.br-top-price small {
    display: block;

    margin-top: 4px;

    color: #777;

    font-size: .75rem;
}


/* =========================================================
   LINKS
   ========================================================= */

.br-top-link {
    margin-top: auto;

    display: inline-flex;
    align-items: center;

    width: fit-content;

    gap: 7px;

    color: var(--br-red) !important;

    text-decoration: none;
    font-weight: 700;
}

.br-top-link::after {
    content: "→";

    transition: transform .2s ease;
}

.br-top-link:hover::after {
    transform: translateX(4px);
}


/* Button Highlight */

.br-top-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 19px;

    background: var(--br-red);

    border-radius: 9px;

    color: #fff !important;

    font-weight: 600;
    text-decoration: none;

    white-space: nowrap;

    transition:
        background .2s ease,
        transform .2s ease;
}

.br-top-button:hover {
    background: var(--br-red-dark);

    transform: translateY(-1px);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

    .br-top {
        padding-top: 40px;
    }

    .br-top-image {
        height: 280px;
    }

}


@media (max-width: 767.98px) {

    .br-top-intro {
        margin-bottom: 30px;
    }

    .br-top-image {
        height: 320px;
    }

    .br-top-content {
        padding: 25px;
    }

    .br-top-action-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .br-top-button {
        width: 100%;
    }

}


@media (max-width: 575.98px) {

    .br-top {
        padding-top: 30px;
    }

    .br-top-card {
        border-radius: 14px;
    }

    .br-top-image {
        height: 280px;
    }

}
/* =========================================================
   Aktuelles-Beiträge
   ========================================================= */

.br-news {
  --br-primary: rgba(229, 36, 32, 1);
  --br-primary-dark: rgba(190, 25, 22, 1);

  --br-primary-25: rgba(229, 36, 32, .25);
  --br-primary-15: rgba(229, 36, 32, .15);
  --br-primary-12: rgba(229, 36, 32, .12);
  --br-primary-09: rgba(229, 36, 32, .09);
  --br-primary-08: rgba(229, 36, 32, .08);
  --br-primary-04: rgba(229, 36, 32, .04);
  --br-primary-02: rgba(229, 36, 32, .02);

  --br-dark: #252525;
  --br-text: #444;
  --br-muted: #727272;
  --br-light: #f5f5f5;
  --br-border: #e5e5e5;

  --br-radius: 24px;
  --br-radius-small: 12px;

  color: var(--br-text);
  line-height: 1.65;
}

.br-news,
.br-news * {
  box-sizing: border-box;
}

.br-news h1,
.br-news h2,
.br-news h3,
.br-news h4 {
  color: var(--br-dark);
}

.br-news a {
  transition: all .25s ease;
}


/* =========================================================
   HERO – ALLGEMEIN
   ========================================================= */

.br-news .br-news-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 4rem;

  background: #f4f4f4;
  border-radius: var(--br-radius);
}

.br-news .br-news-hero-content {
  height: 100%;
  padding: 3rem;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.br-news .br-news-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;

  margin-bottom: 1.25rem;

  color: var(--br-primary);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.br-news .br-news-eyebrow::before {
  content: "";
  display: block;

  width: 34px;
  height: 2px;

  background: var(--br-primary);
}

.br-news .br-news-title {
  margin: 0 0 1.4rem;

  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
  font-weight: 700;
}

.br-news .br-news-title .br-accent {
  color: var(--br-primary);
}

.br-news .br-news-lead {
  max-width: 700px;
  margin-bottom: 1.25rem;

  font-size: 1.07rem;
  line-height: 1.75;
}


/* =========================================================
   HERO BILD
   ========================================================= */

.br-news .br-news-hero-image {
  position: relative;

  min-height: 420px;
  height: 100%;
}

.br-news .br-news-hero-image img {
  display: block;

  width: 100%;
  height: 100%;
  min-height: 420px;

  object-fit: cover;
}

.br-news .br-news-hero-image.br-news-image-contain {
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2rem;

  background:
    linear-gradient(
      135deg,
      #f8f8f8,
      #ececec
    );
}

.br-news .br-news-hero-image.br-news-image-contain img {
  max-height: 500px;
  object-fit: contain;
}


/* =========================================================
   BADGE / LABEL AUF BILD
   ========================================================= */

.br-news .br-news-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;

  padding: .8rem 1.1rem;

  background: rgba(255,255,255,.96);
  border-radius: var(--br-radius-small);

  color: var(--br-dark);

  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(8px);
}

.br-news .br-news-badge small {
  display: block;

  margin-bottom: .1rem;

  color: var(--br-primary);
  font-size: .69rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.br-news .br-news-badge strong {
  font-size: .95rem;
}


/* =========================================================
   PREISBOX
   ========================================================= */

.br-news .br-news-price {
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;

  margin-top: .5rem;
  padding: 1rem 1.3rem;

  background: #fff;
  border-left: 4px solid var(--br-primary);
  border-radius: 0 12px 12px 0;

  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.br-news .br-news-price-label {
  margin-bottom: .1rem;

  color: var(--br-muted);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.br-news .br-news-price-value {
  color: var(--br-primary);

  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.1;
  font-weight: 700;
}

.br-news .br-news-price-info {
  margin-top: .25rem;

  color: var(--br-muted);
  font-size: .8rem;
}


/* =========================================================
   EINLEITUNG
   ========================================================= */

.br-news .br-news-intro {
  max-width: 920px;
  margin: 0 auto 3rem;

  text-align: center;
}

.br-news .br-news-intro h2 {
  margin-bottom: 1rem;

  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 700;
}

.br-news .br-news-intro p {
  margin: 0;

  font-size: 1.07rem;
}


/* =========================================================
   STANDARD-KARTE
   ========================================================= */

.br-news .br-news-card {
  position: relative;

  height: 100%;
  padding: 2rem;

  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: 20px;

  overflow: hidden;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.br-news .br-news-card:hover {
  transform: translateY(-4px);

  border-color: var(--br-primary-25);

  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}

.br-news .br-news-card h2,
.br-news .br-news-card h3 {
  font-weight: 700;
}


/* =========================================================
   NUMMERIERTE KARTE
   ========================================================= */

.br-news .br-news-card-head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;

  margin-bottom: 1.2rem;
}

.br-news .br-news-number {
  flex: 0 0 54px;

  width: 54px;
  height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--br-primary-09);
  border-radius: 50%;

  color: var(--br-primary);

  font-size: 1.3rem;
  font-weight: 700;
}

.br-news .br-news-kicker {
  display: block;

  margin-bottom: .3rem;

  color: var(--br-primary);

  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}


/* =========================================================
   HERVORGEHOBENE KARTE
   ========================================================= */

.br-news .br-news-card-highlight {
  background:
    linear-gradient(
      135deg,
      var(--br-primary-08),
      var(--br-primary-02)
    );

  border-color: var(--br-primary-12);
}


/* =========================================================
   DUNKLE KARTE
   ========================================================= */

.br-news .br-news-card-dark {
  background: var(--br-dark);
  border-color: var(--br-dark);

  color: rgba(255,255,255,.82);
}

.br-news .br-news-card-dark h2,
.br-news .br-news-card-dark h3,
.br-news .br-news-card-dark strong {
  color: #fff;
}

.br-news .br-news-card-dark .br-news-number {
  background: var(--br-primary);
  color: #fff;
}

.br-news .br-news-card-dark .br-news-kicker {
  color: #fff;
  opacity: .65;
}


/* =========================================================
   INFO / ERGEBNIS-BOX
   ========================================================= */

.br-news .br-news-info {
  margin-top: 1.25rem;
  padding: 1rem 1.1rem;

  background: var(--br-light);
  border-left: 3px solid var(--br-primary);
  border-radius: 0 10px 10px 0;

  color: var(--br-dark);
  font-weight: 600;
}


/* =========================================================
   FEATURE / VORTEIL
   ========================================================= */

.br-news .br-news-feature {
  display: flex;
  align-items: flex-start;
  gap: .85rem;

  height: 100%;
  padding: 1rem;

  background: var(--br-light);
  border-radius: 12px;
}

.br-news .br-news-feature-icon {
  flex: 0 0 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  background: var(--br-primary);
  border-radius: 50%;

  color: #fff;
  font-size: .8rem;
  font-weight: 700;
}

.br-news .br-news-feature-text {
  font-size: .94rem;
  line-height: 1.45;
}


/* =========================================================
   ZAHLEN / FÖRDERUNG
   ========================================================= */

.br-news .br-news-stat {
  height: 100%;
  padding: 1rem;

  background: #fff;
  border: 1px solid var(--br-primary-15);
  border-radius: 14px;
}

.br-news .br-news-stat strong {
  display: block;

  color: var(--br-primary);

  font-size: 1.7rem;
  line-height: 1.1;
}

.br-news .br-news-stat span {
  display: block;

  margin-top: .35rem;

  color: var(--br-muted);

  font-size: .78rem;
  line-height: 1.4;
}


/* =========================================================
   HINWEISBOX
   ========================================================= */

.br-news .br-news-notice {
  margin-top: 2rem;
  padding: 1.5rem 1.7rem;

  background:
    linear-gradient(
      135deg,
      var(--br-primary-08),
      var(--br-primary-04)
    );

  border: 1px solid var(--br-primary-12);
  border-radius: 16px;
}

.br-news .br-news-notice p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   CTA
   ========================================================= */

.br-news .br-news-cta {
  position: relative;
  overflow: hidden;

  margin-top: 4rem;
  padding: 3rem;

  background: var(--br-primary);
  border-radius: var(--br-radius);

  color: #fff;
}

.br-news .br-news-cta h2 {
  position: relative;
  z-index: 1;

  margin-bottom: .8rem;

  color: #fff;

  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
}

.br-news .br-news-cta p {
  position: relative;
  z-index: 1;

  max-width: 820px;

  font-size: 1.03rem;
}

.br-news .br-news-cta-buttons {
  position: relative;
  z-index: 1;

  display: flex;
  flex-wrap: wrap;
  gap: .75rem;

  margin-top: 1.5rem;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.br-news .br-news-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;

  padding: .85rem 1.4rem;

  background: #fff;
  border: 2px solid #fff;
  border-radius: 8px;

  color: var(--br-primary) !important;

  font-weight: 700;
  text-decoration: none !important;
}

.br-news .br-news-btn-primary::after {
  content: "→";

  font-size: 1.15rem;

  transition: transform .25s ease;
}

.br-news .br-news-btn-primary:hover {
  background: var(--br-dark);
  border-color: var(--br-dark);

  color: #fff !important;

  transform: translateY(-2px);
}

.br-news .br-news-btn-primary:hover::after {
  transform: translateX(4px);
}

.br-news .br-news-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: .85rem 1.4rem;

  background: transparent;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 8px;

  color: #fff !important;

  font-weight: 600;
  text-decoration: none !important;
}

.br-news .br-news-btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}


/* =========================================================
   WEITERFÜHRENDE LINKS
   ========================================================= */

.br-news .br-news-related {
  margin-top: 4rem;
}

.br-news .br-news-related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 72px;
  height: 100%;

  padding: 1rem 1.2rem;

  background: #fff;
  border: 1px solid var(--br-border);
  border-radius: 12px;

  color: var(--br-dark) !important;

  font-weight: 600;
  text-decoration: none !important;
}

.br-news .br-news-related-link::after {
  content: "→";

  margin-left: 1rem;

  color: var(--br-primary);

  font-size: 1.25rem;

  transition: transform .2s ease;
}

.br-news .br-news-related-link:hover {
  border-color: var(--br-primary);

  box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.br-news .br-news-related-link:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {

  .br-news .br-news-hero-content {
    padding: 2.5rem 2rem;
  }

  .br-news .br-news-hero-image,
  .br-news .br-news-hero-image img {
    min-height: 340px;
  }

  .br-news .br-news-cta {
    padding: 2.5rem 2rem;
  }

}


@media (max-width: 767.98px) {

  .br-news .br-news-hero {
    margin-bottom: 3rem;
    border-radius: 18px;
  }

  .br-news .br-news-hero-content {
    padding: 2rem 1.4rem;
  }

  .br-news .br-news-hero-image,
  .br-news .br-news-hero-image img {
    min-height: 280px;
  }

  .br-news .br-news-hero-image.br-news-image-contain {
    padding: 1.5rem;
    min-height: 360px;
  }

  .br-news .br-news-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .br-news .br-news-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .br-news .br-news-number {
    flex-basis: 46px;

    width: 46px;
    height: 46px;
  }

  .br-news .br-news-cta {
    margin-top: 3rem;
    padding: 2rem 1.4rem;

    border-radius: 18px;
  }

  .br-news .br-news-cta-buttons {
    flex-direction: column;
  }

  .br-news .br-news-btn-primary,
  .br-news .br-news-btn-outline {
    width: 100%;
  }

  .br-news .br-news-related {
    margin-top: 3rem;
  }

  .readmore a {
    width: 100%;
  }

}


@media (prefers-reduced-motion: reduce) {

  .br-news *,
  .br-news *::before,
  .br-news *::after {
    transition: none !important;
  }

}
