/* ==========================================================
   Design Tokens
   ========================================================== */

:root {
	--dbhub-padding-side: 5rem;
}

@media screen and (max-width: 1024px) {
	:root {
		--dbhub-padding-side: 2.5rem;
	}
}

@media screen and (max-width: 768px) {
	:root {
		--dbhub-padding-side: 1.25rem;
	}
}


/* ==========================================================
   Base / Reset
   ========================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	min-height: 100%;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	min-height: 100%;
	margin: 0;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body,
button,
input,
textarea,
select {
	font-family: Helvetica, Arial, sans-serif;
}

button,
input,
textarea,
select {
	font: inherit;
}

button {
	color: inherit;
}

button:not(:disabled) {
	cursor: pointer;
}

img,
picture,
svg,
video,
canvas {
	display: block;
	max-width: 100%;
}

img,
video,
canvas {
	height: auto;
}

iframe {
	max-width: 100%;
	border: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 0;
}

[hidden] {
	display: none !important;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


/* ==========================================================
   Global Styles
   ========================================================== */


/* ==========================================================
   Static Hero
   ========================================================== */

.dbhub-static-hero {
	height: 100dvh;
}

.dbhub-static-hero-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding-right: var(--dbhub-padding-side);
	padding-left: var(--dbhub-padding-side);
	background-color: khaki;
}


/* ==========================================================
   Typography
   ========================================================== */

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
ul,
a {
	font-family: Helvetica, Arial, sans-serif;
	margin: 0;
}


/* ==========================================================
   Sections
   ========================================================== */

.dbhub-section__meta {
	background-color: white;
}

.dbhub-section__meta,
.dbhub-section__content {
	padding: var(--dbhub-padding-side);
}