/***** Style Variables *****/

:root {
	--wrap: 960px;
}

* {
	box-sizing: border-box;
}

/***** HTML / Body Sections *****/

html, body{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: #0f172a;
}

body{
	display: flex;
	flex-direction: column;
}

main{
	height: calc(100vh - 100px);
	display: flex;
	justify-content: center;
	align-items: center;
}

/***** Header / Footer  *****/

header.site-header, footer.site-footer{
	height: 50px;
	background: #096484;
	color: #fff;	
}

.wrap {
	max-width: var(--wrap);
	margin: 1rem auto;
}

/***** Containers *****/

.vd-vin {
	display: grid;
	gap: 1rem;
}

.vd-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
	gap: 1rem;  
}

.vd-cell {
	background: #fff;
	border: 1px solid #e7e7e7;
	border-radius: .75rem;
	padding: 1rem;
	box-shadow: 0 1px 2px rgba(0,0,0,.04);
	display: grid;
	gap: .75rem;
}

.vd-group {
	display: grid;
	gap: .5rem;
}

.vd-list {
	display: grid;
	grid-template-columns: max-content 1fr;
	gap: .35rem .75rem;
	align-items: baseline;
	margin: 0;
	list-style: none;
}

.vd-vin.has-results {
	justify-content: flex-start;
}

@media (min-width: 900px) {
	.vd-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-height: 700px) {
	.vd-vin { justify-content: flex-start; }
}

/***** Form / Button / Inputs *****/

form#vdVinForm {
	margin: auto;
}

#vdVinForm input.vd-vin__input {
	padding: .6rem .8rem;
	border: 1px solid #cbd5e1;  
	border-radius: .5rem;
	min-width: 260px;
}

#vdVinForm input.vd-vin__btn {
	padding: .6rem 1rem;
	border: 0;
	border-radius: .5rem;
	background: #2563eb;
	color: #fff;
	cursor: pointer;
}

#vdVinForm button:hover {
	filter: brightness(.95);
}

/***** Text / Data *****/

#vd-results .wrap h2 {
	text-align: center;
}

.vd-group__title {
	font-weight: 700;
	font-size: .95rem;
	opacity: .85;
}

.vd-vin__status {
	min-height: 1.25rem;
	font-size: .95rem;
	text-align: center;
}

.vd-vin__label {
	font-weight: 600;
	color: #666;  
}

.vd-list__value {
	color: #52ACCC;
	font-weight: 500;
	text-align: right;
}

.vd-separator {
	height: 1px;
	background: linear-gradient(to right, rgba(0,0,0,.08), rgba(0,0,0,.02));
	margin: .25rem 0 .5rem;
}


/*****

Not In Use

.site-header .brand {
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

*****/