/* ==========================================================================
   Hibbs — site stylesheet
   Built for the current markup (logo-container / .posted)
   ========================================================================== */

:root {
	--ink: #606060;
	--ink-soft: #99A7A9;
	--ink-light: #AEAEAE;
	--bg: #FFFFFF;
	--font-base: Verdana, Arial, sans-serif;
	--font-display: 'Lucida Sans', Verdana, sans-serif;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background-color: var(--bg);
	color: var(--ink);
	font-family: var(--font-base);
	font-size: 13px;
	line-height: 1.7;
}

a {
	color: var(--ink-soft);
	text-decoration: none;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.5px;
}

a:hover {
	text-decoration: underline;
}

.logo-container {
	text-align: center;
	padding: 40px 20px;
}

.logo-container img {
	max-width: 100%;
	height: auto;
}

/* Small caption / status line under the logo, in the old sidetitle style */
.posted {
	margin-top: 18px;
	color: var(--ink-light);
	font-family: var(--font-display);
	font-size: 12px;
	font-weight: bold;
	font-variant: small-caps;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
}

/* Simple footer note, in case you want a copyright/contact line later */
footer {
	margin-top: 40px;
	font-size: 10px;
	color: var(--ink-light);
	text-align: center;
	padding-bottom: 20px;
}

/* Responsive tightening for small screens */
@media (max-width: 480px) {
	.logo-container {
		padding: 24px 16px;
	}
}
