/* ------------------ Copyright (c) 2025 by LittleSnippets.net (https://codepen.io/littlesnippets/pen/PPVpeM) ------------------ */
:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}
* {
  box-sizing: border-box;
}
.cards_wrapper {
  display: grid;
  grid-gap:2rem;
  padding: 1rem;
  max-width: 100%;
  margin: 0 auto;
  justify-content:center;
  text-align: center;
}
@media (min-width: 600px) {
  .cards_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 800px) {
  .cards_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .card {
    height: 330px;
  }
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.card_content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.card_content > * + * {
  margin-top: 1rem;
}

.title {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2;
margin-top: 0.5em;
letter-spacing: -0.025rem;
text-shadow: 0 -1px 1px #000, 0 1px 1px #FFFFFF;
}

.copy {
  font-size: 0.9em;
  line-height: 1.55;
}


@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translateY(0);
  }

  .card_content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .card_content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
.card:focus-within {
    align-items: center;
  }
  .card:hover:before,
.card:focus-within:before {
    transform: translateY(-4%);
  }
  .card:hover:after,
.card:focus-within:after {
    transform: translateY(-50%);
  }
  .card:hover .card_content,
.card:focus-within .card_content {
    transform: translateY(0);
  }
  .card:hover .card_content > *:not(.title),
.card:focus-within .card_content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within:before, .card:focus-within:after,
.card:focus-within .card_content,
.card:focus-within .card_content > *:not(.title) {
    transition-duration: 0s;
  }
}
.card:nth-child(1):before {
  background-image: url(img/div_schwer_anlagenbau.jpg);
}
.card:nth-child(2):before {
  background-image: url(img/div_sondermaschinenbau.jpg);
}
.card:nth-child(3):before {
 background-image: url(img/div_rekonstruktion.jpg);
}
.card:nth-child(4):before {
  background-image: url(img/div_stahlbau.jpg);
}