/*
Theme Name: Caitlyn for Colorado
Theme URI: https://caitlynforcolorado.com
Author: Caitlyn Sullivan Campaign
Author URI: https://caitlynforcolorado.com
Description: A clean, modern classic WordPress theme for Caitlyn Sullivan's campaign for Colorado House of Representatives District 27. Features a hero section, campaign messaging, social media integration, Substack feed sidebar, and full Customizer support.
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: caitlyn-for-colorado
Tags: one-column, two-columns, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

Caitlyn for Colorado WordPress Theme, Copyright 2024 Caitlyn Sullivan Campaign
This theme is distributed under the terms of the GNU GPL.
*/

/* ===========================
   CSS Variables
   =========================== */
:root {
	--primary-blue: #1e3a8a;
	--secondary-red: #dc2626;
	--accent-pink: #e11d48;
	--dark: #1e293b;
	--dark-bg: #0f172a;
	--light: #f8fafc;
	--light-bg: #f1f5f9;
	--white: #ffffff;
	--text: #334155;
	--text-light: #64748b;
	--text-dark: #1e293b;
	--gradient-1: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	--gradient-2: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	--shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ===========================
   Reset & Base
   =========================== */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	line-height: 1.7;
	color: var(--text);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
}

/* Standardize all fonts across the site */
* {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	color: var(--text-dark);
	font-weight: 700;
	line-height: 1.3;
}

p, a, span, div, li, td, th, input, textarea, select, button, label {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

p {
	color: var(--text);
	line-height: 1.7;
}

html {
	scroll-behavior: smooth;
}

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

a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: all 0.3s ease;
}

a:hover {
	color: var(--accent-pink);
}

/* ===========================
   Header
   =========================== */
.site-header {
	background: var(--dark-bg);
	color: var(--white);
	padding: 1rem 0;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--shadow-md);
}

.header-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo-area {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.logo-area .custom-logo-link {
	display: flex;
	align-items: center;
}

.logo-area .custom-logo {
	max-height: 50px;
	width: auto;
}

.site-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
	letter-spacing: -0.5px;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.site-title:hover {
	opacity: 0.85;
}

/* Navigation */
.main-nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
}

.main-nav .menu {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav .menu li a {
	color: var(--white);
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.3s ease;
	position: relative;
	padding-bottom: 4px;
}

.main-nav .menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--accent-pink);
	transition: width 0.3s ease;
}

.main-nav .menu li a:hover::after,
.main-nav .menu li.current-menu-item a::after {
	width: 100%;
}

.donate-btn {
	background: var(--gradient-2);
	color: var(--white) !important;
	padding: 0.875rem 2rem;
	text-decoration: none !important;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
	-webkit-text-fill-color: var(--white);
}

.donate-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
	color: var(--white) !important;
}

.volunteer-btn {
	background: var(--gradient-1);
	color: var(--white) !important;
	padding: 0.875rem 2rem;
	text-decoration: none !important;
	border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
	-webkit-text-fill-color: var(--white);
}

.volunteer-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
	color: var(--white) !important;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	background: url('assets/images/powerstance.jpg');
	background-size: cover;
	background-position: center top;
	color: var(--white);
	padding: 5rem 2rem;
    overflow: hidden;
}

/* Gradient overlay: strong on the left for readable text, fades to transparent on the right to show Caitlyn */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(
		to right,
		rgba(15, 23, 42, 0.92) 0%,
		rgba(15, 23, 42, 0.85) 35%,
		rgba(15, 23, 42, 0.5) 60%,
		rgba(15, 23, 42, 0.15) 80%,
		rgba(15, 23, 42, 0.05) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.hero-content {
	max-width: 600px;
	margin: 0;
	margin-right: auto;
	margin-left: 8%;
    position: relative;
	z-index: 2;
	animation: fadeInUp 1s ease-out;
	padding-bottom: 4rem;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero h1 {
	font-size: 4.5rem;
	font-weight: 800;
	line-height: 1.1;
	margin: 0 0 2rem 0;
	letter-spacing: -1px;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
	color: var(--white);
}

.hero p {
	font-size: 1.5rem;
	line-height: 1.8;
	margin: 0 0 3rem 0;
	opacity: 0.95;
	font-weight: 300;
	color: var(--white);
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.btn-primary {
	background: var(--gradient-1);
	color: var(--white);
	padding: 1.25rem 2.5rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
	letter-spacing: 0.5px;
	display: inline-block;
}

.btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
	color: var(--white);
}

.btn-donate {
	background: var(--gradient-2);
	color: var(--white);
	padding: 1.25rem 2.5rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(225, 29, 72, 0.4);
	letter-spacing: 0.5px;
	display: inline-block;
}

.btn-donate:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(225, 29, 72, 0.5);
	color: var(--white);
}

.btn-secondary {
	background: transparent;
	color: var(--white);
	padding: 1.25rem 2.5rem;
	text-decoration: none;
	border: 2px solid var(--white);
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--dark);
	transform: translateY(-3px);
}

/* ===========================
   About Section
   =========================== */
.about {
	padding: 5rem 2rem;
	background: var(--light-bg);
	position: relative;
}

.about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--gradient-1);
}

.about-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 4rem;
	align-items: center;
}

.about-image-wrapper {
	position: relative;
    border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transform: rotate(-2deg);
	transition: transform 0.3s ease;
}

.about-image-wrapper:hover {
	transform: rotate(0deg) scale(1.02);
}

.about-image {
	width: 100%;
    display: block;
	border-radius: 20px;
}

.about-image-placeholder {
    width: 100%;
	aspect-ratio: 3 / 4;
	background: var(--light);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	color: #94a3b8;
	font-size: 1rem;
	text-align: center;
	padding: 2rem;
}

.about-content h2 {
	font-size: 3rem;
	font-weight: 800;
	margin: 0 0 1.5rem 0;
	letter-spacing: -1px;
	color: var(--text-dark);
}

.about-content p {
	font-size: 1.125rem;
	line-height: 1.8;
	margin: 0 0 2rem 0;
	color: var(--text);
	font-weight: 400;
}

.about-btn {
	background: var(--gradient-1);
	color: var(--white);
	padding: 1rem 2.5rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-lg);
}

.about-btn:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-xl);
	color: var(--white);
}

/* ===========================
   Policy Positions
   =========================== */
.policies {
	padding: 5rem 2rem;
	background: var(--light-bg);
	position: relative;
}

.policies-container {
	max-width: 1400px;
	margin: 0 auto;
}

.policies h2 {
	text-align: center;
	font-size: 3.5rem;
	font-weight: 800;
	margin: 0 0 3rem 0;
	letter-spacing: -1.5px;
	color: var(--text-dark);
}

.policy-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.policy-card {
	background: var(--light-bg);
	border: none;
	border-radius: 20px;
	padding: 2rem;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	position: relative;
	overflow: hidden;
}

.policies-read-more {
	text-align: center;
	margin-top: 3rem;
}

.btn-read-more-issues {
	background: var(--gradient-1);
	color: var(--white);
	padding: 1.25rem 3rem;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1.125rem;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
	letter-spacing: 0.5px;
}

.btn-read-more-issues:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
	color: var(--white);
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
	background: var(--gradient-1);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.policy-card:hover {
    transform: translateY(-8px);
	box-shadow: var(--shadow-xl);
}

.policy-card:hover::before {
    transform: scaleY(1);
}

.policy-card h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 1rem 0;
	line-height: 1.3;
}

.policy-card p {
	color: var(--text);
	line-height: 1.8;
	font-size: 1.1rem;
	margin: 0;
	font-weight: 400;
}

/* ===========================
   Get Involved / Volunteer
   =========================== */
.get-involved {
	padding: 5rem 2rem;
	background: var(--dark-bg);
	color: var(--white);
	position: relative;
	overflow: hidden;
}

.get-involved::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.get-involved-container {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	align-items: start;
}

.get-involved-content h2 {
	font-size: 3.5rem;
	font-weight: 800;
	margin: 0 0 2rem 0;
	letter-spacing: -1px;
	background: linear-gradient(135deg, #60a5fa 0%, #93c5fd 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.get-involved-content p {
	font-size: 1.25rem;
	line-height: 2;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.get-involved-form {
	position: relative;
	z-index: 1;
	padding: 1rem;
}

.volunteer-form {
	display: flex;
        flex-direction: column;
	gap: 1rem;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 2px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.08);
	color: var(--white);
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s ease;
	outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #60a5fa;
	background: rgba(255, 255, 255, 0.12);
	box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.15);
}

.form-group textarea {
	resize: vertical;
	min-height: 80px;
}

.form-submit {
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 1.125rem;
	width: 100%;
	text-align: center;
	margin-top: 0.5rem;
}

.form-submit:hover {
	transform: translateY(-2px);
}

/* JotForm embed wrapper - simple styling, no branding hiding */
.jotform-wrapper {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem;
	margin: -1rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.jotform-wrapper iframe {
	width: 100% !important;
	border: none !important;
}

.donate-cta {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

.donate-cta p {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.95rem;
	margin: 0 0 1rem 0;
}

.donate-cta .donate-btn {
	display: inline-block;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
	background: var(--dark);
	padding: 4rem 3rem 2rem;
	color: var(--white);
}

.footer-container {
	max-width: 1400px;
	margin: 0 auto;
}

.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 3rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav .menu {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav .menu li a {
	color: var(--white);
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.footer-nav .menu li a:hover {
	color: var(--accent-pink);
}

.social-links {
	display: flex;
	gap: 1rem;
}

.social-links a {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.1);
	color: var(--white) !important;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.8rem;
	transition: all 0.3s ease;
}

.social-links a svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.social-links a:hover {
	background: var(--accent-pink);
	transform: translateY(-3px) scale(1.1);
	color: var(--white);
}

.footer-bottom {
	text-align: center;
	padding-top: 2rem;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
	margin: 0;
}

/* ===========================
   Issues Page
   =========================== */
.issues-page-header {
	padding: 5rem 2rem 3rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	color: var(--white);
	text-align: center;
}

.issues-header-container {
	max-width: 1000px;
	margin: 0 auto;
}

.issues-page-title {
	font-size: 4rem;
	font-weight: 800;
	margin: 0 0 1.5rem 0;
	color: var(--white);
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
	letter-spacing: -1px;
}

.issues-page-subtitle {
	font-size: 1.75rem;
	line-height: 1.6;
	margin: 0;
	color: var(--white);
	font-weight: 400;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.issues-page-subtitle br {
	display: block;
	margin: 0.5rem 0;
}

.issues-content {
	padding: 4rem 2rem;
	background: var(--light-bg);
}

.issues-tiles-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.issue-tile {
	background: var(--white);
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
	border-top: 4px solid #3b82f6;
	border: 1px solid rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.issue-tile:hover {
	box-shadow: var(--shadow-lg);
}

.issue-tile-header {
	width: 100%;
	background: none;
	border: none;
	padding: 2rem;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	transition: all 0.3s ease;
}

.issue-tile-header:hover {
	background: var(--light);
}

.issue-tile-header:disabled {
	cursor: default;
}

.issue-tile-header:disabled:hover {
	background: none;
}

.issue-tile-title {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	line-height: 1.3;
	flex: 1;
}

.issue-tile-icon {
	font-size: 2rem;
	font-weight: 300;
	color: #3b82f6;
	line-height: 1;
	transition: transform 0.3s ease;
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #3b82f6;
	border-radius: 50%;
	font-size: 1.25rem;
}

.issue-tile-header[aria-expanded="true"] .issue-tile-icon {
	transform: rotate(45deg);
}

.issue-tile-content {
	padding: 0 2rem 2rem;
}

.issue-tile-description {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text);
	margin: 0 0 1.5rem 0;
	font-weight: 400;
}

.issue-tile-sub-issues {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.issue-tile-sub-item {
	padding-top: 1rem;
	border-top: 1px solid var(--light);
}

.issue-tile-sub-item:first-child {
	border-top: none;
	padding-top: 0;
}

.issue-tile-sub-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}

.issue-tile-sub-content {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text);
	margin: 0;
	font-weight: 400;
}

/* Issues Page Responsive */
@media (max-width: 768px) {
	.issues-page-header {
		padding: 4rem 2rem 3rem;
	}

	.issues-page-title {
		font-size: 2.5rem;
	}

	.issues-page-subtitle {
		font-size: 1.25rem;
	}

	.issues-content {
		padding: 4rem 2rem;
	}

	.issues-tiles-container {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}

	.issue-tile {
		padding: 1.5rem;
	}

	.tent-pole-description {
		font-size: 1.1rem;
	}

	.sub-issue-item {
		padding: 1.5rem;
	}

	.sub-issue-title {
		font-size: 1.25rem;
	}

	.sub-issue-content {
		font-size: 1rem;
	}
}

/* ===========================
   Contact Page
   =========================== */
.contact-header {
	padding: 6rem 3rem 4rem;
	background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
	color: var(--white);
	text-align: center;
}

.contact-header-container {
	max-width: 800px;
	margin: 0 auto;
}

.contact-title {
	font-size: 3.5rem;
	font-weight: 800;
	margin: 0 0 1.5rem 0;
	color: var(--white);
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.contact-description {
	font-size: 1.25rem;
	line-height: 1.8;
	margin: 0;
	color: var(--white);
	font-weight: 300;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.contact-form-section {
	padding: 6rem 3rem;
	background: var(--light-bg);
}

.contact-form-container {
	max-width: 900px;
	margin: 0 auto;
}

.contact-form-wrapper {
	background: var(--white);
	border-radius: 16px;
	padding: 2rem;
	margin: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper iframe {
	width: 100% !important;
	border: none !important;
}

.contact-form-wrapper iframe {
	width: 100% !important;
	border: none !important;
	min-height: 600px;
	margin: 0 !important;
	padding: 0 !important;
}

.contact-form-wrapper script {
	display: block;
}

.contact-form-placeholder {
	background: #f8fafc;
	border-radius: 15px;
	padding: 3rem;
	text-align: center;
	color: #64748b;
}

.contact-form-placeholder p {
	margin: 0.5rem 0;
	font-size: 1.1rem;
}

.contact-additional-content {
	padding: 4rem 3rem;
	background: #f8fafc;
}

.contact-content-container {
	max-width: 900px;
	margin: 0 auto;
}

.contact-page-content {
	background: var(--white);
	border-radius: 15px;
	padding: 3rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-page-content h2,
.contact-page-content h3 {
	color: var(--dark);
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.contact-page-content h2:first-child,
.contact-page-content h3:first-child {
	margin-top: 0;
}

.contact-page-content p {
	line-height: 1.8;
	color: #1e293b;
	margin-bottom: 1.5rem;
}

.contact-page-content a {
	color: #1e3a8a;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s ease;
}

.contact-page-content a:hover {
	color: #3b82f6;
}

/* Contact Page Responsive */
@media (max-width: 768px) {
	.contact-header {
		padding: 4rem 2rem 3rem;
	}

	.contact-title {
		font-size: 2.5rem;
	}

	.contact-description {
		font-size: 1.1rem;
	}

	.contact-form-section {
		padding: 4rem 2rem;
	}

	.contact-form-wrapper {
		padding: 2rem 1.5rem;
	}

	.contact-form-wrapper iframe {
		min-height: 500px;
	}

	.contact-additional-content {
		padding: 3rem 2rem;
	}

	.contact-page-content {
		padding: 2rem 1.5rem;
	}
}

/* ===========================
   Blog / Posts
   =========================== */
.site-main {
	min-height: 60vh;
}

.content-container {
	max-width: 900px;
	margin: 0 auto;
	padding: 4rem 2rem;
}

.page-title,
.post-title {
	font-size: 3rem;
	font-weight: 800;
	letter-spacing: -1px;
	margin: 0 0 1.5rem 0;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: var(--primary-blue);
}

.post-meta {
	color: #64748b;
	font-size: 0.95rem;
	margin-bottom: 2rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.post-meta .meta-sep {
	color: #cbd5e1;
}

.page-content,
.post-content {
	font-size: 1.125rem;
	line-height: 1.9;
	color: var(--text);
}

.page-content h2,
.post-content h2 {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 2.5rem;
	color: var(--primary-blue);
}

.page-content h3,
.post-content h3 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-top: 2rem;
	color: var(--dark);
}

.page-content img,
.post-content img {
	border-radius: 12px;
	margin: 2rem 0;
}

.post-featured-image {
	margin-bottom: 2rem;
	border-radius: 12px;
	overflow: hidden;
}

.post-featured-image img {
	display: block;
	width: 100%;
	border-radius: 12px;
}

/* Posts List */
.posts-list {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.post-card {
	background: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: var(--shadow-md);
	transition: all 0.3s ease;
}

.post-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.post-card .post-thumbnail img {
	width: 100%;
	display: block;
}

.post-card-content {
	padding: 2rem;
}

.post-card-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 0 0.75rem 0;
}

.post-card-title a {
	color: var(--dark);
	text-decoration: none;
}

.post-card-title a:hover {
	color: var(--primary-blue);
}

.post-card .post-meta {
	margin-bottom: 1rem;
}

.post-excerpt p {
	margin: 0 0 1rem 0;
	color: var(--text);
}

.read-more-link {
	color: var(--primary-blue);
	font-weight: 600;
	font-size: 0.95rem;
}

.read-more-link:hover {
	color: var(--accent-pink);
}

/* Post Navigation */
.post-navigation {
	display: flex;
	justify-content: space-between;
	margin-top: 4rem;
	padding-top: 2rem;
	border-top: 1px solid var(--light);
}

.post-navigation a {
	color: var(--primary-blue);
	font-weight: 600;
}

/* Pagination */
.pagination {
	margin-top: 3rem;
}

.pagination .nav-links {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	border-radius: 8px;
	font-weight: 500;
	color: var(--text);
	background: var(--light);
	transition: all 0.3s ease;
}

.pagination .page-numbers.current {
	background: var(--primary-blue);
	color: var(--white);
}

.pagination .page-numbers:hover:not(.current) {
	background: var(--primary-blue);
	color: var(--white);
}

/* Extra page content section on front page */
.page-content-section {
	padding: 4rem 3rem;
	background: var(--white);
}

.page-content-container {
	max-width: 900px;
	margin: 0 auto;
}

/* 404 Page */
.error-404 {
	text-align: center;
	padding: 8rem 2rem;
}

.error-404 h1 {
	font-size: 3.5rem;
	font-weight: 800;
	background: var(--gradient-1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: var(--primary-blue);
	margin: 0 0 1.5rem 0;
}

.error-404 p {
	font-size: 1.25rem;
	color: var(--text);
}

/* ===========================
   WordPress Specific Styles
   =========================== */
.alignleft {
	float: left;
	margin-right: 1.5rem;
	margin-bottom: 1rem;
}

.alignright {
	float: right;
	margin-left: 1.5rem;
	margin-bottom: 1rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.875rem;
	color: #64748b;
	text-align: center;
	margin-top: 0.5rem;
}

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
	.about-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}

	.policy-grid {
		grid-template-columns: 1fr;
	}

	.about-image-wrapper {
		max-width: 400px;
		margin: 0 auto;
	}

	.get-involved-container {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}

	.hero {
		padding: 4rem 2rem;
		min-height: 70vh;
	}

	.hero::before {
		background: linear-gradient(
			to bottom,
			rgba(15, 23, 42, 0.85) 0%,
			rgba(15, 23, 42, 0.6) 50%,
			rgba(15, 23, 42, 0.3) 100%
		);
	}

	.hero-content {
		max-width: 100%;
		margin-left: 0;
		padding-bottom: 0;
	}

	.header-container {
		flex-direction: column;
		gap: 1rem;
		padding: 0 1.5rem;
	}

	.main-nav {
		flex-wrap: wrap;
		justify-content: center;
		gap: 1rem;
	}

	.main-nav .menu {
		gap: 1.5rem;
		flex-wrap: wrap;
		justify-content: center;
	}

	.about {
		padding: 4rem 2rem;
	}

	.about-content h2 {
		font-size: 2.5rem;
	}

	.policies {
		padding: 4rem 2rem;
	}

	.policies h2 {
		font-size: 2.5rem;
	}

	.policy-card {
		padding: 2rem;
	}

	.get-involved {
		padding: 4rem 2rem;
	}

	.get-involved-content h2 {
		font-size: 2.5rem;
	}

	.footer-top {
		flex-direction: column;
		gap: 2rem;
	}

	.page-title,
	.post-title {
		font-size: 2.25rem;
	}

	.content-container {
		padding: 3rem 1.5rem;
	}

	.hero-buttons {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 1rem;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 2.25rem;
	}

	.hero p {
		font-size: 1.125rem;
	}

	.btn-primary,
	.btn-secondary,
	.btn-donate {
		padding: 0.875rem 1.5rem;
		font-size: 0.95rem;
	}

	.btn-read-more-issues {
		padding: 1rem 2rem;
		font-size: 1rem;
	}

	.policies-read-more {
		margin-top: 3rem;
    }
}
