/*
Theme Name: Actually Useful Deals
Theme URI: https://www.actuallyusefuldeals.com/
Author: Actually Useful Deals
Description: A clean, fast deal publication theme for Actually Useful Deals.
Version: 0.1.1
Text Domain: aud-theme
*/

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: #f4f7f3;
	color: #17211b;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.55;
	margin: 0;
}

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

a {
	color: #1f5c9d;
}

.site-header {
	background: #ffffff;
	border-bottom: 1px solid #dce4dd;
	box-shadow: 0 1px 10px rgba(23, 33, 27, 0.05);
	position: sticky;
	top: 0;
	z-index: 100;
}

.site-header-inner,
.site-footer-inner,
.site-main {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 22px;
}

.site-header-inner {
	align-items: center;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	min-height: 74px;
}

.site-brand {
	color: #17211b;
	font-size: 1.24rem;
	font-weight: 950;
	letter-spacing: 0;
	text-decoration: none;
}

.site-brand span {
	color: #1f7a4d;
}

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

.site-nav a {
	border-radius: 7px;
	color: #223128;
	display: block;
	font-size: 0.95rem;
	font-weight: 750;
	padding: 10px 12px;
	text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus {
	background: #edf4ec;
	color: #145635;
}

.site-main {
	padding-bottom: 56px;
	padding-top: 32px;
}

.content-card {
	background: #ffffff;
	border: 1px solid #dce4dd;
	border-radius: 8px;
	padding: clamp(22px, 4vw, 42px);
}

.content-card + .content-card {
	margin-top: 22px;
}

.site-main h1,
.site-main h2,
.site-main h3 {
	letter-spacing: 0;
	line-height: 1.08;
}

.site-main h1 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	margin-top: 0;
}

.site-main h2 {
	font-size: clamp(1.45rem, 3vw, 2rem);
	margin-top: 34px;
}

.site-footer {
	background: #17211b;
	color: #dfe9e2;
	margin-top: 42px;
}

.site-footer-inner {
	display: grid;
	gap: 20px;
	grid-template-columns: 1.2fr 1fr;
	padding-bottom: 32px;
	padding-top: 32px;
}

.site-footer a {
	color: #ffffff;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.footer-disclosure {
	color: #b9c7be;
	font-size: 0.92rem;
	margin: 8px 0 0;
}

.post-list {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
	background: #ffffff;
	border: 1px solid #dce4dd;
	border-radius: 8px;
	padding: 18px;
}

.post-card h2 {
	font-size: 1.18rem;
	margin: 0 0 10px;
}

.post-card p {
	color: #68736d;
	font-size: 0.95rem;
	margin-bottom: 0;
}

.screen-reader-text {
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

@media (max-width: 780px) {
	.site-header-inner {
		align-items: flex-start;
		flex-direction: column;
		gap: 10px;
		padding-bottom: 14px;
		padding-top: 14px;
	}

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

	.site-footer-inner,
	.post-list {
		grid-template-columns: 1fr;
	}
}
