#crm-seminar-shop-filter-mobile {
  margin-bottom: 64px;
}
#crm-seminar-shop-filter {
  display: none;
}

#crm-seminar-shop-results {
  display: flex;
  padding-right: 32px;
  flex-direction: column;
  gap: 128px;
}

.crm-seminar-filter-header {
  margin-top: 16px;
  margin-bottom: 16px;
}
/* Accessibility */
.crm-seminar-shop-result-container:focus {
  outline: none;
  box-shadow: 0px 0px 10px 10px var(--crm-new-blue);
}

a.crm-seminar-preview-link:focus {
  outline: max(2px, 0.15em) solid var(--crm-new-blue) !important;
  outline-offset: max(2px, 0.15em) !important;
}
/* Shared Filter Input styles */
.crm-seminar-shop-filter-input-checkbox-set-container {
  display: flex;
  flex-direction: column;
  gap:20px;
}

.crm-seminar-shop-filter-input-checkbox-set-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Search results */
h1#crm-seminar-shop-seminar-type-header {
  font-family: var(--crm-main-font-family);
  font-style: normal;
  font-weight: 300;
  font-size: 32px;
  line-height: 44px;
  color: var(--crm-thieme-dunkelblau);
}

p#crm-seminar-shop-seminar-type-caption {
  margin-bottom: 16px;
  font-family: var(--crm-main-font-family);
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  color: var(--crm-thieme-dunkelblau);
}

.crm-seminar-shop-result-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  padding: 0px;
  background: #ffffff;
  box-shadow: 0px 8px 32px rgba(1, 52, 118, 0.1);
  text-decoration: none !important;
  transition: box-shadow 0.3s ease-in-out;
}

.crm-seminar-shop-result-container:hover {
  box-shadow: 0px 8px 32px rgba(1, 52, 118, 0.2);
}

.crm-seminar-shop-preview-image {
  margin: 0;
  height: 120px;
  max-height: 120px;
  width: 100%;
  background-color: #dddddd;
}

div.crm-seminar-preview-content-container {
  padding: 24px;
}

h3.crm-seminar-preview-header {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
  font-family: var(--crm-main-font-family);
  font-style: normal;
  font-weight: 300;
  font-size: 24px;
  line-height: 32px;
  color: var(--crm-thieme-dunkelblau);
}

p.crm-seminar-preview-text {
  font-family: var(--crm-main-font-family);
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 28px;
  color: #1a1c1e;
}

ul.crm-seminar-preview-list {
  padding-left: 0;
}

li.crm-seminar-preview-list-item {
  list-style-type: none;
  margin-bottom: 24px;
  margin-top: 24px;
  padding: 0;
  display: flex;
  gap: 26px;
  align-items: center;
}

.crm-seminar-preview-list-item-bullet-point {
  display: inline-block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #d9d9d9;
  min-width: 27px;
}
@media screen and (min-width: 780px) {
  #crm-seminar-shop-filter-mobile {
    display: none;
  }
     
  #crm-seminar-shop-filter {
    display: unset;
  }

  #crm-seminar-shop-results {
    max-width: 100%;
    width: 100%;
    display: grid;
    align-content: start;
    grid-template-columns: repeat(auto-fill, 330px);
    grid-template-rows: auto;
    column-gap: 40px;
    row-gap: 40px;
  }

  #crm-seminar-shop-section {
    display: flex;
    gap: 32px;
  }

  .crm-seminar-filter-header {
    margin-top: 20px;
    margin-bottom: 8px;
  }
}
