/**
 * Michael Carbonara Theme - Main Stylesheet
 *
 * @package Michael_Carbonara_Theme
 * @version 1.0.0
 */

/* ==========================================================================
   FONTS
   ========================================================================== */

@font-face {
	font-family: 'Sora';
	src: url('../fonts/Sora-Regular.woff2') format('woff2'),
		 url('../fonts/Sora-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sora';
	src: url('../fonts/Sora-Medium.woff2') format('woff2'),
		 url('../fonts/Sora-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sora';
	src: url('../fonts/Sora-SemiBold.woff2') format('woff2'),
		 url('../fonts/Sora-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Sora';
	src: url('../fonts/Sora-Bold.woff2') format('woff2'),
		 url('../fonts/Sora-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* ==========================================================================
   CSS VARIABLES
   ========================================================================== */

:root {
	--primary-red: #BE0B31;
	--primary-blue: #002768;
	--dark-blue: #001a44;
	--white: #ffffff;
	--light-gray: #f5f5f5;
	--text-dark: #1a1a1a;
	--text-gray: #4a4a4a;
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--container-max: 1400px;
	--container-padding: 20px;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--white);
}

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

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

button {
	font-family: inherit;
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	line-height: 1.2;
}

p {
	margin: 0 0 1em;
}

ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.visually-hidden,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	display: inline-block;
	padding: 5px 28px;
	font-weight: 600;
	font-size: 15px;
	border-radius: 4px;
	transition: all var(--transition-normal);
	border: 2px solid transparent;
	cursor: pointer;
	text-align: center;
}

.btn-primary {
	background-color: var(--primary-red);
	color: var(--white);
	border-color: var(--primary-red);
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: #a00d25;
	border-color: #a00d25;
}

.btn-secondary {
	background-color: var(--white);
	color: var(--primary-blue);
	border-color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: transparent;
	color: var(--white);
	border-color: var(--white);
}

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.top-bar {
	background-color: var(--primary-red);
	color: var(--white);
	padding: 8px 0;
	text-align: center;
}

.contact-link {
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
	animation: blink-shadow 0.4s ease-in-out infinite;
}

@keyframes blink-shadow {
	0%, 100% {
		text-shadow:
			0 0 5px rgba(255, 255, 255, 0.9),
			0 0 10px rgba(255, 255, 255, 0.8),
			0 0 15px rgba(255, 255, 255, 0.7),
			0 0 20px rgba(255, 255, 255, 0.6),
			0 0 30px rgba(255, 255, 255, 0.5),
			0 0 40px rgba(255, 255, 255, 0.4),
			0 0 55px rgba(255, 255, 255, 0.3),
			0 0 75px rgba(255, 255, 255, 0.2);
	}
	50% {
		text-shadow: none;
	}
}

.contact-link:hover {
	text-decoration: underline;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.main-header {
	background-color: var(--primary-blue);
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: padding 0.25s ease-out;
	will-change: padding;
}

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

.main-header.scrolled {
	padding: 8px 0;
}

.logo {
	display: flex;
	flex-shrink: 0;
}

.logo a {
	display: flex;
	align-items: center;
}

.logo img {
	width: 233px;
	height: auto;
	transition: width 0.25s ease-out;
	will-change: width;
}

.main-header.scrolled .logo img {
	width: 150px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 24px;
	background: none;
	border: none;
	padding: 0;
	z-index: 110;
}

.hamburger {
	width: 100%;
	height: 3px;
	background-color: var(--white);
	border-radius: 2px;
	transition: all var(--transition-normal);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Navigation */
.main-nav ul {
	display: flex;
	gap: 35px;
}

.main-nav a {
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
	transition: opacity var(--transition-normal);
}

.main-nav a:hover,
.main-nav a:focus {
	opacity: 0.8;
}

/* Active/Current menu item */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
	color: var(--primary-red);
	opacity: 1;
}

/* Mobile-only menu items - hide on desktop */
.main-nav .mobile-only {
	display: none;
}

/* Header CTA */
.header-cta {
	display: flex;
	gap: 15px;
}

/* ==========================================================================
   LIGHT HEADER (Inner Pages)
   ========================================================================== */

.main-header-light {
	background-color: var(--white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.main-header-light .main-nav a {
	color: var(--text-dark);
}

.main-header-light .main-nav a:hover,
.main-header-light .main-nav a:focus {
	color: var(--primary-blue);
	opacity: 1;
}

/* Active/Current menu item on light header */
.main-header-light .main-nav .current-menu-item > a,
.main-header-light .main-nav .current_page_item > a,
.main-header-light .main-nav .current-menu-ancestor > a {
	color: var(--primary-red);
}

.main-header-light .hamburger {
	background-color: var(--text-dark);
}

.main-header-light .btn-secondary-outline {
	background-color: var(--primary-blue);
	color: var(--white);
	border: 2px solid var(--primary-blue);
}

.main-header-light .btn-secondary-outline:hover {
	background-color: var(--dark-blue);
	border-color: var(--dark-blue);
	color: var(--white);
}

/* Light header scrolled state */
.main-header-light.scrolled {
	background-color: var(--white);
}

/* ==========================================================================
   PAGE HERO (Inner Pages Title Section)
   ========================================================================== */

.page-hero {
	padding: 60px 0 50px;
	background-color: var(--white);
}

.page-title {
	font-size: 56px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 20px 0;
	line-height: 1.1;
}

.page-subtitle {
	font-size: 21px;
	color: #4a4a4a;
	line-height: 1.6;
	max-width: 700px;
	margin: 0;
}

/* ==========================================================================
   STORY SECTION (About Page)
   ========================================================================== */

.story-section {
	padding: 0 0 100px;
	background-color: var(--white);
}

.story-section .container {
	display: grid;
	grid-template-columns: 40% 55%;
	gap: 80px;
	align-items: start;
}

.story-image-wrapper {
	position: sticky;
	top: 120px;
	height: fit-content;
}

.story-image img {
	width: 80%;
	height: auto;
	display: block;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.story-content {
	padding-top: 20px;
}

.story-block {
	margin-bottom: 50px;
}

.story-block:last-child {
	margin-bottom: 0;
}

.story-block h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.story-block p {
	font-size: 17px;
	line-height: 1.8;
	color: #4a4a4a;
	margin: 0 0 20px 0;
}

.story-block p:last-child {
	margin-bottom: 0;
}

.story-block ul {
	margin: 20px 0;
	padding-left: 25px;
}

.story-block li {
	font-size: 17px;
	line-height: 1.8;
	color: #4a4a4a;
	margin-bottom: 10px;
}

.story-block li:last-child {
	margin-bottom: 0;
}

/* Highlight quote box */
.story-highlight .highlight-quote {
	background-color: var(--light-gray);
	padding: 30px;
	margin: 20px 0;
	border: none;
	border-radius: 10px;
}

.story-highlight .highlight-quote p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-dark);
	font-style: normal;
	margin: 0;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
	background: var(--primary-blue);
	color: var(--white);
	padding-top: 80px;
	min-height: 600px;
}

.hero .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: auto auto;
	gap: 0 60px;
	align-items: start;
}

.hero-content {
	max-width: 600px;
	grid-column: 1;
	grid-row: 1;
	display: flex;
	flex-direction: column;
}

.hero-title {
	font-size: 88px;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 30px;
	letter-spacing: -1px;
}

.hero-quote {
	font-size: 18px;
	line-height: 1.7;
	margin: 0;
	font-style: italic;
	opacity: 0.95;
	border: none;
	padding: 0;
}

.hero-quote p {
	margin: 0;
}

.hero-cta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	grid-column: 1;
	grid-row: 2;
	margin-top: 40px;
}

.hero-cta .btn {
	padding: 10px 20px;
}

.hero-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	grid-column: 2;
	grid-row: 1 / 3;
}

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
	background-color: var(--light-gray);
	padding: 100px 0;
}

.about-section .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-image img {
	width: 100%;
	height: auto;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-content {
	max-width: 600px;
}

.section-label {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.label-icon {
	width: 24px;
	height: 24px;
	background-color: var(--primary-red);
	display: block;
}

.label-text {
	font-size: 20px;
	font-weight: 400;
	color: var(--primary-red);
	letter-spacing: 2px;
}

.section-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--text-dark);
	margin-bottom: 30px;
	line-height: 1.2;
}

.about-text {
	margin-bottom: 35px;
}

.about-text p {
	font-size: 17px;
	line-height: 1.8;
	color: var(--text-gray);
	margin-bottom: 20px;
}

.about-text p:last-child {
	margin-bottom: 0;
}

/* ==========================================================================
   ISSUES SLIDER
   ========================================================================== */

.issues-slider {
	width: 100%;
	overflow: hidden;
	position: relative;
	background-color: var(--white);
	padding: 0;
}

.slider-wrapper {
	width: 100%;
	position: relative;
}

.slider-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.slider-track {
	display: flex;
	width: 100%;
	transition: transform 0.3s ease-out;
	cursor: grab;
}

.slider-track:active {
	cursor: grabbing;
}

.slider-item {
	flex: 0 0 25%;
	position: relative;
	overflow: hidden;
}

.slider-link {
	display: block;
	position: relative;
	width: 100%;
	height: 275px;
	overflow: hidden;
}

.slider-link img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.slider-link:hover img,
.slider-link:focus img {
	transform: scale(1.05);
}

.slider-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 30px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
	text-align: center;
}

.slider-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	letter-spacing: 1px;
	line-height: 1.2;
	margin: 0;
	text-align: center;
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-blue);
	transition: all var(--transition-normal);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover,
.slider-btn:focus {
	background-color: var(--primary-red);
	color: var(--white);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.slider-btn-prev {
	left: 20px;
}

.slider-btn-next {
	right: 20px;
}

/* ==========================================================================
   ISSUES PAGE
   ========================================================================== */

.issues-hero {
	padding: 60px 0 50px;
	background-color: var(--white);
}

.issues-label {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-blue);
	margin: 0 0 10px 0;
}

.issues-title {
	font-size: 61px;
	font-weight: 600;
	color: var(--text-dark);
	margin: 0 0 20px 0;
	line-height: 1.1;
	letter-spacing: -2px;
}

.issues-subtitle {
	font-size: 22px;
	font-weight: 400;
	color: #4a4a4a;
	line-height: 1.6;
	max-width: 850px;
	margin: 0;
}

.issues-grid-section {
	padding: 0 0 100px;
	background-color: var(--white);
}

.issues-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

/* Row 1: 35% | 65% */
.issues-grid .issue-card:nth-child(1) {
	flex: 0 0 calc(35% - 10px);
}

.issues-grid .issue-card:nth-child(2) {
	flex: 0 0 calc(65% - 10px);
}

/* Row 2: 65% | 35% */
.issues-grid .issue-card:nth-child(3) {
	flex: 0 0 calc(65% - 10px);
}

.issues-grid .issue-card:nth-child(4) {
	flex: 0 0 calc(35% - 10px);
}

/* Row 3: 35% | 65% */
.issues-grid .issue-card:nth-child(5) {
	flex: 0 0 calc(35% - 10px);
}

.issues-grid .issue-card:nth-child(6) {
	flex: 0 0 calc(65% - 10px);
}

/* Issue card */
.issue-card {
	position: relative;
	display: block;
	overflow: hidden;
	text-decoration: none;
	height: 400px;
	border-radius: 12px;
	width: 100%;
}

.issue-card img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.issue-card:hover img,
.issue-card:focus img {
	transform: scale(1.05);
}

.issue-card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 30px 25px;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
	text-align: center;
}

.issue-card-title {
	font-size: 24px;
	font-weight: 600;
	color: var(--white);
	margin: 0;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-align: center;
}

.no-issues-message {
	text-align: center;
	font-size: 18px;
	color: var(--text-gray);
	padding: 60px 0;
}

/* ==========================================================================
   DONATION CTA SECTION
   ========================================================================== */

.donation-cta-section {
	background-color: var(--primary-blue);
	padding: 50px 0;
	text-align: center;
}

.donation-cta-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 30px 0;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.donation-cta-title em {
	font-style: italic;
	font-weight: 400;
}

.donation-buttons {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.donation-btn {
	background-color: var(--primary-red);
	color: var(--white);
	border: none;
	padding: 15px 50px;
	font-size: 18px;
	font-weight: 700;
	transition: background-color var(--transition-normal), transform var(--transition-fast);
	min-width: 120px;
}

.donation-btn:hover {
	background-color: #a01830;
	transform: translateY(-2px);
}

.donation-btn:active {
	transform: translateY(0);
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */

.events-section {
	background-color: var(--white);
	min-height: 400px;
	padding: 80px 0;
}

/* ==========================================================================
   LATEST NEWS SECTION
   ========================================================================== */

.latest-news-section {
	padding: 0;
	background-color: var(--white);
	width: 100%;
	overflow: hidden;
}

.latest-section {
	display: grid;
	grid-template-columns: 50% 50%;
	gap: 0;
	align-items: stretch;
	max-width: 1400px;
}

.latest-image-wrapper {
	position: relative;
	width: 100%;
	min-height: 500px;
	overflow: hidden;
}

.latest-image-wrapper img {
	max-width: 100%;
	height: 460px;
	object-fit: cover;
}

.latest-overlay {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	padding: 0;
	background: none;
	color: var(--primary-blue);
	text-align: center;
	width: 90%;
}

.latest-overlay-title {
	font-size: 40px;
	font-weight: 600;
	color: var(--primary-blue);
	margin: 0 0 5px 0;
	line-height: 1;
	text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8);
}

.latest-overlay-subtitle {
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-red);
	margin: 0 0 25px 0;
}

.latest-articles-wrapper {
	padding: 30px;
	display: flex;
	align-items: center;
	background-color: var(--white);
}

.latest-articles {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.news-article {
	padding-bottom: 40px;
}

.news-article:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.article-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 10px 0;
	line-height: 1.3;
}

.article-date {
	font-size: 14px;
	color: var(--primary-blue);
	margin: 0 0 15px 0;
	font-weight: 500;
}

.article-excerpt {
	font-size: 16px;
	color: var(--text-gray);
	line-height: 1.6;
	margin: 0 0 15px 0;
}

.article-link {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-red);
	transition: opacity var(--transition-normal);
}

.article-link:hover {
	opacity: 0.8;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
	background-color: var(--primary-blue);
	color: var(--white);
	padding: 80px 0 40px;
}

.footer-form-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	margin-bottom: 60px;
}

.footer-form-content {
	padding-right: 40px;
}

.footer-form-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 15px 0;
	line-height: 1.2;
}

.footer-form-subtitle {
	font-size: 16px;
	color: var(--white);
	line-height: 1.6;
	margin: 0;
}

.footer-form {
	background-color: transparent;
}

/* HubSpot Form Container Styles */
.hubspot-form-container {
	width: 100%;
}

/* Style HubSpot form elements to match theme */
.hubspot-form-container .hs-form {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.hubspot-form-container .hs-form-field {
	flex: 1 1 calc(50% - 10px);
	min-width: 200px;
}

.hubspot-form-container .hs-form-field label {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	margin-bottom: 8px;
	display: block;
}

.hubspot-form-container .hs-input {
	width: 100%;
	padding: 12px 16px;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	background-color: var(--white);
	color: var(--text-dark);
	box-sizing: border-box;
}

.hubspot-form-container .hs-input:focus {
	outline: 2px solid var(--primary-red);
}

.hubspot-form-container .hs-submit {
	flex: 1 1 100%;
	margin-top: 10px;
}

.hubspot-form-container .hs-button {
	background-color: var(--primary-red);
	color: var(--white);
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 700;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color var(--transition-normal);
}

.hubspot-form-container .hs-button:hover {
	background-color: #b02a37;
}

.hubspot-form-container .hs-error-msgs {
	color: var(--primary-red);
	font-size: 13px;
	margin-top: 5px;
	list-style: none;
	padding: 0;
}

.hubspot-form-container .hs-richtext {
	color: var(--white);
	font-size: 14px;
}

/* Admin placeholder notice */
.form-placeholder-notice {
	color: rgba(255, 255, 255, 0.7);
	font-style: italic;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 4px;
	text-align: center;
}

.footer-divider {
	height: 1px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 60px 0;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 2fr;
	gap: 100px;
	margin-bottom: 60px;
}

.footer-left {
	max-width: 400px;
}

.footer-logo {
	display: flex;
	margin-bottom: 20px;
}

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

.footer-tagline {
	font-size: 16px;
	line-height: 1.6;
	color: var(--white);
	margin: 0;
}

.footer-nav {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 60px;
}

.footer-nav-column {
	display: flex;
	flex-direction: column;
}

.footer-nav-title {
	font-size: 18px;
	font-weight: 700;
	color: var(--white);
	margin: 0 0 20px 0;
}

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

.footer-nav li {
	margin-bottom: 12px;
}

.footer-nav a {
	color: var(--white);
	font-size: 16px;
	transition: opacity var(--transition-normal);
}

.footer-nav a:hover {
	opacity: 0.7;
}

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

.footer-paid {
	font-size: 14px;
	color: var(--white);
	margin: 0;
}

.footer-contact-social {
	display: flex;
	align-items: center;
	gap: 40px;
}

.footer-email {
	color: var(--white);
	font-size: 16px;
	transition: opacity var(--transition-normal);
}

.footer-email:hover {
	opacity: 0.7;
}

.footer-social {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-social-label {
	font-size: 14px;
	color: var(--white);
	margin-right: 5px;
}

.social-link {
	color: var(--white);
	transition: opacity var(--transition-normal);
	display: flex;
	align-items: center;
}

.social-link:hover {
	opacity: 0.7;
}

/* ==========================================================================
   POPUP STYLES
   ========================================================================== */

.donation-popup-overlay,
.yard-sign-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	padding: 20px;
}

.donation-popup-overlay.active,
.yard-sign-popup-overlay.active {
	display: flex;
}

.donation-popup {
	height: 860px;
}

.donation-popup-content{
	height: 100%;
}

.donation-popup,
.yard-sign-popup {
	background-color: var(--white);
	padding: 40px;
	border-radius: 8px;
	max-width: 500px;
	width: 100%;
	position: relative;
	max-height: 90vh;
	overflow-y: auto;
}

.donation-popup-close,
.yard-sign-popup-close {
	position: absolute;
	top: 15px;
	right: 20px;
	background: none;
	border: none;
	font-size: 32px;
	cursor: pointer;
	color: var(--text-dark);
	line-height: 1;
	padding: 0;
}

.donation-popup-close:hover,
.yard-sign-popup-close:hover {
	color: var(--primary-red);
}

.donation-popup-title {
	font-size: 28px;
	font-weight: 700;
	color: var(--primary-blue);
	margin: 0 0 10px 0;
	text-align: center;
}

.donation-popup-subtitle {
	font-size: 16px;
	color: var(--text-dark);
	margin: 0 0 25px 0;
	text-align: center;
}

.donation-popup-subtitle span {
	font-weight: 700;
	color: var(--primary-red);
}

.donation-popup-form .form-group {
	margin-bottom: 20px;
}

.donation-popup-form label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 8px;
}

.donation-popup-form input {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
	transition: border-color var(--transition-normal);
}

.donation-popup-form input:focus {
	outline: none;
	border-color: var(--primary-blue);
}

.donation-popup-form .form-row {
	display: flex;
	gap: 15px;
}

.donation-popup-form .form-row .form-group {
	flex: 1;
}

.donation-submit {
	width: 100%;
	padding: 15px;
	font-size: 18px;
	margin-top: 10px;
}

/* Yard Sign Popup */
.yard-sign-popup-overlay {
	z-index: 2000;
}

.yard-sign-popup {
	background-color: var(--primary-blue);
	max-width: 700px;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 0;
	border-radius: 0;
}

.yard-sign-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background-color: var(--primary-red);
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--white);
	line-height: 1;
	padding: 5px 12px;
	z-index: 10;
	border-radius: 4px;
}

.yard-sign-popup-close:hover {
	background-color: #a00d24;
	color: var(--white);
}

.yard-sign-images {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}

.yard-sign-images img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border: 3px solid white;
}

.yard-sign-content {
	padding: 30px;
	text-align: left;
}

.yard-sign-link {
	color: #69B5F6;
	font-size: 30px;
	font-weight: 600;
	text-decoration: underline;
	text-align: center;
	display: block;
	margin-bottom: 5px;
}

.yard-sign-link:hover {
	color: var(--light-gray);
}

.yard-sign-title {
	color: var(--white);
	font-size: 42px;
	font-weight: 800;
	margin: 0 0 15px 0;
	line-height: 1.1;
}

.yard-sign-title a {
	color: var(--white);
	text-decoration: none;
}

.yard-sign-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--primary-red);
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 30%;
	font-size: 20px;
	margin-left: 10px;
	vertical-align: middle;
}

.yard-sign-description {
	color: var(--white);
	font-size: 16px;
	font-style: italic;
	margin: 0;
	opacity: 0.9;
}

/* ==========================================================================
   RESPONSIVE - TABLET (1024px)
   ========================================================================== */

@media (max-width: 1024px) {
	/* Header */
	.mobile-menu-toggle {
		display: flex;
	}

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--primary-blue);
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 0;
		max-height: 0;
		overflow: hidden;
		transition: max-height var(--transition-normal);
		z-index: 100;
	}

	.main-nav.active {
		max-height: 600px;
		overflow-y: auto;
	}

	.main-nav ul {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.main-nav li {
		width: 100%;
		text-align: left;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.main-nav li:last-child {
		border-bottom: none;
	}

	.main-nav a {
		display: block;
		padding: 18px 25px;
		font-size: 16px;
		font-weight: 600;
		width: 100%;
	}

	/* Active/Current menu item on mobile - white bg, blue text */
	.main-nav .current-menu-item > a,
	.main-nav .current_page_item > a,
	.main-nav .current-menu-ancestor > a {
		background-color: var(--white);
		color: var(--primary-blue) !important;
		opacity: 1;
	}

	/* Mobile-only menu items - show on mobile */
	.main-nav .mobile-only {
		display: block;
	}

	.header-cta {
		display: none;
	}

	.logo img {
		width: 130px;
	}

	.main-header.scrolled .logo img {
		width: 130px;
	}

	/* Light Header Mobile Nav */
	.main-header-light .main-nav {
		background-color: var(--primary-blue);
	}

	.main-header-light .main-nav a {
		color: var(--white);
	}

	.main-header-light .mobile-close-btn {
		color: var(--white);
	}

	/* Page Hero */
	.page-hero {
		padding: 50px 0 40px;
	}

	.page-title {
		font-size: 44px;
	}

	.page-subtitle {
		font-size: 16px;
	}

	/* Story Section */
	.story-section .container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.story-image-wrapper {
		position: relative;
		top: 0;
	}

	.story-image {
		max-width: 500px;
	}

	.story-block h2 {
		font-size: 28px;
	}

	/* Issues Page */
	.issues-hero {
		padding: 50px 0 40px;
	}

	.issues-title {
		font-size: 44px;
	}

	.issues-subtitle {
		font-size: 16px;
	}

	.issues-grid {
		gap: 15px;
	}

	.issue-card-title {
		font-size: 18px;
	}

	.issue-card-overlay {
		padding: 25px 20px;
	}

	/* Hero */
	.hero {
		padding: 40px 0 0;
		min-height: auto;
	}

	.hero .container {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 20px;
		align-items: end;
	}

	.hero-content {
		grid-column: 1 / -1;
		grid-row: 1;
		max-width: 100%;
	}

	.hero-title {
		font-size: 42px;
		margin-bottom: 20px;
	}

	.hero-quote {
		font-size: 15px;
		margin-bottom: 25px;
	}

	.hero-cta {
		grid-column: 1;
		grid-row: 2;
		flex-direction: column;
		gap: 12px;
		align-self: end;
		padding-bottom: 30px;
		margin-top: 0;
	}

	.hero-cta .btn {
		width: auto;
		text-align: center;
		padding: 10px 20px;
		font-size: 14px;
	}

	.hero-image {
		grid-column: 2;
		grid-row: 2;
		align-self: end;
	}

	.hero-image img {
		max-height: 350px;
		width: auto;
		object-fit: contain;
	}

	/* About */
	.about-section {
		padding: 80px 0;
	}

	.about-section .container {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.about-content {
		order: 1;
	}

	.about-image {
		order: 2;
	}

	.section-title {
		font-size: 40px;
	}

	/* Issues Slider */
	.slider-item {
		flex: 0 0 33.333%;
	}

	.slider-link {
		height: 350px;
	}

	.slider-title {
		font-size: 24px;
	}

	/* News */
	.latest-section {
		grid-template-columns: 40% 60%;
	}

	.latest-image-wrapper {
		min-height: 450px;
	}

	.latest-overlay-title {
		font-size: 52px;
	}

	.article-title {
		font-size: 22px;
	}

	/* Footer */
	.footer {
		padding: 60px 0 30px;
	}

	.footer-form-section {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-form-content {
		padding-right: 0;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.footer-nav {
		gap: 40px;
	}
}

/* ==========================================================================
   RESPONSIVE - MOBILE (768px)
   ========================================================================== */

@media (max-width: 768px) {
	/* Page Hero */
	.page-hero {
		padding: 40px 0 30px;
	}

	.page-title {
		font-size: 36px;
	}

	/* Story Section */
	.story-section {
		padding: 0 0 60px;
	}

	.story-section .container {
		gap: 40px;
	}

	.story-block {
		margin-bottom: 40px;
	}

	.story-block h2 {
		font-size: 26px;
	}

	.story-block p,
	.story-block li {
		font-size: 16px;
	}

	/* Issues Page */
	.issues-hero {
		padding: 40px 0 30px;
	}

	.issues-title {
		font-size: 36px;
	}

	.issues-grid-section {
		padding: 0 0 60px;
	}

	.issues-grid .issue-card:nth-child(1),
	.issues-grid .issue-card:nth-child(2),
	.issues-grid .issue-card:nth-child(3),
	.issues-grid .issue-card:nth-child(4),
	.issues-grid .issue-card:nth-child(5),
	.issues-grid .issue-card:nth-child(6) {
		flex: 0 0 100%;
		width: 100%;
	}

	.issues-grid {
		gap: 15px;
	}

	.issue-card {
		height: 200px;
		width: 100%;
	}

	.issue-card-title {
		font-size: 20px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-quote {
		font-size: 14px;
	}

	.hero-image img {
		max-height: 300px;
	}

	/* About */
	.about-section {
		padding: 60px 0;
	}

	.about-section .container {
		gap: 40px;
	}

	.section-title {
		font-size: 36px;
	}

	.about-text p {
		font-size: 16px;
	}

	/* Issues Slider */
	.slider-item {
		flex: 0 0 100%;
	}

	.slider-link {
		height: 400px;
	}

	.slider-title {
		font-size: 24px;
	}

	.slider-content {
		padding: 30px 20px;
	}

	.slider-btn {
		width: 40px;
		height: 40px;
	}

	.slider-btn-prev {
		left: 10px;
	}

	.slider-btn-next {
		right: 10px;
	}

	/* Donation CTA */
	.donation-cta-section {
		padding: 40px 20px;
	}

	.donation-cta-title {
		font-size: 22px;
		margin-bottom: 25px;
	}

	.donation-buttons {
		flex-direction: column;
		gap: 10px;
		max-width: 400px;
		margin: 0 auto;
	}

	.donation-btn {
		width: 100%;
		padding: 15px 30px;
		font-size: 16px;
	}

	/* News */
	.latest-section {
		grid-template-columns: 1fr;
		max-width: 100%;
	}

	.latest-image-wrapper {
		min-height: 350px;
	}

	.latest-articles-wrapper {
		padding: 50px 40px;
	}

	.latest-overlay-title {
		font-size: 44px;
	}

	.latest-articles {
		gap: 40px;
	}

	.news-article {
		padding-bottom: 30px;
	}

	/* Footer */
	.footer {
		padding: 50px 0 30px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.footer-form-title {
		font-size: 32px;
	}

	.footer-divider {
		margin: 50px 0;
	}

	.footer-nav {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.footer-bottom {
		flex-direction: column;
		gap: 30px;
		align-items: flex-start;
	}

	.footer-contact-social {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	/* Popups */
	.donation-popup {
		padding: 30px 20px;
	}

	.donation-popup-form .form-row {
		flex-direction: column;
		gap: 0;
	}

	/* Yard Sign Popup */
	.yard-sign-popup {
		max-width: 95%;
	}

	.yard-sign-images img {
		height: 180px;
	}

	.yard-sign-content {
		padding: 20px;
	}

	.yard-sign-title {
		font-size: 28px;
	}

	.yard-sign-arrow {
		width: 30px;
		height: 30px;
		font-size: 16px;
	}

	.yard-sign-link {
		font-size: 16px;
	}

	.yard-sign-description {
		font-size: 14px;
	}
}

/* ==========================================================================
   RESPONSIVE - SMALL MOBILE (480px)
   ========================================================================== */

@media (max-width: 480px) {
	.logo img {
		width: 110px;
	}

	.main-header.scrolled .logo img {
		width: 110px;
	}

	.hero-title {
		font-size: 26px;
	}

	.hero-quote {
		font-size: 13px;
	}

	.hero-cta .btn {
		padding: 8px 16px;
		font-size: 12px;
	}

	.hero-image img {
		max-height: 250px;
	}

	.contact-link {
		font-size: 12px;
	}

	/* About Section */
	.section-title {
		font-size: 32px;
	}

	.about-text p {
		font-size: 15px;
	}

	/* Page Hero & Story (About Page) */
	.page-title {
		font-size: 30px;
	}

	.page-subtitle {
		font-size: 15px;
	}

	.story-block h2 {
		font-size: 24px;
	}

	.story-block p,
	.story-block li {
		font-size: 15px;
	}

	/* Issues Page */
	.issues-title {
		font-size: 30px;
	}

	.issues-subtitle {
		font-size: 15px;
	}

	.issue-card-overlay {
		padding: 20px 15px;
	}

	.issue-card-title {
		font-size: 18px;
	}

	/* Issues Slider */
	.slider-item {
		flex: 0 0 100%;
	}

	.slider-link {
		height: 400px;
	}

	.slider-title {
		font-size: 22px;
	}

	.slider-content {
		padding: 25px 15px;
	}

	/* Donation CTA */
	.donation-cta-section {
		padding: 30px 15px;
	}

	.donation-cta-title {
		font-size: 18px;
		line-height: 1.4;
	}

	.donation-btn {
		padding: 10px 20px;
		font-size: 14px;
		min-width: 80px;
	}

	/* News */
	.latest-image-wrapper {
		min-height: 300px;
	}

	.latest-articles-wrapper {
		padding: 40px 20px;
	}

	.latest-overlay-title {
		font-size: 32px;
		letter-spacing: 2px;
	}

	.latest-overlay-subtitle {
		font-size: 12px;
		margin-bottom: 20px;
	}

	.article-title {
		font-size: 20px;
	}

	.article-excerpt {
		font-size: 15px;
	}

	/* Footer */
	.footer-form-title {
		font-size: 28px;
	}

	.footer-social {
		flex-wrap: wrap;
	}

	/* Yard Sign Popup */
	.yard-sign-images {
		grid-template-columns: 1fr;
	}

	.yard-sign-images img:last-child {
		display: none;
	}

	.yard-sign-images img {
		height: 200px;
	}

	.yard-sign-title {
		font-size: 24px;
	}

	.yard-sign-content {
		padding: 15px;
	}
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-page {
	background-color: var(--white);
}

.contact-section {
	min-height: calc(100vh - 120px);
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: calc(100vh - 120px);
}

/* Left side - Content */
.contact-content {
	display: flex;
	align-items: flex-start;
	justify-content: end;
	padding: 80px 60px;
	background-color: var(--white);
}

.contact-content-inner {
	max-width: 600px;
	width: 100%;
}

.contact-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 20px 0;
	line-height: 1.15;
}

.contact-description {
	font-size: 16px;
	font-style: italic;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0 0 40px 0;
}

/* Form wrapper */
.contact-form-wrapper {
	margin-top: 30px;
}

.contact-form-placeholder {
	padding: 40px;
	background-color: var(--light-gray);
	border-radius: 8px;
	text-align: center;
	color: var(--text-gray);
	font-size: 14px;
}

/* Right side - Image */
.contact-image-wrapper {
	position: relative;
	overflow: hidden;
	background-color: #f5f5f5;
}

.contact-image-wrapper img,
.contact-image-wrapper .contact-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Contact Page Responsive - Tablet */
@media (max-width: 1024px) {
	.contact-content {
		padding: 60px 40px;
	}

	.contact-title {
		font-size: 36px;
	}
}

/* Contact Page Responsive - Mobile */
@media (max-width: 768px) {
	.contact-section {
		min-height: auto;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.contact-content {
		padding: 50px 20px;
		order: 1;
	}

	.contact-image-wrapper {
		order: 2;
		height: 400px;
	}

	.contact-title {
		font-size: 32px;
	}

	.contact-description {
		font-size: 15px;
		margin-bottom: 30px;
	}
}

@media (max-width: 480px) {
	.contact-content {
		padding: 40px 15px;
	}

	.contact-title {
		font-size: 28px;
	}

	.contact-image-wrapper {
		height: 350px;
	}
}

/* ==========================================================================
   NEWS PAGE - MOVEMENT SECTION
   ========================================================================== */

.movement-section {
	background-color: var(--primary-blue);
	padding: 80px 0 100px;
}

.movement-header {
	margin-bottom: 50px;
	text-align: left;
	max-width: 1111px;
	margin-left: auto;
	margin-right: auto;
}

.movement-section .label-icon {
    background: white;
}

.movement-section .section-label {
	justify-content: flex-start;
}

.movement-section .label-text {
	color: var(--white);
}

.movement-title {
	font-size: 61px;
	font-weight: 700;
	color: var(--white);
	margin: 0;
	line-height: 1.1;
}

/* Movement image grid */
.movement-grid {
	display: grid;
	grid-template-columns: 505px 288px 288px;
	grid-template-rows: 505px 200px;
	gap: 15px;
	margin-bottom: 50px;
	justify-content: center;
}

.movement-img {
	overflow: hidden;
	border-radius: 8px;
}

.movement-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.movement-img:hover img {
	transform: scale(1.05);
}

/* Left side - Large image on top (505px x 505px) */
.movement-img-large {
	grid-column: 1;
	grid-row: 1;
}

/* Right side - Two small images on top row (288px x 200px each) */
.movement-img:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
	height: 200px;
	align-self: start;
}

.movement-img:nth-child(3) {
	grid-column: 3;
	grid-row: 1;
	height: 200px;
	align-self: start;
}

/* Left side - Two small images on bottom row (288px x 95px each) */
.movement-img:nth-child(4) {
	grid-column: 1;
	grid-row: 2;
	width: calc(50% - 7.5px);
}

.movement-img:nth-child(5) {
	grid-column: 1;
	grid-row: 2;
	width: calc(50% - 7.5px);
	justify-self: end;
}

/* Right side - Large image on bottom (spans 2 columns, height fills remaining space) */
.movement-img-medium {
	grid-column: 2 / 4;
	grid-row: 1 / 3;
	margin-top: 215px;
}

/* Movement description */
.movement-description {
	max-width: 1111px;
	margin: 0 auto;
	text-align: left;
}

.movement-description p {
	font-size: 17px;
	line-height: 1.7;
	color: var(--white);
	margin: 0;
	max-width: 555px;
}

/* ==========================================================================
   NEWS PAGE - NEWS AND EVENTS SECTION
   ========================================================================== */

.news-events-section {
	padding: 80px 0 100px;
	background-color: var(--white);
}

.news-events-grid {
	display: grid;
	grid-template-columns: 350px 600px;
	gap: 60px;
	margin-bottom: 60px;
	justify-content: center;
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

/* Events Calendar */
.events-calendar {
	background-color: var(--white);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
}

.calendar-title {
	font-size: 24px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0;
	letter-spacing: 1px;
}

.calendar-nav {
	display: flex;
	gap: 8px;
}

.calendar-nav-btn {
	width: 32px;
	height: 32px;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #666;
	transition: all 0.3s ease;
}

.calendar-nav-btn:hover {
	border-color: var(--primary-blue);
	color: var(--primary-blue);
}

/* Events List */
.events-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.event-item {
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: var(--primary-blue);
	padding: 20px 25px;
	border-radius: 8px;
	text-decoration: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 39, 104, 0.3);
}

.event-date {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	min-width: 60px;
}

.event-day {
	font-size: 36px;
	font-weight: 700;
	color: var(--white);
	line-height: 1;
}

.event-day-range {
	font-size: 20px;
	font-weight: 700;
	color: var(--white);
	margin-left: 2px;
}

.event-month {
	font-size: 14px;
	font-weight: 600;
	color: var(--white);
	opacity: 0.8;
	display: block;
	width: 100%;
	margin-top: 2px;
}

.event-info {
	flex: 1;
}

.event-title {
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	margin: 0;
	line-height: 1.3;
	letter-spacing: 0.5px;
}

.no-events-message {
	font-size: 15px;
	color: var(--text-gray);
	padding: 20px;
	text-align: center;
	background-color: var(--light-gray);
	border-radius: 8px;
}

/* News Articles List */
.news-articles-list {
	display: flex;
	flex-direction: column;
}

.news-article-item {
	padding: 30px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	margin-bottom: 24px;
}

.news-article-item:last-child {
	margin-bottom: 0;
}

.news-article-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.news-article-title a {
	color: var(--primary-red);
	text-decoration: none;
	transition: color 0.3s ease;
}

.news-article-title a:hover {
	color: var(--primary-red);
}

.news-article-excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: #4a4a4a;
	margin: 0 0 15px 0;
}

.news-article-link {
	font-size: 14px;
	font-weight: 700;
	color: var(--text-dark);
	text-decoration: none;
	letter-spacing: 0.5px;
	display: inline-block;
	margin-bottom: 15px;
	transition: color 0.3s ease;
}

.news-article-link:hover {
	color: var(--primary-red);
}

.news-article-date {
	display: block;
	font-size: 14px;
	color: #888;
}

.no-news-message {
	font-size: 16px;
	color: var(--text-gray);
	text-align: center;
	padding: 40px 20px;
}

/* Pagination */
.news-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.pagination-link {
	padding: 8px 12px;
	font-size: 15px;
	color: var(--text-dark);
	text-decoration: none;
	transition: color 0.3s ease;
}

.pagination-link:hover {
	color: var(--primary-blue);
}

.pagination-link.active {
	color: var(--primary-blue);
	font-weight: 700;
}

.pagination-link.disabled {
	color: #ccc;
	pointer-events: none;
}

.pagination-ellipsis {
	padding: 8px 6px;
	font-size: 15px;
	color: var(--text-dark);
}

.pagination-prev,
.pagination-next {
	font-weight: 500;
}

/* ==========================================================================
   NEWS PAGE - RESPONSIVE STYLES
   ========================================================================== */

/* Responsive design - News page - Tablet (1200px) */
@media (max-width: 1200px) {
	.movement-grid {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 400px 180px;
		gap: 12px;
	}

	.movement-img:nth-child(2),
	.movement-img:nth-child(3) {
		height: 180px;
	}

	.movement-img-medium {
		margin-top: 192px;
	}
}

/* Responsive design - News page - Tablet (1024px) */
@media (max-width: 1024px) {
	.movement-section {
		padding: 60px 0 80px;
	}

	.movement-title {
		font-size: 44px;
	}

	.movement-grid {
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 300px 160px;
		gap: 12px;
	}

	.movement-img:nth-child(2),
	.movement-img:nth-child(3) {
		height: 160px;
	}

	.movement-img-medium {
		margin-top: 172px;
	}

	.movement-header {
		margin-bottom: 40px;
	}

	.news-events-section {
		padding: 60px 0 80px;
	}

	.news-events-grid {
		grid-template-columns: 280px 1fr;
		gap: 40px;
		max-width: 900px;
	}

	.calendar-title {
		font-size: 20px;
	}

	.event-day {
		font-size: 30px;
	}

	.event-title {
		font-size: 14px;
	}

	.news-article-title {
		font-size: 20px;
	}
}

/* Responsive design - News page - Mobile (768px) */
@media (max-width: 768px) {
	.movement-section {
		padding: 50px 0 60px;
	}

	.movement-title {
		font-size: 36px;
	}

	.movement-grid {
		display: block;
	}

	.movement-img-large {
		width: 100%;
		height: 280px;
	}

	/* Hide all images except the first one on mobile */
	.movement-img:nth-child(2),
	.movement-img:nth-child(3),
	.movement-img:nth-child(4),
	.movement-img:nth-child(5),
	.movement-img-medium {
		display: none;
	}

	.movement-description p {
		font-size: 16px;
	}

	.news-events-section {
		padding: 50px 0 60px;
	}

	.news-events-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		max-width: 100%;
	}

	.calendar-title {
		font-size: 22px;
	}

	.event-item {
		padding: 15px 20px;
	}

	.event-day {
		font-size: 28px;
	}

	.news-article-title {
		font-size: 18px;
	}

	.news-article-excerpt {
		font-size: 14px;
	}

	.news-pagination {
		flex-wrap: wrap;
	}
}

/* Responsive design - News page - Small Mobile (480px) */
@media (max-width: 480px) {
	.movement-title {
		font-size: 30px;
	}

	.movement-img-large {
		height: 220px;
	}

	.movement-description p {
		font-size: 15px;
	}

	.calendar-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.event-day {
		font-size: 24px;
	}

	.event-day-range {
		font-size: 16px;
	}

	.event-title {
		font-size: 13px;
	}

	.news-article-title {
		font-size: 17px;
	}

	.pagination-link {
		padding: 6px 8px;
		font-size: 14px;
	}
}

/* ==========================================================================
   WORDPRESS SPECIFIC
   ========================================================================== */

/* Admin bar adjustment */
.admin-bar .main-header {
	top: 32px;
}

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

/* Alignment classes */
.alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}

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

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

/* WordPress block editor compatibility */
.wp-block-image img {
	max-width: 100%;
	height: auto;
}

.entry-content > * {
	margin-bottom: 1.5em;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

/* ============================
   LEGAL PAGES (Privacy, Terms)
   ============================ */
.privacy-page,
.terms-page {
	background-color: var(--white);
}

.legal-page-section {
	padding: 80px 0 100px;
	background-color: var(--white);
}

.legal-header {
	text-align: center;
	margin-bottom: 60px;
}

.legal-header .legal-updated {
	font-size: 14px;
	color: var(--primary-red) !important;
	margin-bottom: 12px;
	font-weight: 500;
}

.legal-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--dark-blue);
	margin: 0;
}

.legal-content {
	max-width: 800px;
	margin: 0 auto;
}

.legal-content p {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 24px;
}

.legal-content h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--dark-blue);
	margin-top: 40px;
	margin-bottom: 16px;
}

.legal-content ul {
	margin-bottom: 24px;
	padding-left: 24px;
	list-style-type: disc;
}

.legal-content ul li {
	font-size: 16px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 12px;
}

.legal-content ul li strong {
	color: var(--dark-blue);
}

.legal-content a {
	color: var(--primary-red);
	text-decoration: none;
	transition: color 0.2s ease;
}

.legal-content a:hover {
	color: #c0392b;
	text-decoration: underline;
}

/* Legal Page Responsive Styles */
@media (max-width: 1024px) {
	.legal-page-section {
		padding: 60px 0 80px;
	}

	.legal-title {
		font-size: 40px;
	}

	.legal-header {
		margin-bottom: 50px;
	}
}

@media (max-width: 768px) {
	.legal-page-section {
		padding: 50px 0 60px;
	}

	.legal-title {
		font-size: 32px;
	}

	.legal-header {
		margin-bottom: 40px;
	}

	.legal-content h2 {
		font-size: 20px;
		margin-top: 32px;
	}

	.legal-content p,
	.legal-content ul li {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.legal-page-section {
		padding: 40px 0 50px;
	}

	.legal-title {
		font-size: 28px;
	}

	.legal-header .legal-updated {
		font-size: 13px;
	}

	.legal-header {
		margin-bottom: 30px;
	}

	.legal-content h2 {
		font-size: 18px;
		margin-top: 28px;
	}

	.legal-content p,
	.legal-content ul li {
		font-size: 14px;
		line-height: 1.7;
	}

	.legal-content ul {
		padding-left: 20px;
	}
}

/* ==========================================================================
   DONATE PAGE
   ========================================================================== */

.donate-page {
	background-color: var(--white);
}

.donate-section {
	position: relative;
	min-height: 100vh;
}

/* Background image - full width, full height of section */
.donate-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.donate-bg-image img,
.donate-bg-image .donate-image {
	width: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Desktop/Mobile image visibility */
.donate-image-desktop,
.donate-image-mobile {
	width: 100%;
	height: 100%;
}

.donate-image-mobile {
	display: none;
}

/* Content wrapper - overlaps image from the right */
.donate-content-wrapper {
	position: relative;
	z-index: 10;
	margin-left: auto;
	width: 50%;
	max-width: 650px;
	padding: 40px 40px 40px 0;
}

/* Floating white content box with rounded corners */
.donate-content {
	background-color: var(--white);
	border-radius: 16px;
	padding: 30px 40px;
	width: 100%;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.donate-title {
	font-size: 42px;
	font-weight: 700;
	color: var(--text-dark);
	margin: 0 0 8px 0;
	line-height: 1.15;
}

.donate-subtitle {
	font-size: 18px;
	line-height: 1.5;
	color: var(--text-dark);
	margin: 0 0 30px 0;
}

/* Form wrapper */
.donate-form-wrapper {
	height: 965px;
	margin-bottom: 30px;
	min-height: 200px;
}

.donate-form-placeholder {
	padding: 60px 40px;
	background-color: var(--light-gray);
	border-radius: 8px;
	text-align: center;
	color: var(--text-gray);
	font-size: 14px;
}

/* Crypto donation button */
.donate-crypto-wrapper {
	margin-bottom: 30px;
}

.btn-crypto {
	display: block;
	width: 100%;
	padding: 16px 24px;
	background-color: var(--primary-blue);
	color: var(--white);
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color var(--transition-fast);
}

.btn-crypto:hover {
	background-color: var(--dark-blue);
}

/* Divider */
.donate-divider {
	width: 100%;
	height: 1px;
	background-color: #e0e0e0;
	margin: 30px 0;
}

/* Logo */
.donate-logo-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
}

.donate-logo-wrapper .donate-logo {
	max-width: 200px;
	height: auto;
}

/* Disclaimer text */
.donate-disclaimer {
	font-size: 12px;
	line-height: 1.7;
	color: #000000CC;
}

.donate-disclaimer p {
	margin: 0 0 12px 0;
}

.donate-disclaimer p:last-child {
	margin-bottom: 0;
}

.donate-disclaimer a {
	color: var(--primary-red);
	text-decoration: underline;
}

.donate-disclaimer a:hover {
	color: var(--dark-blue);
}

/* Donate Page Responsive - Tablet */
@media (max-width: 1200px) {
	.donate-content-wrapper {
		width: 55%;
		padding: 30px 30px 30px 0;
	}
}

@media (max-width: 1024px) {
	.donate-content-wrapper {
		width: 60%;
		padding: 30px 20px 30px 0;
	}

	.donate-content {
		padding: 40px 45px;
	}

	.donate-title {
		font-size: 36px;
	}

	.donate-subtitle {
		font-size: 16px;
	}
}

/* Donate Page Responsive - Mobile */
@media (max-width: 768px) {
	.donate-section {
		min-height: auto;
	}

	.donate-bg-image {
		position: relative;
		height: 400px;
	}

	/* Show mobile image, hide desktop image */
	.donate-image-desktop {
		display: none;
	}

	.donate-image-mobile {
		display: block;
	}

	.donate-content-wrapper {
		width: 100%;
		max-width: 100%;
		padding: 20px;
		margin-top: -60px;
	}

	.donate-content {
		max-width: 100%;
		padding: 40px 30px;
		border-radius: 12px;
	}

	.donate-title {
		font-size: 32px;
	}

	.donate-subtitle {
		font-size: 15px;
		margin-bottom: 25px;
	}

	.donate-logo-wrapper .donate-logo {
		max-width: 160px;
	}
}

@media (max-width: 480px) {
	.donate-content-wrapper {
		padding: 15px;
		margin-top: -40px;
	}

	.donate-content {
		padding: 30px 20px;
	}

	.donate-title {
		font-size: 28px;
	}

	.donate-bg-image {
		height: 350px;
	}

	.donate-disclaimer {
		font-size: 11px;
	}

	.btn-crypto {
		font-size: 14px;
		padding: 14px 20px;
	}
}

/* ==========================================================================
   JOIN PAGE
   ========================================================================== */

.join-page {
	background-color: var(--white);
}

/* Join Hero Section */
.join-hero {
	position: relative;
	width: 100%;
}

.join-hero-image {
	width: 100%;
	height: 640px;
	overflow: hidden;
}

.join-hero-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/* Join Form Section */
.join-form-section {
	background-color: var(--white);
	padding: 0 0 100px;
}

.join-form-section .container {
	max-width: 1200px;
}

/* Card wrapper */
.join-card-wrapper {
	border-radius: 20px;
	overflow: hidden;
	margin-top: -80px;
	position: relative;
	z-index: 10;
	background-color: var(--white);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Quote banner */
.join-quote-banner {
	background-color: #da1333;
	padding: 50px 60px;
	text-align: center;
}

.join-quote {
	margin: 0 0 15px 0;
}

.join-quote p {
	font-size: 56px;
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
	margin: 0;
}

.join-quote-subtitle {
	font-size: 16px;
	color: var(--white);
	margin: 0;
	opacity: 0.9;
}

/* Form content area */
.join-form-content {
	padding: 50px 60px 60px;
}

.join-form-intro {
	font-size: 16px;
	color: var(--text-dark);
	text-align: center;
	margin: 0 0 40px 0;
	line-height: 1.6;
}

/* Form wrapper and placeholder */
.join-form-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

.join-form-placeholder {
	padding: 40px;
	background-color: var(--light-gray);
	border-radius: 8px;
	text-align: center;
	color: var(--text-gray);
	font-size: 14px;
}

/* Join Page Responsive - Tablet */
@media (max-width: 1024px) {
	.join-hero-image {
		height: 400px;
	}

	.join-card-wrapper {
		margin-top: -60px;
	}

	.join-quote-banner {
		padding: 40px 40px;
	}

	.join-quote p {
		font-size: 34px;
	}

	.join-form-content {
		padding: 40px 40px 50px;
	}
}

/* Join Page Responsive - Mobile */
@media (max-width: 768px) {
	.join-hero-image {
		height: 350px;
	}

	.join-card-wrapper {
		margin-top: -50px;
		border-radius: 15px;
	}

	.join-quote-banner {
		padding: 35px 25px;
	}

	.join-quote p {
		font-size: 28px;
	}

	.join-quote-subtitle {
		font-size: 14px;
	}

	.join-form-content {
		padding: 35px 25px 45px;
	}

	.join-form-section {
		padding: 0 0 70px;
	}

	.join-form-intro {
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.join-hero-image {
		height: 300px;
	}

	.join-card-wrapper {
		margin-top: -40px;
		border-radius: 12px;
	}

	.join-quote-banner {
		padding: 25px 20px;
	}

	.join-quote p {
		font-size: 22px;
	}

	.join-quote-subtitle {
		font-size: 13px;
	}

	.join-form-content {
		padding: 30px 20px 40px;
	}

	.join-form-section {
		padding: 0 0 60px;
	}

	.join-form-intro {
		font-size: 14px;
		margin-bottom: 30px;
	}
}

/* ==========================================================================
   HOME PAGE - EVENTS SECTION
   ========================================================================== */

.home-events-section {
	background-color: var(--white);
	min-height: 550px;
	display: flex;
	align-items: center;
}

.home-events-section .container {
	width: 100%;
}

.home-events-content {
	min-height: 550px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.home-events-section {
		min-height: 450px;
	}

	.home-events-content {
		min-height: 450px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.home-events-section {
		min-height: 400px;
	}

	.home-events-content {
		min-height: 400px;
	}
}

/* ===================================
   SINGLE NEWS PAGE
   =================================== */

.single-news-page {
	background-color: #f5f5f5;
}

/* News Hero Section */
.news-hero-section {
	background-color: var(--primary-blue);
	padding-top: 60px;
	text-align: left;
}

.news-hero-title {
	font-size: 88px;
	font-weight: 800;
	color: #fff;
	line-height: 1.2;
	margin: 0 0 20px 0;
}

/* Breadcrumb */
.news-breadcrumb {
	font-size: 14px;
	margin-bottom: 40px;
}

.news-breadcrumb:last-child {
	margin-bottom: 0;
}

.news-breadcrumb a {
	color: var(--primary-red);
	text-decoration: none;
	transition: opacity 0.3s ease;
}

.news-breadcrumb a:hover {
	opacity: 0.8;
}

.news-breadcrumb .breadcrumb-separator {
	color: rgba(255, 255, 255, 0.6);
	margin: 0 8px;
}

.news-breadcrumb .breadcrumb-current {
	color: rgba(255, 255, 255, 0.6);
}

/* News Hero Image */
.news-hero-image {
	max-width: 800px;
	margin: 0 auto;
}

.news-hero-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.news-hero-title {
		font-size: 40px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.news-hero-section {
		padding: 40px 0 60px;
	}

	.news-hero-title {
		font-size: 32px;
	}

	.news-breadcrumb {
		margin-bottom: 30px;
	}
}

/* News Highlights Section */
.news-highlights-section {
	background-color: var(--primary-blue);
}

.news-intro-text {
	font-size: 18px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin: 0 0 40px 0;
}

.news-highlights-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.news-highlight-item {
	background: radial-gradient(circle at top left, rgba(174,39,54,0.14), transparent 62%),
    linear-gradient(135deg, #0b2664 0%, #081f55 55%, #071b48 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 24px 30px;
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.news-highlight-item:hover {
    transform: translateY(-2px);
    border-color: rgba(174, 39, 54, 0.9);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
}

.news-highlight-item .highlight-number {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
}

.news-highlight-item .highlight-text {
	display: inline;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 1.6;
	margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.news-highlights-section {
		padding: 50px 0;
	}

	.news-intro-text {
		font-size: 17px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.news-highlights-section {
		padding: 40px 0;
	}

	.news-intro-text {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.news-highlight-item {
		padding: 20px 24px;
	}

	.news-highlight-item .highlight-text {
		font-size: 15px;
	}
}

/* News Content Section */
.news-content-section {
	background-color: var(--primary-blue);
	padding: 60px 0 80px;
}

.news-content-section .container, .news-highlights-section .container{
	width: 1200px;
}

.news-content {
	color: #fff;
}

.news-content iframe {
	width: 100%;
}

/* Summary - same as news-intro-text */
.news-content .summary {
	font-size: 18px;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.8;
	margin: 0 0 40px 0;
}

/* Article Highlights - same as news-highlights-list */
.news-content .article-highlights {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 0 0 40px 0;
}

.news-content .article-highlights .highlight-card {
	background: radial-gradient(circle at top left, rgba(174,39,54,0.14), transparent 62%),
	linear-gradient(135deg, #0b2664 0%, #081f55 55%, #071b48 100%);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 24px 30px;
	border-radius: 12px;
	box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.news-content .article-highlights .highlight-card:hover {
	transform: translateY(-2px);
	border-color: rgba(174, 39, 54, 0.9);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.52);
}

.news-content .article-highlights .highlight-text {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	line-height: 1.6;
}

.news-content .article-highlights p:empty {
	display: none;
}

/* CTA Section - same as content-cta shortcode */
.news-content .cta-section {
	margin: 40px auto;
	clear: both;
	max-width: 620px;
	background: linear-gradient(135deg, rgba(0, 39, 104, 0.95) 0%, rgba(0, 20, 60, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 50px 40px;
	text-align: center;
}

.news-content .cta-section .cta-headline {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.news-content .cta-section .cta-intro {
	margin: 0 0 30px 0;
}

.news-content .cta-section .cta-intro p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
}

.news-content .cta-section > p:last-child {
	margin: 0;
}

.news-content .cta-section .cta-button {
	display: inline-block;
	background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.14), transparent 60%),
	linear-gradient(145deg, rgba(174,39,54,0.95), rgba(134,24,36,0.98));
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 40px;
	border-radius: 30px;
	border: 1px solid rgba(255,255,255,0.22);
	text-decoration: none;
	transition: background-color 0.3s ease, transform 0.3s ease;
}

.news-content .cta-section .cta-button:hover {
	background-color: #a01c28;
	transform: translateY(-2px);
	opacity: 1;
}

.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6 {
	color: #fff;
	font-weight: 700;
	margin: 40px 0 20px 0;
	line-height: 1.3;
}

.news-content h2 {
	font-size: 28px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.news-content h3 {
	font-size: 24px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.news-content h4 {
	font-size: 20px;
}

.news-content p {
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 20px 0;
	color: rgba(255, 255, 255, 0.9);
	word-wrap: break-word;
	overflow-wrap: break-word;
	word-break: break-word;
}

.news-content a {
	color: #fff;
	text-decoration: underline;
	text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    text-decoration-color: #ae2736bf;
    transition: color 0.25s ease, text-decoration-color 0.25s ease, opacity 0.25s ease;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.news-content a:hover {
	opacity: 0.8;
}

.news-content ul,
.news-content ol {
	margin: 0 0 20px 20px;
	color: rgba(255, 255, 255, 0.9);
}

.news-content ul {
	list-style-type: disc;
}

.news-content ul li {
	list-style-type: disc;
}

.news-content li {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 10px;
}

.news-content blockquote {
	border-left: 4px solid #f4c542;
	padding-left: 20px;
	margin: 30px 0;
	font-style: italic;
	color: rgba(255, 255, 255, 0.9);
}

.news-content img {
	max-width: 100%;
	height: auto;
	margin: 30px 0;
}

/* Logo Shortcode */
.content-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
}

.content-logo img {
	max-width: 200px;
	height: auto;
	margin: 0;
}

/* Image Shortcode - Floating Images */
.content-image {
	margin: 10px 0 20px 0;
}

.content-image img {
	display: block;
	max-width: 100%;
	height: auto;
	object-fit: cover;
}

.content-image-left {
	float: left;
	margin-right: 30px;
	margin-bottom: 10px;
}

.content-image-right {
	float: right;
	margin-left: 30px;
	margin-bottom: 10px;
}

/* Clearfix for floated images */
.news-content::after {
	content: '';
	display: table;
	clear: both;
}

/* Special Image Standalone */
.special-image-standalone {
	display: flex;
	justify-content: center;
	margin: 30px 0;
}

.special-image-standalone img {
	width: 140px;
	height: auto;
	display: block;
}

/* Side by Side Image Left */
.side-by-side.special-image-left {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	margin: 30px 0;
}

.side-by-side.special-image-left figure {
	margin: 0;
	flex-shrink: 0;
	max-width: 400px;
}

.side-by-side.special-image-left img {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	max-height: 350px;
	margin: 0;
	border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.side-by-side.special-image-left .side-text {
	flex: 1;
}

.side-by-side.special-image-left .side-text p {
	margin: 0;
}

/* Image Right */
.image-2-right {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 30px;
	margin: 30px 0;
}

.image-2-right figure {
	margin: 0;
	flex-shrink: 0;
	max-width: 400px;
}

.image-2-right img {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	max-height: 350px;
	margin: 0;
	border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.image-2-right .side-text {
	flex: 1;
}

.image-2-right .side-text p {
	margin: 0;
}

/* Product Image Right */
.product-image-right {
	display: flex;
	flex-direction: row-reverse;
	align-items: flex-start;
	gap: 30px;
	margin: 30px 0;
}

.product-image-right figure {
	margin: 0;
	flex-shrink: 0;
	max-width: 400px;
}

.product-image-right img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 350px;
	margin: 0;
	border-radius: 14px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-image-right .side-text {
	flex: 1;
}

.product-image-right .side-text p {
	margin: 0;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.news-content-section {
		padding: 50px 0 70px;
	}

	.news-content .summary {
		font-size: 17px;
	}

	.news-content .cta-section {
		padding: 40px 30px;
	}

	.news-content .cta-section .cta-headline {
		font-size: 22px;
	}

	.news-content h2 {
		font-size: 26px;
	}

	.news-content h3 {
		font-size: 22px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.news-content-section {
		padding: 40px 0 60px;
	}

	.news-content .summary {
		font-size: 16px;
		margin-bottom: 30px;
	}

	.news-content .article-highlights .highlight-card {
		padding: 20px 24px;
	}

	.news-content .article-highlights .highlight-text {
		font-size: 15px;
	}

	/* CTA Section responsive */
	.news-content .cta-section {
		margin: 30px auto;
		max-width: 100%;
		padding: 30px 20px;
	}

	.news-content .cta-section .cta-headline {
		font-size: 18px;
	}

	.news-content .cta-section .cta-intro p {
		font-size: 15px;
	}

	.news-content .cta-section .cta-button {
		padding: 14px 30px;
		font-size: 13px;
	}

	.news-content h2 {
		font-size: 22px;
		margin: 30px 0 15px 0;
	}

	.news-content h3 {
		font-size: 20px;
	}

	.news-content p,
	.news-content li {
		font-size: 15px;
	}

	.content-logo {
		padding: 30px 0;
	}

	.content-logo img {
		max-width: 160px;
	}

	/* Floating images stack on mobile */
	.content-image-left,
	.content-image-right {
		float: none;
		margin: 20px 0;
	}

	.content-image img {
		width: 100% !important;
		height: auto !important;
	}

	/* Side by side images stack on mobile */
	.side-by-side.special-image-left,
	.image-2-right,
	.product-image-right {
		flex-direction: column;
		margin: 20px 0;
	}

	.side-by-side.special-image-left figure,
	.image-2-right figure,
	.product-image-right figure {
		max-width: 100%;
	}
}

/* Content CTA Box Shortcode */
.content-cta-box {
	margin: 40px auto;
	clear: both;
	max-width: 620px;
}

.content-cta-inner {
	background: linear-gradient(135deg, rgba(0, 39, 104, 0.95) 0%, rgba(0, 20, 60, 0.98) 100%);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 50px 40px;
	text-align: center;
}

.content-cta-title {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin: 0 0 20px 0;
	line-height: 1.3;
}

.content-cta-description {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 30px 0;
}

.content-cta-description strong {
	color: #fff;
	font-weight: 600;
}

.content-cta-button {
	display: inline-block;
	background: radial-gradient(circle at 30% 0%, rgba(255,255,255,0.14), transparent 60%),
    linear-gradient(145deg, rgba(174,39,54,0.95), rgba(134,24,36,0.98));
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 16px 40px;
	border-radius: 30px;
	border:1px solid rgba(255,255,255,0.22);
	text-decoration-color: var(--primary-red);
	transition: background-color 0.3s ease, transform 0.3s ease;
	text-decoration-color: var(--primary-red) !important;
    	text-underline-offset: 5px;
    	text-decoration-thickness: 2px !important;
}

.content-cta-button:hover {
	background-color: #a01c28;
	transform: translateY(-2px);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.content-cta-inner {
		padding: 40px 30px;
	}

	.content-cta-title {
		font-size: 22px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.content-cta-box {
		margin: 30px auto;
		max-width: 100%;
	}

	.content-cta-inner {
		padding: 30px 20px;
	}

	.content-cta-title {
		font-size: 18px;
	}

	.content-cta-description {
		font-size: 15px;
	}

	.content-cta-button {
		padding: 14px 30px;
		font-size: 13px;
	}
}

/* Content Q&A Shortcode */
.content-qa-item {
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
}

.content-qa-question {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding: 20px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	transition: background-color 0.3s ease;
}

.content-qa-question:hover {
	background: rgba(255, 255, 255, 0.03);
}

.content-qa-question .qa-icon {
	flex-shrink: 0;
	width: 0;
	height: 0;
	margin-top: 6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--primary-red);
	transition: transform 0.3s ease;
}

.content-qa-question[aria-expanded="false"] .qa-icon {
	transform: rotate(-90deg);
}

.content-qa-question[aria-expanded="true"] .qa-icon {
	transform: rotate(0deg);
}

.content-qa-question .qa-text {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
}

.content-qa-answer {
	display: none;
	padding: 0 24px 24px 42px;
}

.content-qa-answer.is-open {
	display: block;
}

.content-qa-answer-inner {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
}

.content-qa-answer-inner p {
	margin: 0 0 15px 0;
}

.content-qa-answer-inner p:last-child {
	margin-bottom: 0;
}

.content-qa-answer-inner a {
	color: #fff;
	text-decoration: underline;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.content-qa-question {
		padding: 16px 20px;
		gap: 10px;
	}

	.content-qa-question .qa-text {
		font-size: 15px;
	}

	.content-qa-answer {
		padding: 0 20px 20px 36px;
	}

	.content-qa-answer-inner {
		font-size: 14px;
	}
}

/* FAQ Accordion - same as Q&A shortcode */
.news-content .faq-accordion {
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 12px;
	overflow: hidden;
	background: radial-gradient(circle at top left, rgba(174,39,54,0.14), transparent 62%),
    linear-gradient(135deg, #0b2664 0%, #081f55 60%, #071b48 100%);
}

.faq-accordion:hover {
    border-color: rgba(174, 39, 54, 0.85);
}

.news-content .faq-accordion .faq-summary {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: 100%;
	padding: 20px 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	text-align: left;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	line-height: 1.5;
	transition: background-color 0.3s ease;
}

.news-content .faq-accordion .faq-summary:hover {
	background: rgba(255, 255, 255, 0.03);
}

.news-content .faq-accordion .faq-summary::before {
	content: '';
	flex-shrink: 0;
	width: 0;
	height: 0;
	margin-top: 6px;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 8px solid var(--primary-red);
	transition: transform 0.3s ease;
	transform: rotate(-90deg);
}

.news-content .faq-accordion.is-open .faq-summary::before {
	transform: rotate(0deg);
}

.news-content .faq-accordion .faq-content {
	display: none;
	padding: 0 24px 24px 42px;
}

.news-content .faq-accordion.is-open .faq-content {
	display: block;
}

.news-content .faq-accordion .faq-content p {
	font-size: 15px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 15px 0;
}

.news-content .faq-accordion .faq-content p:last-child {
	margin-bottom: 0;
}

.news-content .faq-accordion + p:empty,
.news-content .faq-accordion > p:empty {
	display: none;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.news-content .faq-accordion .faq-summary {
		padding: 16px 20px;
		gap: 10px;
		font-size: 15px;
	}

	.news-content .faq-accordion .faq-content {
		padding: 0 20px 20px 36px;
	}

	.news-content .faq-accordion .faq-content p {
		font-size: 14px;
	}
}

/* Related Posts Section */
.related-posts-section {
	background-color: var(--primary-blue);
	padding: 60px 0 80px;
}

.related-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.related-post-card {
	display: flex;
	flex-direction: column;
}

.related-post-image {
	display: block;
	overflow: hidden;
	margin-bottom: 20px;
}

.related-post-image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
	transform: scale(1.05);
}

.related-post-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.related-post-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 10px 0;
	text-transform: uppercase;
}

.related-post-title a {
	color: var(--primary-red);
	text-decoration: none;
	transition: color 0.3s ease;
}

.related-post-title a:hover {
	color: #ff4d5a;
}

.related-post-meta {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 12px;
}

.related-post-separator {
	margin: 0 8px;
}

.related-post-excerpt {
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 15px 0;
	flex: 1;
}

.related-post-link {
	font-size: 13px;
	font-weight: 600;
	color: var(--primary-red);
	text-decoration: none;
	transition: color 0.3s ease;
}

.related-post-link:hover {
	color: #ff4d5a;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.related-posts-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.related-posts-section {
		padding: 40px 0 60px;
	}

	.related-posts-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.related-post-image img {
		height: 220px;
	}

	.related-post-title {
		font-size: 16px;
	}
}

/* ==========================================================================
   FIXED BOTTOM SECTION
   ========================================================================== */

.fixed-bottom-section {
	position: fixed !important;
	bottom: 20px !important;
	right: 20px !important;
	left: auto !important;
	top: auto !important;
	z-index: 9999 !important;
	max-width: 200px;
	pointer-events: auto;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
	.fixed-bottom-section {
		bottom: 15px !important;
		right: 15px !important;
		max-width: 150px;
	}
}
