:root {
  --dd-hertz-blue: #3659a5;
  --dd-hertz-blue-dark: #294889;
  --dd-hertz-panel: #f7f7f8;
  --dd-hertz-soft: #eceff3;
  --dd-hertz-line: rgba(31, 39, 51, 0.14);
  --dd-hertz-ink: #111827;
  --dd-hertz-muted: #4b5563;
}

.dd-hertz {
  display: grid;
  gap: 1.35rem;
  color: var(--dd-hertz-ink);
  font-family: var(--theme-font-family-sans);
}

.dd-hertz-header,
.dd-hertz-card,
.dd-hertz-bibliography {
  border: 1px solid var(--dd-hertz-line);
  border-radius: 0.75rem;
}

.dd-hertz-header {
  background: #fff;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.dd-hertz-kicker {
  margin: 0 0 0.5rem;
  color: var(--dd-hertz-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dd-hertz-header h2,
.dd-hertz-card h3,
.dd-hertz-bibliography h3 {
  margin: 0;
  font-family: var(--theme-font-family-sans);
}

.dd-hertz-header h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.dd-hertz-header p:last-child {
  max-width: 62rem;
  margin: 0.7rem 0 0;
  color: var(--dd-hertz-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.dd-hertz-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(24rem, 1.2fr);
  gap: 1.2rem;
}

.dd-hertz-card {
  overflow: hidden;
  background: var(--dd-hertz-panel);
}

.dd-hertz-card-header {
  border-bottom: 1px solid var(--dd-hertz-line);
  background: #fff;
  padding: 1rem 1.1rem;
}

.dd-hertz-card h3,
.dd-hertz-bibliography h3 {
  color: var(--dd-hertz-blue-dark);
  font-size: 1rem;
  font-weight: 800;
}

.dd-hertz-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.1rem;
}

.dd-hertz-two-col,
.dd-hertz-material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.dd-hertz-form label {
  display: grid;
  gap: 0.35rem;
}

.dd-hertz-form span {
  color: var(--dd-hertz-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.dd-hertz-form select,
.dd-hertz-form input {
  min-height: 2.8rem;
  width: 100%;
  border: 1px solid rgba(31, 39, 51, 0.18);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--dd-hertz-ink);
  padding: 0.62rem 0.75rem;
}

.dd-hertz-table-wrap {
  overflow-x: auto;
}

.dd-hertz-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.dd-hertz-table th,
.dd-hertz-table td {
  border-bottom: 1px solid var(--dd-hertz-line);
  padding: 0.72rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.dd-hertz-table thead th {
  background: #fff;
  color: var(--dd-hertz-blue-dark);
  font-size: 0.875rem;
  text-transform: uppercase;
}

.dd-hertz-table tbody th {
  width: 34%;
  color: var(--dd-hertz-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
}

.dd-hertz-table td {
  width: 33%;
}

.dd-hertz-note {
  margin: 1rem;
  border-left: 4px solid var(--dd-hertz-blue);
  background: #fff;
  color: var(--dd-hertz-muted);
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  line-height: 1.45;
}

.dd-hertz-bibliography {
  display: grid;
  gap: 1rem;
  background: #fff;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.dd-hertz-bibliography article {
  display: grid;
  gap: 0.55rem;
}

.dd-hertz-bibliography ol,
.dd-hertz-bibliography ul {
  display: grid;
  gap: 0.42rem;
  margin: 0;
  padding-left: 1.25rem;
  color: var(--dd-hertz-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .dd-hertz-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dd-hertz-header,
  .dd-hertz-card-header,
  .dd-hertz-form {
    padding: 0.95rem;
  }

  .dd-hertz-header h2 {
    font-size: 1.8rem;
  }

  .dd-hertz-two-col,
  .dd-hertz-material-grid {
    grid-template-columns: 1fr;
  }

  .dd-hertz-table {
    font-size: 0.84rem;
  }
}
