@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,600);
.snip1336 {
  font-family: 'Roboto', Arial, sans-serif;
  position: relative;
  overflow: hidden; /* Wichtig, damit Überlappungen sichtbar sind */
  margin: 20px;
  margin-bottom: 20px;
  min-width: 130px;
  max-width: 315px;
  color: #ffffff;
  text-align: left;
  line-height: 1.4em;
  background-color: #141414;
  box-shadow: 10px 14px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, margin-bottom 0.3s ease; /* Margin-Transition hinzufügen */
  transform-origin: left top; /* Skalierung startet links oben */
}

.snip1336:hover {
  transform: scale(1.1) translateX(20px);
  box-shadow: 15px 20px 25px rgba(0, 0, 0, 0.4);
  margin-bottom: 100px; /* Erhöht den Abstand nach unten, um Überlappung zu verhindern */
}

.snip1336 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.snip1336 img {
  max-width: 100%;
  vertical-align: top;
  opacity: 0.85;
}

.snip1336 figcaption {
  width: 100%;
  background-color: #141414;
  padding: 25px;
  position: relative;
}

.snip1336 figcaption:before {
  position: absolute;
  
  content: '';
  bottom: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 55px 0 0 400px;
  border-color: transparent transparent transparent #141414;
}

.snip1336 figcaption a {
  padding: 5px;
  border: 1px solid #ffffff;
  color: #ffffff;
  font-size: 0.7em;
  text-transform: uppercase;
  margin: 10px 0;
  display: inline-block;
  opacity: 0.65;
  width: 47%;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
}

.snip1336 figcaption a:hover {
  opacity: 1;
}

.snip1336 .profile {
  border-radius: 50%;
  position: absolute;
  bottom: 100%;
  left: 25px;
  z-index: 1;
  max-width: 90px;
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.snip1336 .follow {
  margin-right: 4%;
  border-color: #ffb100;
  color: #ffb100;
}

.snip1336 h2 {
  margin: 0 0 5px;
  font-weight: 200;
}

.snip1336 h2 span {
  display: block;
  font-size: 0.3em;
  color: #ffb100;
}

/* Neue CSS-Regeln für den ausgeblendeten Text */
.snip1336 .hover-text {
  max-height: 0; /* Text ist ausgeblendet und nimmt keinen Platz ein */
  opacity: 0; /* Text ist unsichtbar */
  overflow: hidden; /* Verhindert, dass der Text angezeigt wird */
  transition: max-height 0.9s ease, opacity 0.5s ease; /* Sanfter Übergang */
  
}

.snip1336:hover .hover-text {
  max-height: 500px; /* Maximalhöhe, die der Text einnehmen kann */
  opacity: 1; /* Text wird sichtbar */
  
}