/*
Theme Name: Neve ARH Child
Template: neve
Version: 1.0.0
License: GPL v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: neve-arh
*/

:root {
	--arh-primary: #2f5aae;
	--arh-secondary: #1e3a5f;
	--arh-accent: #d4af37;
	--arh-text: #272626;
	--arh-text-light: #575760;
	--arh-bg: #ffffff;
	--arh-bg-light: #f4f5f7;
	--arh-border: #e5e7eb;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	background-color: var(--arh-bg-light);
	color: var(--arh-text);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
}

a {
	color: var(--arh-primary);
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: var(--arh-accent);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--arh-secondary);
	font-weight: 700;
}

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1;
	padding: 40px 0;
}

.content-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 30px;
}

.main-content {
	grid-column: 1;
}

.sidebar {
	grid-column: 2;
}

@media (max-width: 968px) {
	.content-wrapper {
		grid-template-columns: 1fr;
	}

	.sidebar {
		grid-column: 1;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.sidebar {
		grid-template-columns: 1fr;
	}
}
