article.frontpage {
  position: relative;
  min-height: 50dvh;
  padding: 1rem 0rem;
  display: flex;
  flex-direction: column;
}

article.post-953 {
  position: relative;
  min-height: 50dvh;
  padding: 1rem 0rem;
}

article.post-953>div.background,
article.frontpage>div.background {
  position: absolute;
  top: 0;
  left: -3%;
  width: 106%;
  height: 100%;
  z-index: -1;
}

article.frontpage:nth-last-of-type(2)>div.background {
  background: linear-gradient(var(--teilbar-green-medium), var(--teilbar-green-light));
  /* background-color: var(--teilbar-green-medium); */
}

article.frontpage:nth-last-of-type(1)>div.background {
  background: linear-gradient(var(--teilbar-green-light), white);
  /*background-color: var(--teilbar-green-light);*/
}

article.post-953>div.background {
  background: linear-gradient(white, var(--teilbar-green-medium));
}

article#frontpage-vehicles {
  height: 30rem;
  max-height: 100dvh;
}

article#frontpage-vehicles>.card-block {
  height: 100%;
}


article#frontpage-vehicles>.card-block {
  position: relative;
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}


article#frontpage-vehicles>.card-block>.card-list {
  display: flex;
  gap: 1rem;
  height: 100%;
  width: 100%;
  overflow-x: hidden; /* auto */
  overflow-y: clip;
  scroll-behavior: smooth;
  padding: 1rem;
}

article#frontpage-vehicles>.card-block>.card-list>.teilbar-card {
  flex: 0 0 15rem;
  /* Width of each card */
  height: 100%;
  width: 10rem;
  background-size: cover;
  background-position: center;
  background-size: 90%;
  background-repeat: no-repeat;
  border-radius: 1rem;
  flex-shrink: 0;
  background-color: white;
  position: relative;
}

article#frontpage-vehicles>.card-block>.card-list>.teilbar-card>.vehicle-name {
    text-align: center;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    opacity: 50%;
    background-color: white;
    font-weight: 600;
    color: var(--bulma-text);
    padding: 1rem;
}

article#frontpage-vehicles>.card-block>.card-list>.teilbar-card>.buttons {
  text-align: center;
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
}

article#frontpage-vehicles>.card-block>.card-list>.teilbar-card>.buttons>.vehicle-book {
}

article#frontpage-vehicles>.card-block>.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem;
  cursor: pointer;
}

article#frontpage-vehicles>.card-block>.scroll-arrow.left {
  left: 0.5rem;
}

article#frontpage-vehicles>.card-block>.scroll-arrow.right {
  right: 0.5rem;
}