@charset "utf-8";
/* CSS Document */


    body{ background: var(--mw-bg); color: var(--mw-dark); }

    :root{
      --mw-green: #009640;
      --mw-dark:  #1d1d1b;
      --mw-bg:    #f7f8f9;
    }

    .mw-hero{
      background: #fff;
    }

    .mw-brandline{
      color: var(--mw-green);
      font-weight: 700;
      letter-spacing: .2px;
    }

    .mw-card{
      border: 0;
      border-radius: 1rem;
      box-shadow: 0 10px 30px rgba(0,0,0,.08);
      overflow: hidden;
      height: 100%;
      transition: background-color .25s ease, box-shadow .25s ease;
    }
    @media (hover: hover) and (pointer: fine) {
    .mw-card:hover{
    background-color: rgba(0,150,64,.04);
  }
}

    .mw-card .card-body{
      padding: 1.25rem 1.25rem 1rem;
    }

    .mw-logo{
      height: 140px;
      width: auto;
      max-width: 100%;
      display: block;
    }

    .mw-logo--dach{
      height: 114px;
    }

    .mw-event-strong{
      font-weight: 600;
      color: var(--mw-green);
    }

    .btn-mw{
      background: var(--mw-green);
      border-color: var(--mw-green);
      color: #fff;
    }
.btn-mw:hover,
.btn-mw:focus-visible{
  background-color: rgba(0,150,64,.85); /* helleres Brand-Grün */
  border-color: rgba(0,150,64,.85);
  color: #fff;
}

    .mw-badge-ext{
      font-size: .85rem;
      color: rgba(29,29,27,.75);
    }

    .mw-footer{
      color: rgba(29,29,27,.75);
      font-size: .95rem;
    }

@media (max-width: 575.98px) {
  .mw-hero .lead{
    font-size: 1rem;
    line-height: 1.45;
  }
}

@media (max-width: 575.98px) {
  .mw-card .card-body{
    padding: 1rem;
  }
}

/* === Accessibility: Fokus sichtbar & markenkonform === */
a:focus-visible,
button:focus-visible,
.btn:focus-visible{
  outline: 3px solid rgba(0,150,64,.35);
  outline-offset: 3px;
}
.mw-card:focus-within{
  box-shadow: 0 0 0 4px rgba(0,150,64,.12);
}
a:focus,
button:focus,
.btn:focus{
  outline: none;
}

.mw-coevent-label{
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  color: rgba(29,29,27,.55);
}

.mw-coevent-logo img{
  max-width: 220px;
  height: auto;
  transition: opacity .2s ease;
}

@media (hover: hover) {
  .mw-coevent-logo:hover img{
    opacity: .85;
  }
}

.mw-coevent-note{
  font-size: .85rem;
  color: rgba(29,29,27,.6);
}

.mw-icon{
  width: 14px;
  height: 14px;
  fill: var(--mw-green);
  vertical-align: middle;
  margin-right: 6px;
  margin-top: -2px; /* optische Feinjustierung */
}

/* ===== Globale Link-Gestaltung (Brand) ===== */
a{
  color: var(--mw-green);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s ease, font-weight .2s ease;
}

a:hover,
a:focus-visible{
  color: rgba(0,150,64,.7); /* helleres Grün */
  font-weight: 600;
  text-decoration: none;
}

/* Banner-Leiste unter Footer */
.mw-banner-bar{
  background: #f5f5f5;
  border-top: 1px solid rgba(0,0,0,.05);
}

.mw-banner{
  max-width: 150px;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* dezenter Hover */
@media (hover: hover) and (pointer: fine){
  .mw-banner:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
  }
}

.mw-highlights .ratio{
  background: #fff;
}

.mw-highlights .ratio img{
  padding: 1rem;
}

@media (max-width: 575.98px){
  .mw-highlights .ratio img{
    padding: .75rem;
  }
}