/* === Bauerschmidt Download List === */
.bs-dl {
  font-family: "Funnel Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.bs-dl__group {
  margin-bottom: 4em;
}
.bs-dl__group:last-child {
  margin-bottom: 0;
}

.bs-dl__heading {
  font-family: "Funnel Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: #0D1B2E;
  margin: 0 0 24px 0;
}

.bs-dl__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bs-dl__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  min-height: 56px;
  border-bottom: 1px solid #E5E5E5;
  text-decoration: none !important;
  color: inherit;
  transition: color .15s ease;
}
.bs-dl__list > .bs-dl__item:last-child {
  border-bottom: 0;
}
.bs-dl__item:hover {
  text-decoration: none !important;
  color: inherit;
}
.bs-dl__item:hover .bs-dl__title {
  color: #0077C8;
}
.bs-dl__item:hover .bs-dl__icon {
  transform: translateY(2px);
  color: #00497C;
}

.bs-dl__title {
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #0D1B2E;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  transition: color .15s ease;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.bs-dl__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0077C8;
  transition: transform .2s ease, color .15s ease;
}
.bs-dl__icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.bs-dl__item--no-link {
  cursor: default;
}
.bs-dl__item--no-link:hover .bs-dl__title { color: #0D1B2E; }
.bs-dl__item--no-link:hover .bs-dl__icon  { transform: none; color: #0077C8; }

.bs-dl__empty {
  padding: 32px 0;
  text-align: center;
  color: #5A6A7E;
  font-style: italic;
}

@media (max-width: 767px) {
  .bs-dl__heading { font-size: 22px; margin-bottom: 18px; }
  .bs-dl__item { gap: 14px; padding: 16px 0; min-height: 56px; }
  .bs-dl__title { font-size: 15px; line-height: 1.45; }
  .bs-dl__icon svg { width: 20px; height: 20px; }
  .bs-dl__group { margin-bottom: 2.5em; }
}

@media (max-width: 480px) {
  .bs-dl__heading { font-size: 20px; }
  .bs-dl__title { font-size: 14px; }
  .bs-dl__item { gap: 12px; padding: 14px 0; }
}
