/*!
Theme Name: Monkey Starter Theme
Theme URI: https://monkey.pe/
Author: Monkey
Author URI: https://monkey.pe/
Description: WordPress Base Theme by Monkey.
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
Text Domain: mst
*/
:root {
	--mst-font-family: sans-serif;
	--mst-color-primary: #bf23d6;
	--mst-color-accent: #a91bba;
	--mst-color-heading: #4a034f;
	--mst-color-body: #444;
}

.site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: auto;
	padding: 24px 16px;
}

.site-header .site-navigation .menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 16px;
}

.site-header .site-navigation .menu .menu-item a {
	text-decoration: none;
}

.site-header .site-navigation .menu .menu-item a:hover {
	text-decoration: underline;
}

.site-header .site-navigation .menu .menu-item.current_page_item a {
	font-weight: bold;
}

.site-footer {
	padding: 64px 16px 24px;
	max-width: 1200px;
	margin: auto;
}

.site-footer [class*="navigation"]:not(:last-child) {
	margin-bottom: 24px;
}

.site-footer [class*="navigation"] .menu {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 16px;
}

.site-footer [class*="navigation"] .menu .menu-item a {
	text-decoration: none;
}

.site-footer [class*="navigation"] .menu .menu-item a:hover {
	text-decoration: underline;
}

.site-footer [class*="navigation"] .menu .menu-item.current_page_item a {
	font-weight: bold;
}

.site-footer .site-info {
	margin-top: 24px;
	text-align: center;
}

.page-title {
	max-width: 1200px;
	margin: auto;
	padding: 24px 16px;
}

body:not(.elementor-page) .the-content {
	max-width: 1200px;
	margin: auto;
	padding: 16px;
}

.list-posts {
	max-width: 1200px;
	margin: auto;
	padding: 16px;
}

@media (min-width: 768px) {
	.list-posts {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}
}

@media (max-width: 767px) {
	.list-posts {
		display: block;
	}
}

.list-posts .card-post .card-post-link {
	text-decoration: none;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.list-posts .card-post .card-post-link:hover {
	text-decoration: underline;
}

.list-posts .card-post .card-post-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 14px;
	list-style: none;
	padding: 16px 0;
}

.no-posts-found {
	max-width: 1200px;
	margin: auto;
	padding: 16px;
}

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

body {
	font-family: var(--mst-font-family);
	color: var(--mst-color-body);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--mst-color-heading);
}

a {
	color: var(--mst-color-accent);
}
