/* Downloadbereich – Karten mit Dateilinks aus dem Theme */
.hrf-downloadbereich-root {
  color: #0A1B33;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: clip;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.hrf-downloadbereich-root * { box-sizing: border-box; }
.hrf-dl-hero,
.hrf-dl-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: clamp(20px, 4vw, 48px);
  padding-right: clamp(20px, 4vw, 48px);
}
.hrf-dl-hero {
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(20px, 2.6vw, 36px);
}
.hrf-dl-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #01408D;
  margin-bottom: 14px;
}
.hrf-dl-hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #01408D;
  margin: 0 0 16px;
}
.hrf-dl-hero p {
  margin: 0;
  max-width: 46rem;
  font-size: 18px;
  line-height: 1.55;
  color: #2E3B4E;
}
.hrf-dl-section {
  padding-top: 12px;
  padding-bottom: clamp(40px, 6vw, 72px);
}
.hrf-dl-section:last-child {
  padding-bottom: clamp(72px, 9vw, 120px);
}
.hrf-dl-section h2 {
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  color: #0A1B33;
  margin: 0 0 18px;
}
.hrf-dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}
.hrf-dl-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #E3E7EE;
  border-radius: 16px;
  padding: 16px;
  background: #FFFFFF;
  min-height: 100%;
}
.hrf-dl-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.3;
  color: #0A1B33;
}
.hrf-dl-meta {
  margin: 0;
  font-size: 14px;
  color: #5B6778;
}
.hrf-dl-thumb,
.hrf-dl-logo {
  width: 100%;
  border-radius: 10px;
  background: #F7F9FC;
}
.hrf-dl-thumb {
  height: 150px;
  object-fit: cover;
}
.hrf-dl-logo {
  height: 92px;
  object-fit: contain;
  padding: 18px 12px;
}
.hrf-dl-card--dark {
  background: #0A1B33;
  border-color: #0A1B33;
}
.hrf-dl-card--dark h3,
.hrf-dl-card--dark .hrf-dl-meta {
  color: #FFFFFF;
}
.hrf-dl-card--dark .hrf-dl-logo {
  background: transparent;
}
.hrf-dl-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #01408D;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
}
.hrf-dl-btn:hover {
  background: #0A1B33;
}
.hrf-dl-card--dark .hrf-dl-btn {
  background: #FFFFFF;
  color: #01408D !important;
}
.hrf-dl-card--dark .hrf-dl-btn:hover {
  background: #E8EEF6;
}
.hrf-dl-sheet {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 150px;
  padding: 18px 16px;
  border-radius: 10px;
  background: #F3F6FB;
}
.hrf-dl-sheet img {
  width: 148px;
  max-width: 70%;
  height: auto;
}
.hrf-dl-sheet span {
  font-weight: 800;
  color: #01408D;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

@media (max-width: 640px) {
  .hrf-dl-grid {
    grid-template-columns: 1fr;
  }
}
