/*
Theme Name: Prize Bond News
Theme URI: https://example.com
Author: Your Site
Description: Custom news-style theme built for Prize Bond results websites. Pairs with the "Prize Bond Manager" plugin.
Version: 1.0.0
Text Domain: prizebond-news
*/

/* ---------------- Reset & Base ---------------- */
* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
	background: #f4f6f5;
	color: #1a1a1a;
	line-height: 1.6;
}
a { color: #0b5d3b; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 0 16px;
}

/* ---------------- Top Bar ---------------- */
.pb-topbar {
	background: #08402a;
	color: #d9e6de;
	font-size: 13px;
	padding: 6px 0;
}
.pb-topbar .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.pb-auth-links a {
	color: #ffb703;
	font-weight: 600;
}
.pb-auth-links a:hover {
	text-decoration: underline;
}

/* ---------------- Header ---------------- */
.pb-header {
	background: #fff;
	border-bottom: 3px solid #0b5d3b;
	padding: 16px 0;
}
.pb-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}
.pb-logo {
	font-size: 26px;
	font-weight: 800;
	color: #0b5d3b;
}
.pb-logo span { color: #ffb703; }

/* ---------------- Nav ---------------- */
.pb-nav {
	background: #0b5d3b;
}
.pb-nav ul {
	display: flex;
	flex-wrap: wrap;
}
.pb-nav a {
	display: block;
	color: #fff;
	padding: 12px 18px;
	font-weight: 600;
	font-size: 14px;
}
.pb-nav a:hover {
	background: #0f7a4d;
	text-decoration: none;
}

/* ---------------- Hero / Search ---------------- */
.pb-hero {
	background: linear-gradient(135deg, #0b5d3b, #0f7a4d);
	padding: 40px 0;
	text-align: center;
	color: #fff;
}
.pb-hero h1 {
	margin: 0 0 8px;
	font-size: 28px;
}
.pb-hero p {
	margin: 0 0 20px;
	color: #d9e6de;
}

/* ---------------- Sections ---------------- */
.pb-section {
	padding: 40px 0;
}
.pb-section h2 {
	font-size: 22px;
	color: #0b5d3b;
	border-bottom: 2px solid #ffb703;
	display: inline-block;
	padding-bottom: 6px;
	margin-bottom: 24px;
}

.pb-two-col {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
}
@media (max-width: 800px) {
	.pb-two-col { grid-template-columns: 1fr; }
}

.pb-card {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	margin-bottom: 20px;
}

/* ---------------- Footer ---------------- */
.pb-footer {
	background: #08402a;
	color: #d9e6de;
	padding: 30px 0;
	margin-top: 40px;
	font-size: 14px;
}
.pb-footer .container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
}
.pb-footer a { color: #ffb703; }

/* ---------------- Content page ---------------- */
.pb-content-wrap {
	background: #fff;
	border-radius: 10px;
	padding: 24px;
}

/* ---------------- Mobile nav toggle (simple) ---------------- */
.pb-nav-toggle { display: none; }
@media (max-width: 700px) {
	.pb-nav ul { flex-direction: column; }
}
