.PostIt {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  max-width: 400px;
  height: 350px;
  margin: 0 20px 20px 0;
  padding: 0 0 24px 0;
  border-radius: 3px;
  background-color: #fff875;
  box-shadow: 0 25px 20px -20px rgba(0, 0, 0, 0.45);
}

@media screen and (min-width: 1025.02px) {

.PostIt {
    align-items: flex-start;
    width: 400px;
}
  }

.PostIt-top {
  width: 100%;
  height: 50px;
  padding: 20px;
  background-color: #fffbba;
}

.PostIt-categoryHeadline {
  margin-bottom: 10px;
  padding: 8px 16px;
  font-size: 0.9375rem;
  text-transform: uppercase;
}

.neos-backend .PostIt-categoryHeadline {
  font-size: 0.9375rem;
}

.PostIt-link {
  position: absolute;
  bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--clr-primary);
}

.PostIt-link:hover {
    -webkit-text-decoration: underline;
    text-decoration: underline;
  }

.PostIt-arrow {
  width: 14px;
}

.PostIt-headlineContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  padding: 10px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1025.02px) {

.PostIt-headlineContainer {
    padding-bottom: 15px;
}
  }

.PostIt-Icon {
  display: flex;
  flex: 1 0 90px;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  background: var(--clr-primary);
}

.PostIt-headline {
  margin: 0;
  margin-left: 0;
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 24px */
  color: var(--clr-primary);
}

@media screen and (min-width: 1025.02px) {

.PostIt-headline {
    text-align: left;
}
  }

.PostIt-text {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%; /* 36px */
  text-align: center;
  letter-spacing: 0.045rem;
  color: var(--clr-primary);
}

@media screen and (min-width: 1025.02px) {

.PostIt-text {
    text-align: left;
}
  }

.PostIt-text p {
    margin: 0 0 10px 0;
  }

.PostIt-text p:last-child {
      margin: 0;
    }
