.themen-bundle-list {
   display: flex;
   flex-wrap: wrap;
   gap: 2%;
   row-gap: 20px;
}

.themen-bundle-item {
   display: flex;
   flex-direction: column;
   border-radius: var(--border-radius);
   width: 32%;
   background-color: var(--color-white);
   padding: 41px 32px;
   justify-content: space-between;
}

.themen-bundle-item h3 {
   font-size: var(--text-l);
   line-height: var(--lh-l);
   padding-bottom: 30px;
}

.theme-mod {
   display: flex;
   justify-content: space-between;
   margin-top: 30px;

   a.merken {
      margin-left: 16px;
   }
}

.theme-link {
   font-family: var(--font-family-extrabold);
   position: relative;
   margin-right: 30px;
}

.theme-link:hover {
   text-decoration: underline;
}

.theme-link::after {
   content: "";
   background-image: url(/wp-content/themes/raabe-som/assets/arrow-right.svg);
   background-repeat: no-repeat;
   background-size: 40px;
   width: 30px;
   height: 33px;
   display: block;
   position: absolute;
   right: -30px;
   bottom: 1px;
}

.anzahl-artikel {
   font-size: var(--text-xs);
   color: var(--color-dark-grey);
   margin-top: 15px;
}

.themepaket-background {
   position: absolute !important;
   margin: auto;
   left: 0;
   right: 0;
   top: 00px;
   z-index: 1;
}

@media(max-width:1024px) {
   .themen-bundle-item {
      width: 49%;
   }
}


@media(max-width:767px) {
   .themen-bundle-item {
      width: 100%;
   }

   .themepaket-row {
      display: flex;
      flex-direction: column;

      et_pb_column_1_3 {
         order: 1;
      }

      .et_pb_column_2_3 {
         order: 2;
      }
   }

   .themen-bundle-item h3 {
      font-size: var(--text-3xl);
      line-height: var(--lh-3xl);
      padding-bottom: 30px;
   }
}