
/* ── Page header ── */
.page-header {
    padding: 96px 0 48px;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
  font-family: var(--font-d);
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  letter-spacing: 0.04em; line-height: 1.05;
  margin-bottom: 12px;
}

.page-header p {
  font-size: 0.95rem; color: var(--text-muted);
  max-width: 560px; line-height: 1.7;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.breadcrumb a:hover {
    color: var(--text);
}

.breadcrumb span {
    color: var(--border-hi);
}

.header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
