body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: #111;
	background: #fff;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	display: block;
}

h1,
h2,
h3 {
	letter-spacing: -0.02em;
}

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

.site-header {
	border-bottom: 1px solid #ddd;
	padding: 24px 0;
	background: #fff;
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

.site-logo {
	font-size: 32px;
	font-weight: 900;
	letter-spacing: -0.04em;
}

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

.site-nav a {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.site-main {
	padding: 32px 0 48px;
}

/* PMAG common */

.pmag-section {
	margin: 64px 0;
}

.pmag-section-title {
	font-size: 28px;
	font-weight: 900;
	border-bottom: 2px solid #111;
	padding-bottom: 10px;
	margin: 0 0 28px;
}

.pmag-category {
	display: inline-block;
	margin-bottom: 8px;
	color: #c40000;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* Hero */

.pmag-hero {
	margin: 48px 0;
}

.pmag-hero a {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 40px;
	align-items: center;
}

.pmag-hero-image img {
	width: 100%;
	height: 420px !important;
	object-fit: cover;
	display: block;
}

.pmag-hero-content {
	max-width: 520px;
}

.pmag-hero h1 {
	font-size: clamp(40px, 4vw, 58px);
	line-height: 1.02;
	font-weight: 900;
	margin: 12px 0;
}

.pmag-hero p {
	font-size: 18px;
	line-height: 1.5;
	color: #555;
	margin: 0;
}

/* Featured row */

.pmag-featured-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
	margin: 48px 0;
}

/* Grid */

.pmag-grid {
	display: grid;
	gap: 28px;
}

.pmag-grid-2 {
	grid-template-columns: repeat(2, 1fr);
}

.pmag-grid-3 {
	grid-template-columns: repeat(3, 1fr);
}

.pmag-grid-4 {
	grid-template-columns: repeat(4, 1fr);
}

/* Cards */

.pmag-card {
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
}

.pmag-card-image {
	margin-bottom: 14px;
	background: #f2f2f2;
}

.pmag-card-image img {
	width: 100%;
	height: 180px !important;
	object-fit: cover;
	display: block;
}

.pmag-card h3 {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.18;
	margin: 8px 0;
}

.pmag-card p {
	color: #555;
	font-size: 15px;
	line-height: 1.45;
	margin: 0;
}

.pmag-featured-card h3 {
	font-size: 18px;
}

/* Category lead + list */

.pmag-lead-list {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 32px;
}

.pmag-lead-card h3 {
	font-size: 34px;
}

.pmag-lead-card .pmag-card-image img {
	height: 320px !important;
}

.pmag-list-card {
	padding: 0 0 16px;
}

.pmag-list-card .pmag-card-image {
	display: none;
}

.pmag-list-card h3 {
	font-size: 18px;
}

/* Ticker */

.pmag-ticker {
	display: flex;
	gap: 20px;
	align-items: center;
	border-top: 1px solid #111;
	border-bottom: 1px solid #111;
	padding: 12px 0;
	margin: 32px 0;
}

.pmag-ticker strong {
	color: #c40000;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 900;
}

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

.pmag-ticker a {
	font-weight: 700;
}

/* Newsletter */

.pmag-newsletter {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	background: #111;
	color: #fff;
	padding: 32px;
	margin: 64px 0;
}

.pmag-newsletter h2 {
	margin: 0 0 8px;
	font-size: 30px;
	font-weight: 900;
}

.pmag-newsletter p {
	margin: 0;
	color: #ddd;
}

.pmag-button {
	display: inline-block;
	background: #fff;
	color: #111;
	padding: 12px 18px;
	font-weight: 800;
}

/* Single article */

.single-article {
	max-width: 760px;
	margin: 0 auto;
}

.single-article h1 {
	font-size: 48px;
	line-height: 1.05;
}

.article-meta {
	color: #666;
	margin-bottom: 24px;
}

.article-content {
	font-size: 19px;
	line-height: 1.7;
}

/* Footer */

.site-footer {
	margin-top: 60px;
	padding: 32px 0;
	border-top: 1px solid #ddd;
	color: #666;
}

/* Responsive */

@media (max-width: 900px) {
	.pmag-hero a,
	.pmag-lead-list {
		grid-template-columns: 1fr;
	}

	.pmag-featured-row,
	.pmag-grid-3,
	.pmag-grid-4 {
		grid-template-columns: repeat(2, 1fr);
	}

	.pmag-hero-image img {
		height: 340px !important;
	}
}

@media (max-width: 600px) {
	.site-header .container {
		display: block;
	}

	.site-nav ul {
		margin-top: 20px;
		flex-wrap: wrap;
	}

	.pmag-featured-row,
	.pmag-grid,
	.pmag-grid-2,
	.pmag-grid-3,
	.pmag-grid-4 {
		grid-template-columns: 1fr;
	}

	.pmag-hero h1,
	.single-article h1 {
		font-size: 34px;
	}

	.pmag-hero-image img,
	.pmag-card-image img,
	.pmag-lead-card .pmag-card-image img {
		height: auto !important;
	}

	.pmag-ticker,
	.pmag-newsletter {
		display: block;
	}

	.pmag-newsletter .pmag-button {
		margin-top: 20px;
	}
}