div.widget-left {
  width: 100%;
  max-width: 720px;
  box-shadow: none;
  border: 1px solid rgb(var(--c-primary));
}

div.widget-left-menu__layout {
  padding: 0 1rem;
  margin: 15px auto;
}

div.widget-left__body {
  padding: 1rem;
}

div.widget-left-menu__layout,
div.widget-left__body {
  width: 100%;
}

.calendar__item {
  list-style-type: none;
}

div.widget-left {
  height: auto;
}
div.widget-left-menu--brown {
  background: rgb(var(--c-primary));
}

h2.widget-left-menu__header {
  color: rgb(var(--c-neutral-lightest));
}

.widget-left__graphic path {
  stroke: rgb(var(--c-primary)) !important;
  fill: rgb(var(--c-primary)) !important;
}

h2.widget-left-menu__header:before {
  content: "Wetter für ";
}

div.widget-left-menu--blue .widget-left-menu__layout,
div.widget-left-menu--brown .widget-left-menu__layout {
  border-bottom: none;
}

div.widget-left-menu__logo_black,
div.widget-left-menu__logo_black_small {
  background: url(https://www.gkmb-cdn.de/img/openweather/new_logo_white.png)
  50% 50% no-repeat;
  background-size: 80px 35px;
}

div.widget-left__body {
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  grid-gap: 1.5rem;
}

img.weather-left-card__img {
  width: 128px;
  height: 128px;
}

div.widget-left__calendar {
  overflow-x: auto;
  width: 100%;
  overflow-y: hidden;
  padding-bottom: 20px;
}

div.widget-left-menu__logo_black {
  padding-right: 80px;
}

@media (min-width: 500px) {
  div.widget-left__body {
    display: grid;
    grid-template-columns: 128px 1fr;
  }
  div.weather-left-card__row1 {
    flex-direction: column;
    height: auto;
  }
  p.weather-left-card__number {
    padding-top: 10px;
  }
}

@media (min-width: 800px) {
  div.widget-left__body {
    display: flex;
    align-items: center;
    flex-direction: row;
  }
  div.weather-left-card__row1 {
    display: grid;
    grid-template-columns: max-content 1fr;
  }
  div.weather-left-card__row2 {
    padding-top: 10px;
  }
  img.weather-left-card__img {
    width: 100px;
    height: 100px;
  }
  div.widget-left__calendar {
    overflow-x: hidden;
    width: 100%;
    padding-bottom: 0;
  }
}