:root {
	/* ── Ocean Color Palette ── */
	--color-deep-ocean: #0a1628;
	--color-navy: #0d2137;
	--color-ocean: #1a5276;
	--color-teal: #148f77;
	--color-seafoam: #76d7c4;
	--color-shallow: #aed6f1;
	--color-foam: #eaf2f8;
	--color-white: #fafffe;
	--color-sand: #f5f0e8;
	--color-coral: #e74c3c;
	--color-kelp: #27ae60;

	/* Semantic aliases */
	--color-text: var(--color-deep-ocean);
	--color-text-muted: #4a6274;
	--color-text-light: #7f9baa;
	--color-bg: var(--color-white);
	--color-bg-alt: var(--color-foam);
	--color-bg-warm: var(--color-sand);
	--color-primary: var(--color-ocean);
	--color-primary-hover: var(--color-teal);
	--color-accent: var(--color-teal);
	--color-border: #d5e0e8;
	--color-border-light: #e8eff4;
	--color-success: var(--color-kelp);
	--color-danger: var(--color-coral);

	/* ── Typography ── */
	--font-body: 'Inter', system-ui, -apple-system, sans-serif;
	--font-heading: 'Source Serif 4', Georgia, 'Times New Roman', serif;
	--font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', monospace;

	/* Font sizes (modular scale ~1.25) */
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-md: 1.125rem;
	--text-lg: 1.25rem;
	--text-xl: 1.5rem;
	--text-2xl: 2rem;
	--text-3xl: 2.5rem;
	--text-4xl: 3rem;

	/* Line heights */
	--leading-tight: 1.2;
	--leading-snug: 1.35;
	--leading-normal: 1.6;
	--leading-relaxed: 1.75;

	/* Font weights */
	--weight-normal: 400;
	--weight-medium: 500;
	--weight-semibold: 600;
	--weight-bold: 700;

	/* ── Spacing (4px base) ── */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* ── Layout ── */
	--container-max: 72rem;
	--content-max: 48rem;
	--sidebar-width: 18rem;
	--header-height: 4rem;

	/* ── Borders ── */
	--radius-sm: 0.25rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-full: 9999px;

	/* ── Shadows ── */
	--shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.05);
	--shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08);
	--shadow-lg: 0 8px 24px rgba(10, 22, 40, 0.12);
	--shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.16);

	/* ── Transitions ── */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;

	/* ── Z-index scale ── */
	--z-dropdown: 1100;
	--z-sticky: 1200;
	--z-header: 1300;
	--z-overlay: 1400;
	--z-modal: 1500;
}
/*
 * Modern CSS reset.
 * Based on Josh Comeau's custom CSS reset.
 */

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

* {
	margin: 0;
}

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

body {
	line-height: var(--leading-normal);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

a {
	color: inherit;
	text-decoration-skip-ink: auto;
}

ul,
ol {
	list-style: none;
	padding: 0;
}

table {
	border-collapse: collapse;
}

/* Screen reader only */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

/* Container */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--space-4);
}

@media (min-width: 768px) {
	.container {
		padding-inline: var(--space-8);
	}
}
body {
	font-family: var(--font-body);
	font-size: var(--text-base);
	color: var(--color-text);
	background-color: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: var(--weight-bold);
	color: var(--color-deep-ocean);
}

h1 { font-size: var(--text-3xl); line-height: var(--leading-tight); }
h2 { font-size: var(--text-2xl); line-height: var(--leading-tight); }
h3 { font-size: var(--text-xl); line-height: var(--leading-snug); }
h4 { font-size: var(--text-lg); line-height: var(--leading-snug); }
h5 { font-size: var(--text-md); line-height: var(--leading-snug); }
h6 { font-size: var(--text-base); line-height: var(--leading-snug); }

@media (max-width: 767px) {
	h1 { font-size: var(--text-2xl); }
	h2 { font-size: var(--text-xl); }
	h3 { font-size: var(--text-lg); }
}

/* Prose content within the_content() */
.entry-content > * + * {
	margin-top: var(--space-6);
}

.entry-content p {
	line-height: var(--leading-relaxed);
}

.entry-content a {
	color: var(--color-primary);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
	transition: color var(--transition-fast);
}

.entry-content a:hover {
	color: var(--color-primary-hover);
}

.entry-content ul,
.entry-content ol {
	padding-left: var(--space-6);
}

.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }

.entry-content li + li {
	margin-top: var(--space-2);
}

.entry-content blockquote {
	border-left: 3px solid var(--color-teal);
	padding: var(--space-4) var(--space-6);
	background: var(--color-bg-alt);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-style: italic;
}

.entry-content code {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--color-bg-alt);
	padding: 0.15em 0.35em;
	border-radius: var(--radius-sm);
}

.entry-content pre {
	background: var(--color-navy);
	color: var(--color-foam);
	padding: var(--space-6);
	border-radius: var(--radius-md);
	overflow-x: auto;
}

.entry-content pre code {
	background: none;
	padding: 0;
	color: inherit;
}

.entry-content img {
	border-radius: var(--radius-md);
}

.entry-content figure {
	margin: var(--space-8) 0;
}

.entry-content figcaption {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	margin-top: var(--space-2);
	text-align: center;
}

/* Scientific names */
.scientific-name {
	font-style: italic;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: var(--space-3) var(--space-6);
	font-family: var(--font-body);
	font-size: var(--text-sm);
	font-weight: var(--weight-semibold);
	line-height: 1;
	text-decoration: none;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: all var(--transition-fast);
	white-space: nowrap;
}

.btn:focus-visible {
	outline: 2px solid var(--color-teal);
	outline-offset: 2px;
}

/* Primary */
.btn--primary {
	background: var(--color-ocean);
	color: var(--color-white);
	border-color: var(--color-ocean);
}

.btn--primary:hover {
	background: var(--color-teal);
	border-color: var(--color-teal);
}

/* Secondary / outline */
.btn--secondary {
	background: transparent;
	color: var(--color-ocean);
	border-color: var(--color-ocean);
}

.btn--secondary:hover {
	background: var(--color-ocean);
	color: var(--color-white);
}

/* Ghost */
.btn--ghost {
	background: transparent;
	color: var(--color-text);
	border-color: transparent;
}

.btn--ghost:hover {
	background: var(--color-bg-alt);
}

/* Sizes */
.btn--sm {
	padding: var(--space-2) var(--space-4);
	font-size: var(--text-xs);
}

.btn--lg {
	padding: var(--space-4) var(--space-8);
	font-size: var(--text-base);
}
.card {
	background: var(--color-white);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.card__image {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
}

.card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.card:hover .card__image img {
	transform: scale(1.03);
}

.card__body {
	padding: var(--space-5);
}

.card__date {
	display: block;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-2);
}

.card__title {
	font-family: var(--font-heading);
	font-size: var(--text-lg);
	font-weight: var(--weight-semibold);
	line-height: var(--leading-snug);
	margin-bottom: var(--space-2);
}

.card__title a {
	text-decoration: none;
	color: var(--color-text);
	transition: color var(--transition-fast);
}

.card__title a:hover {
	color: var(--color-primary);
}

.card__excerpt {
	font-size: var(--text-sm);
	color: var(--color-text-muted);
	line-height: var(--leading-normal);
}

/* Tags */
.card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2);
	margin-top: var(--space-3);
}

.tag {
	display: inline-block;
	padding: var(--space-1) var(--space-2);
	font-size: var(--text-xs);
	font-weight: var(--weight-medium);
	border-radius: var(--radius-full);
	background: var(--color-bg-alt);
	color: var(--color-text-muted);
}

.tag--region { background: #e0f0ff; color: var(--color-ocean); }
.tag--species { background: #e0f5ee; color: var(--color-teal); }
.tag--severity { background: #fde8e8; color: var(--color-coral); }

/* Severity badge */
.severity-badge {
	position: absolute;
	top: var(--space-3);
	right: var(--space-3);
	padding: var(--space-1) var(--space-3);
	font-size: var(--text-xs);
	font-weight: var(--weight-bold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	border-radius: var(--radius-full);
	color: var(--color-white);
}

.severity--low { background: var(--color-kelp); }
.severity--moderate { background: #f39c12; }
.severity--high { background: #e67e22; }
.severity--severe { background: var(--color-coral); }

/* Grid for cards */
.posts-grid,
.cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: var(--space-6);
}

@media (max-width: 480px) {
	.posts-grid,
	.cards-grid {
		grid-template-columns: 1fr;
	}
}
.form-group {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.form-group + .form-group {
	margin-top: var(--space-4);
}

.form-label {
	font-size: var(--text-sm);
	font-weight: var(--weight-medium);
	color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
	width: 100%;
	padding: var(--space-3) var(--space-4);
	font-size: var(--text-base);
	color: var(--color-text);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
	outline: none;
	border-color: var(--color-teal);
	box-shadow: 0 0 0 3px rgba(20, 143, 119, 0.15);
}

.form-select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a6274' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right var(--space-4) center;
	padding-right: var(--space-10);
}

.form-textarea {
	min-height: 8rem;
	resize: vertical;
}

.form-hint {
	font-size: var(--text-xs);
	color: var(--color-text-light);
}

/* Range slider */
.form-range {
	width: 100%;
	accent-color: var(--color-teal);
}

/* Checkbox / radio row */
.form-check {
	display: flex;
	align-items: center;
	gap: var(--space-2);
	font-size: var(--text-sm);
}

.form-check input {
	accent-color: var(--color-teal);
}
.site-nav {
	display: flex;
	align-items: center;
}

.site-nav__list {
	display: flex;
	gap: var(--space-1);
	align-items: center;
}

.site-nav__list li {
	position: relative;
}

.site-nav__list a {
	display: block;
	padding: var(--space-2) var(--space-3);
	font-size: var(--text-sm);
	font-weight: var(--weight-medium);
	color: var(--color-text);
	text-decoration: none;
	border-radius: var(--radius-md);
	transition: color var(--transition-fast), background-color var(--transition-fast);
}

.site-nav__list a:hover {
	color: var(--color-primary);
	background-color: var(--color-bg-alt);
}

/* Only highlight direct current page, not parent/ancestor */
.site-nav__list > .current-menu-item > a,
.site-nav__list > .current_page_item > a {
	color: var(--color-primary);
	background-color: var(--color-bg-alt);
}

/* Dropdown */
.site-nav__list .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 12rem;
	background: var(--color-white);
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	padding: var(--space-2);
	z-index: var(--z-dropdown);
	flex-direction: column;
}

.site-nav__list li:hover > .sub-menu {
	display: flex;
}

.site-nav__list .sub-menu a {
	font-size: var(--text-sm);
	padding: var(--space-2) var(--space-3);
	border-radius: var(--radius-sm);
}

/* Mobile toggle */
.site-nav__toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: var(--space-2);
}

.site-nav__toggle-icon {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 24px;
}

.site-nav__toggle-icon span {
	display: block;
	height: 2px;
	background: var(--color-text);
	border-radius: 1px;
	transition: transform var(--transition-base), opacity var(--transition-base);
}

/* Mobile */
@media (max-width: 767px) {
	.site-nav__toggle {
		display: flex;
	}

	.site-nav__list {
		display: none;
		position: absolute;
		top: var(--header-height);
		left: 0;
		right: 0;
		flex-direction: column;
		background: var(--color-white);
		border-bottom: 1px solid var(--color-border);
		box-shadow: var(--shadow-md);
		padding: var(--space-4);
		z-index: var(--z-header);
	}

	.site-nav__list.is-open {
		display: flex;
	}

	.site-nav__list a {
		padding: var(--space-3) var(--space-4);
	}

	.site-nav__list .sub-menu {
		position: static;
		box-shadow: none;
		border: none;
		padding-left: var(--space-4);
	}

	.site-nav__list li:hover > .sub-menu {
		display: none;
	}

	.site-nav__list li.submenu-open > .sub-menu {
		display: flex;
	}

	/* Hamburger → X animation */
	.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon span:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}

	.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon span:nth-child(2) {
		opacity: 0;
	}

	.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-icon span:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* ── Breadcrumbs ── */
.breadcrumbs {
	padding: var(--space-4) 0 0;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: var(--text-sm);
}

.breadcrumbs__item {
	display: flex;
	align-items: center;
}

.breadcrumbs__item + .breadcrumbs__item::before {
	content: '/';
	margin: 0 0.5em;
	color: var(--color-text-light);
	font-weight: var(--weight-normal);
}

.breadcrumbs__item a {
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.breadcrumbs__item a:hover {
	color: var(--color-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.breadcrumbs__item--current span {
	color: var(--color-text);
	font-weight: var(--weight-medium);
}

/* Breadcrumbs inside hero — white text */
.page-hero .breadcrumbs__item a,
.page-hero .breadcrumbs__item::before {
	color: rgba(255, 255, 255, 0.6);
}

.page-hero .breadcrumbs__item a:hover {
	color: #fff;
}

.page-hero .breadcrumbs__item--current span {
	color: #fff;
}
.hero {
	position: relative;
	padding: var(--space-20) 0;
	background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-ocean) 50%, var(--color-teal) 100%);
	color: var(--color-white);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,255,255,0.03)' d='M0,192L48,186.7C96,181,192,171,288,186.7C384,203,480,245,576,245.3C672,245,768,203,864,186.7C960,171,1056,181,1152,186.7C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom center;
	background-size: 100% auto;
	opacity: 0.5;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--space-4);
	text-align: center;
}

.hero__badge {
	display: inline-block;
	padding: var(--space-1) var(--space-4);
	font-size: var(--text-xs);
	font-weight: var(--weight-semibold);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: var(--radius-full);
	margin-bottom: var(--space-6);
}

.hero__title {
	font-family: var(--font-heading);
	font-size: var(--text-4xl);
	font-weight: var(--weight-bold);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-6);
	color: var(--color-white);
}

.hero__subtitle {
	font-size: var(--text-lg);
	line-height: var(--leading-normal);
	max-width: 38rem;
	margin-inline: auto;
	margin-bottom: var(--space-8);
	opacity: 0.9;
}

.hero__actions {
	display: flex;
	gap: var(--space-4);
	justify-content: center;
	flex-wrap: wrap;
}

.hero .btn--primary {
	background: var(--color-white);
	color: var(--color-ocean);
	border-color: var(--color-white);
}

.hero .btn--primary:hover {
	background: var(--color-foam);
}

.hero .btn--secondary {
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn--secondary:hover {
	background: rgba(255, 255, 255, 0.15);
	border-color: var(--color-white);
}

@media (max-width: 767px) {
	.hero {
		padding: var(--space-12) 0;
	}

	.hero__title {
		font-size: var(--text-2xl);
	}

	.hero__subtitle {
		font-size: var(--text-base);
	}
}
.data-table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--text-sm);
}

.data-table th,
.data-table td {
	padding: var(--space-3) var(--space-4);
	text-align: left;
	border-bottom: 1px solid var(--color-border-light);
}

.data-table thead th {
	font-weight: var(--weight-semibold);
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-muted);
	background: var(--color-bg-alt);
	border-bottom: 2px solid var(--color-border);
	cursor: pointer;
	user-select: none;
	white-space: nowrap;
}

.data-table thead th:hover {
	color: var(--color-primary);
}

.data-table thead th[data-sort-dir="asc"]::after {
	content: ' \2191';
}

.data-table thead th[data-sort-dir="desc"]::after {
	content: ' \2193';
}

.data-table tbody tr:hover {
	background: var(--color-bg-alt);
}

.data-table tbody tr:last-child td {
	border-bottom: none;
}

/* Rating bars */
.rating-bar {
	display: flex;
	gap: 2px;
	align-items: center;
}

.rating-bar__segment {
	width: 8px;
	height: 16px;
	border-radius: 2px;
	background: var(--color-border-light);
}

.rating-bar__segment.filled {
	background: var(--color-teal);
}

.rating-bar__segment.filled.warning {
	background: #f39c12;
}

.rating-bar__segment.filled.danger {
	background: var(--color-coral);
}

/* Responsive table wrapper */
.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border: 1px solid var(--color-border-light);
	border-radius: var(--radius-md);
}
.site-header {
	position: sticky;
	top: 0;
	z-index: var(--z-header);
	background: var(--color-white);
	border-bottom: 1px solid var(--color-border-light);
	height: var(--header-height);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

/* Branding */
.site-branding {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.site-branding__logo {
	display: flex;
	align-items: center;
	color: var(--color-deep-ocean);
	text-decoration: none;
}

.site-branding__logo svg {
	height: 32px;
	width: auto;
}

.site-branding__description {
	display: none;
	font-size: var(--text-xs);
	color: var(--color-text-muted);
}

@media (min-width: 1024px) {
	.site-branding__description {
		display: block;
	}
}

/* Compensate for sticky header */
body {
	padding-top: 0;
}
.site-footer {
	background: var(--color-navy);
	color: var(--color-shallow);
	padding: var(--space-12) 0 var(--space-8);
	margin-top: var(--space-16);
}

/* No gap between last colored section and footer on homepage */
.home .site-footer {
	margin-top: 0;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
}

@media (min-width: 768px) {
	.site-footer__inner {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

.site-footer__title {
	font-family: var(--font-heading);
	font-size: var(--text-xl);
	font-weight: var(--weight-bold);
	color: var(--color-white);
	margin-bottom: var(--space-2);
}

.site-footer__tagline {
	font-size: var(--text-sm);
	opacity: 0.7;
}

.site-footer__nav .site-footer__list {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
}

.site-footer__nav a {
	font-size: var(--text-sm);
	color: var(--color-shallow);
	text-decoration: none;
	transition: color var(--transition-fast);
}

.site-footer__nav a:hover {
	color: var(--color-white);
}

.site-footer__meta {
	font-size: var(--text-xs);
	opacity: 0.6;
}

@media (min-width: 768px) {
	.site-footer__meta {
		grid-column: 1 / -1;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: var(--space-6);
	}
}

/* Menu icons */
.menu-icon { display: inline-flex; align-items: center; margin-right: 0.35em; vertical-align: -0.15em; opacity: 0.7; }
.menu-icon svg { width: 1em; height: 1em; }
