/*
Theme Name: MarketplacePress Theme
Theme URI: https://example.com/marketplacepress
Author: MarketplacePress
Author URI: https://example.com
Description: Lightweight presentation theme for MarketplacePress-powered marketplaces.
Version: 1.1.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: marketplacepress-theme
*/

body {
	margin: 0;
	color: #18212f;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
	background: #f4f6f8;
}

a {
	color: #0f6b5f;
}

* {
	box-sizing: border-box;
}

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

.site-header,
.site-footer {
	background: #ffffff;
	border-bottom: 1px solid #e4e7eb;
}

.site-footer {
	border-top: 1px solid #e4e7eb;
	border-bottom: 0;
}

.site-header__inner,
.site-footer__inner,
.site-main {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	padding: 16px 0;
	min-width: 0;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	color: #142033;
	font-size: 20px;
	font-weight: 800;
	text-decoration: none;
}

.site-branding__mark {
	display: inline-grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 10px;
	background: #0f6b5f;
	color: #fff;
	font-size: 17px;
	font-weight: 900;
}

.site-main {
	padding: 40px 0;
}

.site-nav,
.site-actions {
	min-width: 0;
}

.site-nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	color: #334155;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
	color: #0f6b5f;
}

.site-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	justify-content: flex-end;
}

.site-actions__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 9px 14px;
	border: 1px solid #d0d7de;
	border-radius: 8px;
	background: #fff;
	color: #1f2937;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.site-actions__link--primary {
	border-color: #0f6b5f;
	background: #0f6b5f;
	color: #fff;
}

.site-actions__link:hover,
.site-actions__link:focus {
	border-color: #0f6b5f;
	color: #0f6b5f;
	text-decoration: none;
}

.site-actions__link--primary:hover,
.site-actions__link--primary:focus {
	color: #fff;
	background: #0b554c;
}

.site-footer {
	margin-top: 48px;
	color: #64748b;
}

.site-footer p {
	margin: 0;
}

@media (max-width: 720px) {
	.site-header__inner,
	.site-footer__inner {
		align-items: stretch;
		flex-direction: column;
		width: min(1180px, calc(100% - 24px));
	}

	.site-nav ul,
	.site-actions {
		justify-content: flex-start;
	}

	.site-actions__link {
		flex: 1 1 140px;
		padding-right: 10px;
		padding-left: 10px;
		white-space: normal;
	}
}
