.link-kachel p {
  margin: 0;
}

.link-kachel-thema {
  font-family: "Sora", sans-serif;
}

.link-kachel-link a {
  font-weight: 600 !important;
  position: relative;
  padding-left: 32px;
  margin-top: 12px !important;
  transition: color 0.35s ease;
  display: block;
}

.link-kachel-link a {
    text-decoration: none!important;
}

/* Icon */
.link-kachel-link::before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: 6px;
  background-image: url("/wp-content/themes/astra-child/images/svg/add_circle_blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  transform: translateY(-50%) rotate(0deg);
  transform-origin: center center;
  transition: transform 0.35s ease;
}

/* Linie */
.link-kachel-link::after {
  content: "";
  width: 100%;
  height: 8px;
  position: absolute;
  left: 0;
  bottom: -8px;

  background: var(--primary-color);
  border-radius: 4px;

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

/* Hover */
.link-kachel:hover .link-kachel-link, .link-kachel:hover .link-kachel-link a {
  color: var(--primary-color);
}

.link-kachel:hover .link-kachel-link::before {
  transform: translateY(-50%) rotate(180deg);
}

.link-kachel:hover .link-kachel-link::after {
  transform: scaleX(1);
}

@media (min-width: 922px) {
  .link-kachel-link a {
  color: transparent;
  }
}

@media (min-width: 1300px) {
    .wp-block-uagb-container.uagb-block-214f9ae1.uagb-layout-grid {
        grid-template-columns: minmax(1px, 1fr) minmax(1px, 1fr) minmax(1px, 1fr) minmax(1px, 1fr)!important;
    }
}
@media (min-width: 1500px) {
    .link-kachel-thema {
        font-size: 20px!important;
    }
}