{#
.courses__inner {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  align-items: center;
  gap: 32px;
}
.courses__inner .bold {
  color: #2b2b2c;
}

.course-new.course--outer.aos-init.aos-animate.show-new {
  height: auto;
}
.filter__grid-item-new.box-shadow.active {
  border-color: var(--blue);
}
.course-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: self-start;
}

.courses__full.wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.wide .course {
  width: 100%;
}
@media(max-width: 991px) {
  .courses__full.wide {
    grid-template-columns:  1fr;
  }
  .courses__inner {
    align-items: center;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
  }
}
@media(max-width: 767px) {
  .course--inner, .course--inner-new {
    display: flex;
    border: var(--border);
    border-radius: 8px;
    height: 100%;
    flex-wrap: wrap;
    width: 100%;
  }
  .course__img,
  .course__img-new {
    width: 100%;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 0;
    padding: 16px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 8px;
  }
  .course__details {
    width: 100%;
  }
  .course--inner.box-shadow, .course--inner-new {
    max-height: none;
  }
  .course__date-month:after {
/*     content: none; */
    height: 100%;
    width: 2px;
    left: -8px;
    top: 0;
  }
  .course__img > div, .course__img-new > div {
    background-color: rgb(73 124 173 / 80%);
    min-height: 65%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: end;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(73, 124, 173, 0.3);
    border-radius: 4px;
    padding: 8px;
    align-items: center;
    gap: 16px;
  }
  .course__date-month {
    display: flex;
    flex-direction: row;
    position: relative;
    padding-top: 0;
    gap: 8px;
  }
  .course__date-month {
    top: 0;
    position: relative;
  }
}

body .course-new {
  display: flex;
}

.cc-hero__schedule-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: #497cad;
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cc-hero__schedule-link:hover {
  background: #3f6e99;
}

.cc-hero__schedule-link svg {
  flex-shrink: 0;
}

.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cc-modal[hidden] {
  display: none;
}

.cc-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(43,43,44,0.56);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cc-modal__box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  width: 100%;
  max-width: 560px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(43,43,44,0.18);
  top: 20px;
}

.cc-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.cc-modal__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #497CAD;
  margin: 0 0 4px;
}

.cc-modal__title {
  font-size: 20px;
  font-weight: 700;
  color: #2b2b2c;
  margin: 0;
}

.cc-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #f0f0f0;
  background: #f9fafc;
  color: #6D6C6D;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.cc-modal__close:hover {
  background: #f0f0f0;
  color: #2b2b2c;
}

.cc-modal__body {
  overflow-y: auto;
  padding: 0 24px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.cc-modal__body::before,
.cc-modal__body::after {
  content: '';
  display: block;
  height: 16px;
}

.cc-modal__schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cc-modal__group {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6D6C6D;
  padding: 12px 0 6px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 2px;
}

.cc-modal__group:first-child {
  padding-top: 0;
}

.cc-modal__session {
  display: grid;
  grid-template-columns: 16px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cc-modal__session:last-child {
  border-bottom: none;
}

.cc-modal__session-dot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-modal__session-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-modal__session-date {
  font-size: 14px;
  font-weight: 500;
  color: #2b2b2c;
}

.cc-modal__session-time {
  font-size: 12px;
  color: #6D6C6D;
}

.cc-modal__session-mode {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  background: #f0f0f0;
  color: #6D6C6D;
}

.cc-modal__session-mode--online {
  background: #EEF4FA;
  color: #2D4A7A;
}

.cc-modal__session-mode--praesenz,
.cc-modal__session-mode--präsenz {
  background: #EEF5EE;
  color: #2d5a30;
}

.cc-modal__footer {
  padding: 16px 24px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.cc-modal__close-btn {
  width: 100%;
  padding: 12px;
  border: 1px solid #f0f0f0;
  border-radius: 8px;
  background: #f9fafc;
  color: #6D6C6D;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.cc-modal__close-btn:hover {
  background: #f0f0f0;
  color: #2b2b2c;
}
body.cc-modal-open {
  overflow: hidden;
} 
#}