@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

/* Reset */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, menu, nav, output, section,
summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
	display: block;
}

html {
	box-sizing: border-box;
	scroll-behavior: smooth;
}

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

body {
	-webkit-text-size-adjust: none;
	-ms-overflow-style: scrollbar;
}

/* Theme */

:root {
	--bg-1: #07111d;
	--bg-2: #0c1727;
	--bg-3: #122033;
	--panel: rgba(255, 255, 255, 0.05);
	--panel-strong: rgba(255, 255, 255, 0.08);
	--line: rgba(125, 211, 252, 0.18);
	--line-strong: rgba(125, 211, 252, 0.32);
	--text: #f4f8fd;
	--text-soft: #bfd0e2;
	--text-muted: #96abc0;
	--ice: #7dd3fc;
	--ice-strong: #38bdf8;
	--ice-deep: #0ea5e9;
	--shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
	--radius: 22px;
}

/* Base */

body,
input,
select,
textarea {
	background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 48%, var(--bg-3) 100%);
	color: var(--text);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.7;
}

body {
	padding-top: 5.7rem;
	min-height: 100vh;
}

a {
	color: var(--ice);
	text-decoration: none;
	border-bottom: none;
	transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
	color: #ffffff !important;
}

strong,
b {
	color: #ffffff;
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

p {
	color: var(--text-soft);
	margin: 0 0 1.25rem 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #ffffff;
	font-family: "Oswald", Arial, sans-serif;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1.15;
	margin: 0 0 0.8rem 0;
	text-transform: uppercase;
}

h1 { font-size: 2.7rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.95rem; }
h6 { font-size: 0.85rem; }

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.4em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.4em;
}

hr {
	border: 0;
	border-bottom: 1px solid var(--line);
	margin: 2rem 0;
}

blockquote {
	border-left: 4px solid var(--ice-strong);
	color: var(--text-soft);
	font-style: italic;
	margin: 0 0 1.5rem 0;
	padding: 0.4rem 0 0.4rem 1rem;
}

code {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	border-radius: 10px;
	font-family: "Courier New", monospace;
	font-size: 0.9em;
	padding: 0.15rem 0.45rem;
}

pre {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	border-radius: 14px;
	margin: 0 0 1.5rem 0;
	overflow-x: auto;
	padding: 1rem 1.2rem;
}

pre code {
	background: transparent;
	border: 0;
	padding: 0;
}

.align-left { text-align: left; }
.align-center { text-align: center; }
.align-right { text-align: right; }

/* Lists */

ul,
ol {
	margin: 0 0 1.4rem 1.25rem;
}

ul li,
ol li {
	color: var(--text-soft);
	margin-bottom: 0.45rem;
	padding-left: 0.2rem;
}

ul.alt {
	list-style: none;
	margin-left: 0;
}

ul.alt li {
	border-top: 1px solid var(--line);
	padding: 0.75rem 0;
}

ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

dl {
	margin: 0 0 1.5rem 0;
}

dl dt {
	color: #ffffff;
	font-weight: 700;
	margin: 0 0 0.5rem 0;
}

dl dd {
	margin: 0 0 1rem 1rem;
}

/* Images */

.image {
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	display: block;
	width: 100%;
}

.image.fit,
.image.main,
.image.featured {
	display: block;
	width: 100%;
	margin: 0 0 1.5rem 0;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.image.left,
.image.right {
	max-width: 40%;
}

.image.left {
	float: left;
	padding: 0 1.25rem 1rem 0;
}

.image.right {
	float: right;
	padding: 0 0 1rem 1.25rem;
}

/* Row */

.row {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1rem;
}

.row > * {
	box-sizing: border-box;
	padding-left: 1rem;
}

.row.aln-left { justify-content: flex-start; }
.row.aln-center { justify-content: center; }
.row.aln-right { justify-content: flex-end; }
.row.aln-top { align-items: flex-start; }
.row.aln-middle { align-items: center; }
.row.aln-bottom { align-items: flex-end; }

.row > .col-1 { width: 8.333333%; }
.row > .col-2 { width: 16.666667%; }
.row > .col-3 { width: 25%; }
.row > .col-4 { width: 33.333333%; }
.row > .col-5 { width: 41.666667%; }
.row > .col-6 { width: 50%; }
.row > .col-7 { width: 58.333333%; }
.row > .col-8 { width: 66.666667%; }
.row > .col-9 { width: 75%; }
.row > .col-10 { width: 83.333333%; }
.row > .col-11 { width: 91.666667%; }
.row > .col-12 { width: 100%; }

/* Buttons */

input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	appearance: none;
	background: linear-gradient(135deg, var(--ice-strong) 0%, #60a5fa 100%);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 10px 24px rgba(56, 189, 248, 0.22);
	color: #07111d !important;
	cursor: pointer;
	display: inline-block;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	line-height: 1;
	padding: 1rem 1.7rem;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	color: #07111d !important;
	filter: brightness(1.06);
	transform: translateY(-1px);
}

.button.fit,
button.fit,
input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit {
	width: 100%;
}

.button.large,
button.large,
input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large {
	font-size: 1rem;
	padding: 1.1rem 1.95rem;
}

.button.small,
button.small,
input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small {
	font-size: 0.8rem;
	padding: 0.8rem 1.2rem;
}

/* Forms */

form {
	margin: 0 0 1.5rem 0;
}

label {
	color: #ffffff;
	display: block;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin: 0 0 0.7rem 0;
	text-transform: uppercase;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select,
textarea {
	appearance: none;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line);
	border-radius: 14px;
	color: #ffffff;
	display: block;
	outline: 0;
	padding: 0.9rem 1rem;
	text-decoration: none;
	width: 100%;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
select {
	height: 3.15rem;
}

textarea {
	min-height: 8rem;
	padding: 0.9rem 1rem;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
select:focus,
textarea:focus {
	border-color: var(--ice-strong);
	box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.18);
}

select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M10 14l10 10 10-10' fill='none' stroke='%237dd3fc' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: calc(100% - 0.8rem) center;
	background-size: 1rem;
	padding-right: 2.5rem;
}

input::placeholder,
textarea::placeholder {
	color: var(--text-muted);
	opacity: 1;
}

/* Checkbox / radio */

input[type="checkbox"],
input[type="radio"] {
	appearance: none;
	opacity: 0;
	position: absolute;
}

input[type="checkbox"] + label,
input[type="radio"] + label {
	color: var(--text-soft);
	cursor: pointer;
	font-family: "Inter", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0;
	padding-left: 2.3rem;
	position: relative;
	text-transform: none;
}

input[type="checkbox"] + label:before,
input[type="radio"] + label:before {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid var(--line-strong);
	border-radius: 0.35rem;
	content: "";
	height: 1.35rem;
	left: 0;
	position: absolute;
	top: 0.05rem;
	width: 1.35rem;
}

input[type="radio"] + label:before {
	border-radius: 50%;
}

input[type="checkbox"]:checked + label:before,
input[type="radio"]:checked + label:before {
	background: var(--ice-strong);
	border-color: var(--ice-strong);
}

input[type="checkbox"]:focus + label:before,
input[type="radio"]:focus + label:before {
	box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.18);
}

/* Boxes */

.box {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 18px;
	box-shadow: var(--shadow);
	margin-bottom: 1.8rem;
	padding: 1.6rem;
}

.box.alt {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

/* Tables */

.table-wrapper {
	overflow-x: auto;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin: 0 0 1.5rem 0;
	width: 100%;
}

table thead {
	border-bottom: 2px solid var(--line-strong);
}

table tfoot {
	border-top: 2px solid var(--line-strong);
}

table tbody tr {
	border-top: 1px solid var(--line);
}

table tbody tr:nth-child(2n + 1) {
	background: rgba(255, 255, 255, 0.03);
}

table th {
	color: #ffffff;
	font-weight: 700;
	padding: 0.9rem 0.75rem;
	text-align: left;
}

table td {
	color: var(--text-soft);
	padding: 0.9rem 0.75rem;
}

/* Icons */

.icon {
	border-bottom: 0;
	position: relative;
	text-decoration: none;
}

.icon:before {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-style: normal;
	font-variant: normal;
	line-height: 1;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: "Font Awesome 5 Brands";
}

.icon > .label {
	display: none;
}

/* Actions */

ul.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	list-style: none;
	margin: 0 0 1.5rem 0;
	padding: 0;
}

ul.actions li {
	margin: 0;
	padding: 0;
}

ul.actions.special {
	justify-content: center;
}

ul.actions.stacked {
	flex-direction: column;
}

ul.actions.fit li {
	flex: 1 1 auto;
}

ul.actions.fit li > * {
	width: 100%;
}

/* Header */

#header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1.2rem;
	background: rgba(7, 15, 28, 0.94);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
	left: 0;
	padding: 0.85rem 1.25rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
}

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

#header ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#header ul li {
	display: inline-block;
	padding-left: 0;
}

#header h1 {
	margin: 0;
	padding: 0;
	white-space: nowrap;
}

#header h1 a {
	color: #ffffff;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

#header h1 a:hover {
	color: var(--ice-strong) !important;
}

#header .links {
	flex: 1;
	margin-left: 0;
	overflow: visible;
	padding-left: 0;
}

#header .links ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 1rem;
}

#header .links ul li {
	margin: 0;
}

#header .links ul li a {
	border-bottom: 2px solid transparent;
	color: var(--text);
	display: inline-block;
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.92rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	padding: 0.3rem 0.05rem;
	text-transform: uppercase;
}

#header .links ul li a:hover {
	border-bottom-color: var(--ice-strong);
	color: var(--ice-strong) !important;
}

#header .main {
	display: flex;
	align-items: center;
}

#header .main ul.icons {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	margin: 0;
}

#header .main ul.icons li {
	display: flex;
	align-items: center;
}

#header .main ul.icons li a {
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text-soft);
	display: inline-flex;
	font-size: 1rem;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#header .main ul.icons li a:hover {
	background: rgba(56, 189, 248, 0.12);
	border-color: var(--ice-strong);
	color: var(--ice-strong) !important;
	transform: translateY(-1px);
}

#header #search,
#header .search {
	display: none !important;
}

/* Wrapper */

#wrapper {
	display: block;
	margin: 0 auto;
	max-width: 1280px;
	padding: 2rem 1rem 3rem 1rem;
	width: 100%;
}

body.is-menu-visible #wrapper {
	opacity: 1;
}

/* Main / Sidebar */

#main {
	float: left;
	width: calc(100% - 22rem);
}

#sidebar {
	float: right;
	width: 22rem;
}

@media screen and (max-width: 1280px) {

	#main {
		width: calc(100% - 20rem);
	}

	#sidebar {
		width: 20rem;
	}

}

@media screen and (max-width: 980px) {

	#main {
		width: 100%;
		float: none;
	}

	#sidebar {
		width: 100%;
		float: none;
		margin-top: 2rem;
	}

}

/* Desktop layout */
@media screen and (min-width: 981px) {
	#wrapper {
		display: flex;
		align-items: flex-start;
		gap: 2rem;
	}

	#main {
		width: 68%;
	}

	#sidebar {
		width: 32%;
		margin-top: 0;
	}
}

/* Mobile / tablet layout */
@media screen and (max-width: 980px) {
	#wrapper {
		display: block;
	}

	#main {
		width: 100%;
	}

	#sidebar {
		width: 100%;
		margin-top: 2rem;
	}
}

/* Intro */

#intro {
	margin: 0 0 2rem 0;
	padding: 1.5rem 0 0.75rem 0;
	text-align: center;
}

#intro .logo {
	border-bottom: 0;
	display: inline-block;
	margin: 0 0 1rem 0;
	width: auto;
}

#intro .logo:before {
	display: none;
}

#intro .logo img {
	display: block;
	margin: 0 auto;
	width: min(180px, 42vw);
	filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.18));
}

#intro header h2 {
	font-size: clamp(2.1rem, 4vw, 3.6rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-bottom: 0.35rem;
}

#intro header p {
	color: var(--text-soft);
	font-family: "Inter", Arial, sans-serif;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	line-height: 1.7;
	margin: 0 auto;
	max-width: 900px;
	text-transform: none;
}

/* Post / content cards */

.post,
.mini-post {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.post {
	margin: 0 0 2rem 0;
	padding: 2rem;
	position: relative;
}

.post > header {
	border-bottom: 1px solid var(--line);
	margin: 0 0 1.5rem 0;
	padding: 0 0 1rem 0;
	position: static;
	width: 100%;
}

.post > header .title {
	padding: 0;
}

.post > header .title h2 {
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	font-weight: 700;
}

.post > header .title p {
	color: var(--text-muted);
	font-family: "Inter", Arial, sans-serif;
	font-size: 1rem;
	letter-spacing: 0.01em;
	line-height: 1.6;
	margin-top: 0.25rem;
	text-transform: none;
}

.post > header .meta {
	display: none;
}

.post > footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.5rem;
}

.post > footer .actions,
.post > footer .stats {
	margin: 0;
}

.post > footer .stats {
	list-style: none;
	padding: 0;
}

.post > footer .stats li {
	margin: 0;
	padding: 0;
}

.post > footer .stats li a {
	color: var(--ice);
	font-family: "Oswald", Arial, sans-serif;
	font-size: 0.95rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.mini-post {
	margin: 0 0 1.5rem 0;
	overflow: hidden;
}

.mini-post header {
	padding: 1.25rem;
}

.mini-post header h3 {
	font-size: 1rem;
	margin-bottom: 0.3rem;
}

.mini-post .image {
	display: block;
	width: 100%;
}

.mini-post .image img {
	display: block;
	width: 100%;
}

/* Footer */

#footer {
	padding: 1rem 0 2rem 0;
	text-align: center;
}

#footer .icons {
	list-style: none;
	margin: 0 0 1rem 0;
	padding: 0;
}

#footer .icons li {
	display: inline-block;
	margin: 0 0.45rem;
	padding: 0;
}

#footer .icons li a {
	align-items: center;
	border: 1px solid var(--line);
	border-radius: 999px;
	color: var(--text-soft);
	display: inline-flex;
	font-size: 1rem;
	height: 2.7rem;
	justify-content: center;
	width: 2.7rem;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#footer .icons li a:hover {
	background: rgba(56, 189, 248, 0.12);
	border-color: var(--ice-strong);
	color: var(--ice-strong) !important;
	transform: translateY(-1px);
}

#footer .copyright {
	color: var(--text-muted);
	font-family: "Inter", Arial, sans-serif;
	font-size: 0.82rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: none;
}

/* Hide template slide menu */

#menu {
	display: none !important;
}

/* Utility blocks still safe */

.author,
.blurb,
.posts,
.mini-posts {
	margin-bottom: 1.5rem;
}

.author {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 1rem;
	border-bottom: 0;
	font-size: 0.8rem;
}

.author .name {
	margin: 0;
}

.author img {
	border-radius: 50%;
	display: block;
	width: 3.5rem;
}

/* Responsive */

@media screen and (max-width: 980px) {
	body {
		padding-top: 6.6rem;
	}

	#header {
		display: block;
		padding: 0.9rem 1rem 0.75rem 1rem;
	}

	#header h1 {
		margin-bottom: 0.6rem;
		text-align: center;
	}

	#header .links {
		display: block !important;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	#header .links::-webkit-scrollbar {
		display: none;
	}

	#header .links ul {
		flex-wrap: nowrap;
		min-width: max-content;
		padding-bottom: 0.2rem;
	}

	#header .links ul li a {
		font-size: 0.82rem;
		white-space: nowrap;
	}

	#header .main {
		justify-content: center;
		margin-top: 0.65rem;
	}

	.row > .col-1,
	.row > .col-2,
	.row > .col-3,
	.row > .col-4,
	.row > .col-5,
	.row > .col-6,
	.row > .col-7,
	.row > .col-8,
	.row > .col-9,
	.row > .col-10,
	.row > .col-11,
	.row > .col-12 {
		width: 100%;
	}
}

@media screen and (max-width: 736px) {
	body {
		padding-top: 7.2rem;
	}

	#wrapper {
		padding: 1.2rem 0.8rem 2rem 0.8rem;
	}

	#header h1 a {
		font-size: 1.25rem;
		letter-spacing: 0.1em;
	}

	#header .links ul li a {
		font-size: 0.76rem;
	}

	#intro {
		padding-top: 1rem;
	}

	#intro header h2 {
		font-size: 2rem;
	}

	.post {
		border-radius: 18px;
		padding: 1.35rem;
	}

	.post > header {
		margin-bottom: 1.2rem;
		padding-bottom: 0.85rem;
	}

	.post > footer {
		flex-direction: column;
		align-items: stretch;
	}
}

@media screen and (max-width: 480px) {
	body {
		padding-top: 7.45rem;
	}

	#header {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
	}

	#header h1 a {
		font-size: 1.1rem;
	}

	#header .links ul li a {
		font-size: 0.72rem;
	}

	#header .main ul.icons li a,
	#footer .icons li a {
		height: 2.5rem;
		width: 2.5rem;
	}

	#intro .logo img {
		width: min(150px, 46vw);
	}

	#intro header p {
		font-size: 0.94rem;
	}

	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		width: 100%;
	}
}
/* ---------------- MOBILE HAMBURGER MENU ---------------- */

.mobile-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.2);
	cursor: pointer;
}

.mobile-toggle span {
	display: block;
	width: 18px;
	height: 2px;
	background: #fff;
}

/* Mobile menu */

#mobile-nav {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: #07111d;
	z-index: 9999;
	padding: 10px 20px 20px 20px;
	border-top: 1px solid rgba(255,255,255,0.1);
}

#mobile-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#mobile-nav ul li a {
	display: block;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255,255,255,0.1);
	font-family: "Oswald", sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #fff;
}

#mobile-nav ul li:last-child a {
	border-bottom: none;
}

/* Show mobile menu when targeted */

#mobile-nav:target {
	display: block;
}

/* Responsive rules */

@media screen and (max-width: 980px) {

	#header .links {
		display: none;
	}

	#header .main {
		display: none;
	}

	.mobile-toggle {
		display: flex;
	}

}

@media screen and (max-width: 480px) {

	#mobile-nav ul li a {
		font-size: 14px;
	}

}
/* Make sidebar logo smaller without cropping */

.mini-post .image img {
    width: 60%;
    height: 250px;
    display: block;
    margin: 0 auto;
}