/* ==========================================================================
   Athletic Consultants Directory Theme — Main Styles
   ========================================================================== */

/* ---------- Reset & Base ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1f2937;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: #152552;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.3;
	color: #0e1b3d;
}

/* ---------- Header ---------- */

.site-header {
	background: #152552;
	color: #ffffff;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Offset sticky header when WP admin bar is present */
.admin-bar .site-header {
	top: 32px;
}

@media screen and (max-width: 782px) {
	.admin-bar .site-header {
		top: 46px;
	}
}

.site-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 90px;
}

.site-branding a,
.site-title-link {
	color: #ffffff;
	text-decoration: none;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.site-branding img {
	max-height: 70px;
	width: auto;
}

/* ---------- Navigation ---------- */

.site-nav {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

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

.nav-menu li a {
	display: block;
	padding: 0.5rem 1rem;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	border-radius: 6px;
	transition: all 0.2s;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
	display: flex;
	gap: 0.5rem;
	margin-left: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	flex-direction: column;
	gap: 5px;
}

.hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: #ffffff;
	border-radius: 2px;
	transition: all 0.3s;
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 90px;
		left: 0;
		right: 0;
		background: #152552;
		flex-direction: column;
		padding: 1rem;
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
	}

	.site-nav.is-open {
		display: flex;
	}

	.nav-menu {
		flex-direction: column;
		width: 100%;
	}

	.nav-menu li a {
		padding: 0.75rem 1rem;
	}

	.nav-cta {
		margin-left: 0;
		width: 100%;
		flex-direction: column;
	}

	.nav-cta .btn {
		text-align: center;
	}
}

/* ---------- Buttons ---------- */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.5rem;
	font-size: 0.9rem;
	font-weight: 600;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	line-height: 1.4;
}

.btn-primary {
	background: #c6a44e;
	color: #0e1b3d;
}

.btn-primary:hover {
	background: #d4b565;
}

.btn-secondary {
	background: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.25);
}

.btn-ghost {
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.btn-sm {
	padding: 0.4rem 1rem;
	font-size: 0.85rem;
}

.btn-lg {
	padding: 0.85rem 2rem;
	font-size: 1rem;
}

/* ---------- Content Wrapper ---------- */

.content-wrapper {
	max-width: 1024px;
	margin: 0 auto;
	padding: 3rem 1.5rem;
}

.content-wrapper-narrow {
	max-width: 600px;
}

/* ---------- Hero ---------- */

.hero {
	background: linear-gradient(135deg, #0e1b3d 0%, #152552 50%, #1e3a6e 100%);
	color: #ffffff;
	padding: 5rem 1.5rem;
	text-align: center;
}

.hero-inner {
	max-width: 800px;
	margin: 0 auto;
}

.hero-title {
	font-size: 2.75rem;
	font-weight: 700;
	margin: 0 0 1rem;
	color: #ffffff;
	letter-spacing: -0.02em;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.8);
	margin: 0 0 2rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.hero-search {
	margin-bottom: 1.5rem;
}

.hero-search-form {
	display: flex;
	max-width: 550px;
	margin: 0 auto;
	gap: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.hero-search-input {
	flex: 1;
	padding: 0.85rem 1.25rem;
	font-size: 1rem;
	border: none;
	outline: none;
	font-family: inherit;
}

.hero-search-form .btn {
	border-radius: 0;
	white-space: nowrap;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

@media (max-width: 600px) {
	.hero {
		padding: 3rem 1rem;
	}

	.hero-title {
		font-size: 1.75rem;
	}

	.hero-subtitle {
		font-size: 1rem;
	}

	.hero-search-form {
		flex-direction: column;
		border-radius: 10px;
	}

	.hero-search-form .btn {
		border-radius: 0 0 10px 10px;
	}
}

/* ---------- Home Sections ---------- */

.home-section {
	padding: 4rem 1.5rem;
}

.home-section-alt {
	background: #f9fafb;
}

.section-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 1.75rem;
	margin: 0 0 2rem;
	color: #152552;
}

.section-cta {
	text-align: center;
	margin-top: 2rem;
}

.section-cta .btn-primary {
	color: #ffffff;
	background: #152552;
}

.section-cta .btn-primary:hover {
	background: #1e3a6e;
}

/* ---------- Features Grid ---------- */

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.feature-card {
	text-align: center;
	padding: 2rem 1.5rem;
	background: #ffffff;
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-icon {
	color: #152552;
	margin-bottom: 1rem;
}

.feature-card h3 {
	font-size: 1.1rem;
	margin: 0 0 0.5rem;
}

.feature-card p {
	color: #6b7280;
	font-size: 0.95rem;
	margin: 0;
}

/* ---------- Page Content ---------- */

.page-content,
.single-content {
	line-height: 1.8;
}

.page-content h1,
.single-content h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

/* ---------- Content Card ---------- */

.content-card {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid #e5e7eb;
}

.content-card h2 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.content-card h2 a {
	text-decoration: none;
}

.content-card h2 a:hover {
	text-decoration: underline;
}

.entry-excerpt {
	color: #6b7280;
}

/* ---------- Login Page ---------- */

.login-page {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
}

.login-page h1 {
	margin-bottom: 2rem;
}

.login-page form {
	text-align: left;
}

.login-page label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.login-page input[type="text"],
.login-page input[type="password"] {
	width: 100%;
	padding: 0.6rem 0.75rem;
	font-size: 1rem;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-family: inherit;
}

.login-page input[type="submit"] {
	width: 100%;
	padding: 0.75rem;
	background: #152552;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

.login-page input[type="submit"]:hover {
	background: #1e3a6e;
}

/* ---------- Footer ---------- */

.site-footer {
	background: #0e1b3d;
	color: rgba(255, 255, 255, 0.7);
	padding: 4rem 1.5rem 2rem;
}

.site-footer-inner {
	max-width: 1280px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 3rem;
	margin-bottom: 3rem;
}

.footer-col-brand {
	padding-right: 1rem;
}

.footer-logo-wrap {
	margin-bottom: 1rem;
}

.footer-logo-wrap a {
	display: inline-block;
}

.footer-logo-wrap img {
	max-height: 60px;
	width: auto;
}

.footer-logo {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	display: block;
	margin-bottom: 0.75rem;
}

.footer-tagline {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.55);
}

.footer-col-title {
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: #c6a44e;
	margin: 0 0 1rem;
}

.footer-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links li {
	margin-bottom: 0.6rem;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 0.9rem;
	transition: color 0.2s;
}

.footer-links a:hover {
	color: #ffffff;
}

.footer-contact li {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.footer-contact svg {
	flex-shrink: 0;
	color: #c6a44e;
}

.footer-bottom {
	padding-top: 1.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
	margin: 0;
	font-size: 0.85rem;
}

@media (max-width: 900px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.footer-col-brand {
		grid-column: 1 / -1;
		padding-right: 0;
	}
}

@media (max-width: 500px) {
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
	}
}

/* ---------- WordPress Core ---------- */

.wp-block-image img {
	border-radius: 8px;
}

.alignwide {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}

.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
}

/* ---------- Wide Content Wrapper ---------- */

.content-wrapper-wide {
	max-width: 1100px;
}

/* ---------- About Page ---------- */

.about-content {
	line-height: 1.8;
}

.about-content h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #152552;
}

.about-content h2 {
	font-size: 1.5rem;
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	color: #152552;
	border-bottom: 2px solid #c6a44e;
	padding-bottom: 0.5rem;
}

.about-content h3 {
	font-size: 1.2rem;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	color: #152552;
}

.about-content p {
	margin-bottom: 1.25rem;
	color: #374151;
}

.about-content ul,
.about-content ol {
	margin-bottom: 1.25rem;
	padding-left: 1.5rem;
}

.about-content li {
	margin-bottom: 0.5rem;
}

.about-content img {
	border-radius: 8px;
	margin: 1.5rem 0;
}

.about-content blockquote {
	border-left: 4px solid #c6a44e;
	margin: 1.5rem 0;
	padding: 1rem 1.5rem;
	background: #f9fafb;
	border-radius: 0 8px 8px 0;
	color: #374151;
	font-style: italic;
}

/* ---------- About Page Sections (ap- prefix) ---------- */

/* Hero bar */
.ap-hero {
	background: linear-gradient(135deg, #0e1b3d 0%, #152552 50%, #1e3a6e 100%);
	color: #ffffff;
	padding: 3rem 1.5rem;
	text-align: center;
}

.ap-hero-inner {
	max-width: 800px;
	margin: 0 auto;
}

.ap-hero-title {
	font-size: 2.25rem;
	font-weight: 700;
	margin: 0;
	color: #ffffff;
	letter-spacing: -0.02em;
}

/* Sections */
.ap-section {
	padding: 4.5rem 1.5rem;
}

.ap-section-alt {
	background: #f8f9fb;
}

.ap-section-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.ap-section-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 800;
	color: #152552;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.ap-section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #6b7280;
	margin: 0 0 2.5rem;
}

/* Expertise cards */
.ap-cards-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
}

.ap-expertise-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 2rem 1.75rem;
	text-align: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s, box-shadow 0.2s;
	position: relative;
	overflow: hidden;
}

.ap-expertise-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: #c6a44e;
}

.ap-expertise-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.ap-expertise-badge {
	display: inline-block;
	background: #f0e9d8;
	color: #8b6f2a;
	padding: 0.2rem 0.85rem;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.ap-expertise-expert .ap-expertise-badge {
	background: #c6a44e;
	color: #0e1b3d;
}

.ap-expertise-icon {
	color: #c6a44e;
	margin-bottom: 1rem;
}

.ap-expertise-card h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #152552;
	margin: 0 0 0.75rem;
}

.ap-expertise-card p {
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

/* Member Benefits tiers */
.ap-benefits-stack {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ap-benefit-tier {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.75rem 2rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	border-left: 4px solid #d1d5db;
}

.ap-benefit-all {
	border-left-color: #152552;
}

.ap-benefit-core-tier {
	border-left-color: #c6a44e;
}

.ap-benefit-expert-tier {
	border-left-color: #c6a44e;
	background: linear-gradient(135deg, #fdfbf5 0%, #ffffff 100%);
}

.ap-benefit-header {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.ap-benefit-icon {
	flex-shrink: 0;
	color: #c6a44e;
}

.ap-benefit-all .ap-benefit-icon {
	color: #152552;
}

.ap-benefit-header h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #152552;
	margin: 0;
}

.ap-benefit-tier ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 0.5rem 1.5rem;
}

.ap-benefit-tier li {
	font-size: 0.95rem;
	color: #4b5563;
	padding-left: 1.5rem;
	position: relative;
	line-height: 1.5;
}

.ap-benefit-tier li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.5rem;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #c6a44e;
}

.ap-benefit-all li::before {
	background: #152552;
}

/* Feature blocks (Conference, Town Hall) */
.ap-feature-block {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.ap-feature-icon-wrap {
	color: #c6a44e;
	margin-bottom: 1rem;
}

.ap-feature-text {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #374151;
	max-width: 650px;
	margin: 0 auto 1rem;
}

/* Executive Board section */
.ap-board {
	background: #152552;
	color: #ffffff;
	padding: 4.5rem 1.5rem;
}

.ap-section-title-light {
	color: #ffffff;
}

.ap-feature-icon-light {
	color: #c6a44e;
}

.ap-feature-text-light {
	color: rgba(255, 255, 255, 0.85);
}

.ap-feature-block-light {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

/* Editor content at bottom */
.ap-editor-content {
	border-top: 1px solid #e5e7eb;
}

/* Responsive */
@media (max-width: 768px) {
	.ap-hero {
		padding: 2rem 1rem;
	}

	.ap-hero-title {
		font-size: 1.65rem;
	}

	.ap-section {
		padding: 3rem 1rem;
	}

	.ap-section-title {
		font-size: 1.5rem;
	}

	.ap-benefit-tier ul {
		grid-template-columns: 1fr;
	}

	.ap-benefit-tier {
		padding: 1.25rem 1.25rem;
	}

	.ap-board {
		padding: 3rem 1rem;
	}
}

/* ---------- Contact Page ---------- */

.contact-content {
	line-height: 1.8;
}

.contact-content h1 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: #152552;
}

.contact-content h2 {
	font-size: 1.5rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
	color: #152552;
}

.contact-content h3 {
	font-size: 1.2rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
	color: #152552;
}

.contact-content p {
	margin-bottom: 1.25rem;
	color: #374151;
}

.contact-content a {
	color: #152552;
	text-decoration: underline;
	text-decoration-color: #c6a44e;
	text-underline-offset: 3px;
}

.contact-content a:hover {
	color: #c6a44e;
}

/* ---------- Homepage Sections ---------- */

.hp-section {
	padding: 4.5rem 1.5rem;
}

.hp-section-alt {
	background: #f8f9fb;
}

.hp-section-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.hp-section-title {
	text-align: center;
	font-size: 2rem;
	font-weight: 800;
	color: #152552;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.hp-section-subtitle {
	text-align: center;
	font-size: 1.1rem;
	color: #6b7280;
	margin: 0 0 2.5rem;
}

/* Mission */
.hp-mission {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.hp-mission-icon {
	color: #c6a44e;
	margin-bottom: 1rem;
}

.hp-mission-text {
	font-size: 1.15rem;
	line-height: 1.8;
	color: #374151;
	margin: 0;
}

/* Who Can Join cards */
.hp-cards-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.hp-card {
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 2rem 1.75rem;
	text-align: center;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s, box-shadow 0.2s;
}

.hp-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hp-card-icon {
	color: #c6a44e;
	margin-bottom: 1rem;
}

.hp-card h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #152552;
	margin: 0 0 0.75rem;
}

.hp-card p {
	font-size: 0.95rem;
	color: #6b7280;
	line-height: 1.6;
	margin: 0;
}

.hp-section-cta {
	text-align: center;
	margin-top: 0.5rem;
}

/* Non-negotiable pledges */
.hp-pledges {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.hp-pledge {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	border-radius: 12px;
	padding: 1.5rem 1.75rem;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.hp-pledge-number {
	flex-shrink: 0;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #c6a44e;
	color: #0e1b3d;
	font-size: 1.25rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hp-pledge-content h3 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #152552;
	margin: 0 0 0.35rem;
}

.hp-pledge-content p {
	font-size: 0.95rem;
	color: #4b5563;
	line-height: 1.6;
	margin: 0;
}

/* Events (editor content) */
.hp-events {
	line-height: 1.8;
}

.hp-events h2 {
	text-align: center;
	font-size: 2rem;
	font-weight: 800;
	color: #152552;
	margin: 0 0 1.5rem;
}

.hp-events h3 {
	font-size: 1.15rem;
	color: #152552;
	margin: 1.5rem 0 0.5rem;
}

.hp-events p {
	color: #374151;
	margin: 0 0 1rem;
}

.hp-events ul, .hp-events ol {
	padding-left: 1.5rem;
	margin-bottom: 1.25rem;
}

.hp-events li {
	margin-bottom: 0.5rem;
}

/* Conference */
.hp-conference {
	background: #152552;
	color: #ffffff;
	padding: 5rem 1.5rem;
	text-align: center;
}

.hp-conference-badge {
	display: inline-block;
	background: #c6a44e;
	color: #0e1b3d;
	padding: 0.35rem 1.25rem;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 1.25rem;
}

.hp-conference-title {
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin: 0 0 0.5rem;
	letter-spacing: -0.02em;
}

.hp-conference-date {
	font-size: 1.5rem;
	font-weight: 700;
	color: #c6a44e;
	margin-bottom: 1.5rem;
}

.hp-conference-desc {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.7;
	max-width: 700px;
	margin: 0 auto 1rem;
}

.hp-conference-note {
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 1.5rem auto 0;
	max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
	.hp-section {
		padding: 3rem 1rem;
	}

	.hp-section-title {
		font-size: 1.5rem;
	}

	.hp-pledge {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.hp-conference {
		padding: 3.5rem 1rem;
	}

	.hp-conference-title {
		font-size: 1.5rem;
	}

	.hp-conference-date {
		font-size: 1.2rem;
	}
}

/* ---------- WordPress Block Styles (within templates) ---------- */

.about-content .wp-block-columns,
.contact-content .wp-block-columns {
	gap: 2rem;
}

.about-content .wp-block-column,
.contact-content .wp-block-column {
	flex-basis: 0;
	flex-grow: 1;
}

.about-content .wp-block-separator,
.contact-content .wp-block-separator {
	border-color: #e5e7eb;
	margin: 2rem 0;
}

.about-content .wp-block-button .wp-block-button__link,
.contact-content .wp-block-button .wp-block-button__link {
	background: #152552;
	color: #ffffff;
	border-radius: 8px;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s;
}

.about-content .wp-block-button .wp-block-button__link:hover,
.contact-content .wp-block-button .wp-block-button__link:hover {
	background: #1e3a6e;
}

.about-content .wp-block-button.is-style-outline .wp-block-button__link,
.contact-content .wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: #152552;
	border: 2px solid #152552;
}

.about-content .wp-block-button.is-style-outline .wp-block-button__link:hover,
.contact-content .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: #152552;
	color: #ffffff;
}

.about-content .wp-block-table table,
.contact-content .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.about-content .wp-block-table th,
.contact-content .wp-block-table th {
	background: #152552;
	color: #ffffff;
	padding: 0.75rem 1rem;
	text-align: left;
	font-weight: 600;
}

.about-content .wp-block-table td,
.contact-content .wp-block-table td {
	padding: 0.75rem 1rem;
	border-bottom: 1px solid #e5e7eb;
}

.about-content .wp-block-table tr:nth-child(even) td,
.contact-content .wp-block-table tr:nth-child(even) td {
	background: #f9fafb;
}

/* Contact form styling (for common form plugins) */
.contact-content input[type="text"],
.contact-content input[type="email"],
.contact-content input[type="tel"],
.contact-content input[type="url"],
.contact-content textarea,
.contact-content select {
	width: 100%;
	padding: 0.65rem 0.85rem;
	font-size: 1rem;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-family: inherit;
	transition: border-color 0.2s;
}

.contact-content input[type="text"]:focus,
.contact-content input[type="email"]:focus,
.contact-content input[type="tel"]:focus,
.contact-content input[type="url"]:focus,
.contact-content textarea:focus,
.contact-content select:focus {
	outline: none;
	border-color: #152552;
	box-shadow: 0 0 0 3px rgba(21, 37, 82, 0.1);
}

.contact-content input[type="submit"],
.contact-content button[type="submit"] {
	background: #152552;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.2s;
}

.contact-content input[type="submit"]:hover,
.contact-content button[type="submit"]:hover {
	background: #1e3a6e;
}

.contact-content label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.35rem;
	color: #1f2937;
}
