/*
Theme Name: AE Theme
Theme URI: https://www.anothereurope.org
Description: Custom theme for Another Europe is Possible
Version: 1.0
Author: Another Europe
Author URI: https://www.anothereurope.org
Text Domain: aetheme
*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Roboto', sans-serif;
	overflow-x: hidden;
	letter-spacing: 0.035em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Montserrat', sans-serif;
}

h2 {
	letter-spacing: 0.035em;
}

body.header-scrolled {
	padding-top: 130px;
}

@keyframes fadeInHeader {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeOutHeader {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(-20px);
	}
}

header {
	background: white;
	padding: 20px 0;
	position: relative;
	transition: all 0.3s ease;
}

header:not(.scrolled) .nav-wrapper {
	margin-top: -30px;
}


header.scrolled {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #00b875;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	z-index: 1000;
	border-radius: 0 0 50px 50px;
	animation: fadeInHeader 1s ease forwards;
}

header.scrolled.fading-out {
	animation: fadeOutHeader 1s ease forwards;
}

header.scrolled nav a {
	color: white;
}

header.scrolled nav a:hover {
	color: #222;
}

header.scrolled .decorative-shapes {
	opacity: 0;
}

header.scrolled .logo {
	padding-left: 40px;
}

header.scrolled .logo img {
	height: 60px;
}

header.scrolled .join-link {
	padding-left: 0;
}

header.scrolled .hamburger span {
	background: white;
}

header .container {
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	align-items: center;
	gap: 60px;
}

.logo {
	display: flex;
	align-items: center;
	z-index: 1001;
}

.logo img {
	height: 120px;
	width: auto;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
	margin-left: auto;
	margin-right: 30px;
}

.hamburger span {
	width: 25px;
	height: 3px;
	background: #333;
	transition: all 0.3s;
	border-radius: 2px;
	display: block;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
	opacity: 0;
}

.hamburger.active span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.nav-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 10;
	margin-left: auto;
	margin-right: 150px;
}

header.scrolled .nav-wrapper:not(.active) {
	margin-right: 50px;
}

nav {
	display: flex;
	gap: 60px;
}

nav a {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	font-weight: 600;
	transition: color 0.3s;
	font-family: 'Montserrat', sans-serif;
}

nav a:hover {
	color: #00B875;
}

.join-link {
	color: white !important;
	transition: color 0.3s;
	padding-left: 30px;
}

.join-link:hover {
	color: #00B875 !important;
}

.decorative-shapes {
	position: absolute;
	right: 0;
	top: 0;
	pointer-events: none;
	z-index: 5;
}

.decorative-shapes img {
	height: 400px;
	width: auto;
	display: block;
}

.hero {
	height: 80vh;
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top: 80px;
	margin-top: 50px;
	border-top-left-radius: 50px;
	overflow: visible;
	background-color: grey;
}

.hero-slideshow {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.hero-slide.active {
	opacity: 1;
}

.hero-content {
	position: relative;
	z-index: 15;
	margin: -100px auto 0;
	padding: 0 40px;
	width: 100%;
}

.hero h1 {
	color: white;
	font-size: 4rem;
	font-weight: 900;
	line-height: 1.1;
	max-width: 700px;
	background: #222;
	padding: 0 20px;
	display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	letter-spacing: 0.05em;
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
}

.cards {
	display: flex;
	height: 200px;
	gap: 40px;
	padding: 0 20px;
	margin-top: -120px;
	margin-bottom: 50px;
	position: relative;
	z-index: 10;
}

.card {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px;
	color: white;
	border-radius: 100px 0 100px 0;
	box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2);
}

.card h2 {
	font-size: 28px;
	font-weight: bold;
	line-height: 1.3;
	text-align: center;
}

.card-purple {
	background: #6969DB;
}

.card-red {
	background: #EF2D56;
}

.card-green {
	background: #00B875;
}

.newsletter-section {
	padding: 60px 20px 20px;
	margin: 60px 20px;
	background: rgba(0, 184, 117, 0.08);
	border-radius: 0 80px 0 80px;
	overflow: visible;
}

.newsletter-container {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.newsletter-container h2 {
	font-size: 32px;
	font-weight: 900;
	color: #333;
	margin-bottom: 15px;
}

.newsletter-container p {
	font-size: 16px;
	color: #666;
	margin-bottom: 30px;
	line-height: 1.6;
}

.newsletter-form {
	display: flex;
	max-width: 500px;
	margin: 30px auto 0;
}

.newsletter-form input {
	flex: 1;
	padding: 15px 20px 15px 30px;
	border: 2px solid #e0e0e0;
	border-right: none;
	border-radius: 50px 0 0 50px;
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	outline: none;
	transition: border-color 0.3s;
}

.newsletter-form input:focus {
	border-color: #00b875;
}

.newsletter-form button {
	padding: 15px 35px;
	background: #00b875;
	color: white;
	border: none;
	border-radius: 0 50px 50px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.3s;
	white-space: nowrap;
}

.newsletter-form button:hover {
	background: #009960;
}

.newsletter-social.social-links {
	margin-top: 30px;
	margin-bottom: 0;
	justify-content: center;
	gap: 25px;
	position: relative;
	top: 40px;
}

.newsletter-social.social-links a {
	background: #e0e0e0;
	color: #333;
	text-decoration: none;
	width: 50px;
	height: 50px;
	font-size: 22px;
}

.newsletter-social.social-links a:hover {
	background: #00b875;
	color: white;
	opacity: 1;
}

.campaigns-section {
	padding: 80px 50px;
	margin: 60px 0;
}

.campaigns-container {
	display: flex;
	gap: 40px;
	max-width: 1200px;
	margin: 0 auto;
}

.campaign-box {
	flex: 1;
	display: flex;
	flex-direction: column;
	background: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	border-radius: 50px;
	overflow: hidden;
	transition: transform 0.3s, box-shadow 0.3s;
}

.campaign-box:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.campaign-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	background-color: #ddd;
}

.campaign-content {
	padding: 40px;
	text-align: center;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.campaign-content h3 {
	font-size: 24px;
	font-weight: 900;
	color: #333;
	margin: 0 0 15px 0;
}

.campaign-content p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin: 0 0 25px 0;
	flex: 1;
}

.campaign-btn {
	display: inline-block;
	padding: 15px 40px;
	background: #00b875;
	color: white;
	text-decoration: none;
	border-radius: 50px 50px 50px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.3s;
}

.campaign-btn:hover {
	background: #009960;
}

.articles-section {
	padding: 80px 50px;
	margin: 0 auto;
}

.articles {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}

.article-thumbnail {
	background: white;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
	cursor: pointer;
}

.article-thumbnail:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.article-thumbnail {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	background-color: #ddd;
	display: block;
	border-radius: 100px 100px 0 100px;
	border: 1px solid #bbb;
}

.article-content {
	padding: 20px;
}

.article h3 {
	font-size: 26px;
	font-weight: 900;
	color: #333;
	line-height: 1.15;
	margin: 0 0 10px 0;
}

.article-excerpt {
	font-size: 14px;
	color: #666;
	line-height: 1.3;
	margin: 0;
}

.article-date {
	display: block;
	font-size: 12px;
	color: #999;
	margin-top: 8px;
}

.article h3 a {
	color: inherit;
	text-decoration: none;
}

.article h3 a:hover {
	color: #00b875;
}

/* Archive header */
.archive-header {
	max-width: 800px;
	margin: 0 auto 60px;
	text-align: center;
}

.archive-header h1 {
	font-size: 42px;
	font-weight: 900;
	color: #333;
	margin-bottom: 10px;
}

.archive-description {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

.no-results {
	text-align: center;
	font-size: 18px;
	color: #666;
	padding: 60px 0;
}

/* Pagination */
.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 80px;
	padding: 0 20px;
	flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	height: 48px;
	padding: 8px 16px;
	border-radius: 50px;
	font-family: 'Montserrat', sans-serif;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
}

.nav-links a.page-numbers {
	background: white;
	color: #333;
	border: 2px solid #e0e0e0;
}

.nav-links a.page-numbers:hover {
	background: #00b875;
	color: white;
	border-color: #00b875;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 184, 117, 0.3);
}

.nav-links span.page-numbers.current {
	background: #00b875;
	color: white;
	border: 2px solid #00b875;
	box-shadow: 0 4px 12px rgba(0, 184, 117, 0.3);
}

.nav-links span.page-numbers.dots {
	background: none;
	border: none;
	color: #999;
	min-width: 32px;
	padding: 0;
}

.nav-links a.prev,
.nav-links a.next {
	background: #333;
	color: white;
	border: 2px solid #333;
	padding: 8px 24px;
	gap: 8px;
}

.nav-links a.prev:hover,
.nav-links a.next:hover {
	background: #555;
	border-color: #555;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.nav-links a.prev i,
.nav-links a.next i {
	font-size: 12px;
}

.shapes-divider {
	text-align: center;
}

.shapes-divider img {
	height: 80px;
	width: auto;
}

.quote-section {
	padding: 20px 40px 100px;
	margin: 0 0 80px;
}

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

.quote-section blockquote {
	margin: 0;
	padding: 0;
	position: relative;
}

.quote-section blockquote::before,
.quote-section blockquote::after {
	font-size: 120px;
	font-weight: 900;
	line-height: 1;
	color: #00B875;
	opacity: 0.3;
	position: absolute;
}

.quote-section blockquote::before {
	content: "\201C";
	top: -20px;
	left: -50px;
}

.quote-section blockquote::after {
	content: "\201D";
	bottom: -60px;
	right: -50px;
}

.quote-section p {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.1;
	color: #333;
	text-align: center;
	margin: 0;
	font-family: 'Montserrat', sans-serif;
	text-wrap: balance;
}

.quote-link {
	display: inline-block;
	margin-top: 40px;
	padding: 15px 40px;
	background: #00b875;
	color: white;
	text-decoration: none;
	border-radius: 50px 50px 50px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.3s;
}

.quote-link:hover {
	background: #009960;
}

.quote-container {
	text-align: center;
}

/* On-load reveal animation for cards */
@keyframes revealUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.reveal-onload {
	animation: revealUp 0.8s ease both;
}

.card:nth-child(1) { animation-delay: 0s; }
.card:nth-child(2) { animation-delay: 0.15s; }
.card:nth-child(3) { animation-delay: 0.3s; }

/* Scroll reveal animations — scoped to .js so content is visible without JS */
.js .reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal.visible {
	opacity: 1;
	transform: translateY(0);
}

.js .reveal-left {
	opacity: 0;
	transform: translateX(-40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal-left.visible {
	opacity: 1;
	transform: translateX(0);
}

.js .reveal-right {
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.js .reveal-scale {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .reveal-scale.visible {
	opacity: 1;
	transform: scale(1);
}

/* Staggered delays for articles */
.article:nth-child(1) { transition-delay: 0s; }
.article:nth-child(2) { transition-delay: 0.1s; }
.article:nth-child(3) { transition-delay: 0.2s; }
.article:nth-child(4) { transition-delay: 0.1s; }
.article:nth-child(5) { transition-delay: 0.2s; }
.article:nth-child(6) { transition-delay: 0.3s; }

.campaign-box:nth-child(1) { transition-delay: 0s; }
.campaign-box:nth-child(2) { transition-delay: 0.2s; }

@keyframes hexSpin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Podcast section */
.podcast-section {
	padding: 80px 50px;
	background: #fff;
	border-top: 4px solid pink;
	border-bottom: 4px solid pink;
	position: relative;
	overflow: hidden;
}

.podcast-section::before,
.podcast-section::after {
	content: '';
	position: absolute;
	width: 200px;
	height: 200px;
	background: rgba(255, 192, 203, 0.22);
	clip-path: polygon(0% 50%, 25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%);
}

.podcast-section::before {
	top: -40px;
	right: -30px;
	width: 280px;
	height: 280px;
	animation: hexSpin 60s linear infinite;
}

.podcast-section::after {
	bottom: -60px;
	left: 5%;
	width: 220px;
	height: 220px;
	background: rgba(255, 192, 203, 0.16);
	animation: hexSpin 45s linear infinite reverse;
}

.podcast-hex {
	position: absolute;
	background: rgba(255, 192, 203, 0.18);
	clip-path: polygon(0% 50%, 25% 7%, 75% 7%, 100% 50%, 75% 93%, 25% 93%);
}

.podcast-hex:nth-child(1) {
	width: 120px;
	height: 120px;
	top: 20%;
	right: 12%;
	background: rgba(255, 192, 203, 0.25);
	animation: hexSpin 50s linear infinite;
}

.podcast-hex:nth-child(2) {
	width: 80px;
	height: 80px;
	bottom: 15%;
	right: 25%;
	background: rgba(255, 192, 203, 0.18);
	animation: hexSpin 70s linear infinite reverse;
}

.podcast-hex:nth-child(3) {
	width: 150px;
	height: 150px;
	top: -20px;
	left: 30%;
	background: rgba(255, 192, 203, 0.16);
	animation: hexSpin 55s linear infinite;
}

.podcast-hex:nth-child(4) {
	width: 60px;
	height: 60px;
	bottom: 25%;
	left: 15%;
	background: rgba(255, 192, 203, 0.22);
	animation: hexSpin 40s linear infinite reverse;
}

.podcast-container {
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.podcast-artwork {
	flex: 0 0 280px;
}

.podcast-artwork img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.podcast-content h2 {
	font-size: 32px;
	font-weight: 900;
	color: #333;
	margin-bottom: 15px;
}

.podcast-content p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 25px;
}

.podcast-links {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.podcast-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: #333;
	color: white;
	text-decoration: none;
	border-radius: 50px 50px 50px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	transition: background 0.3s, transform 0.3s;
}

.podcast-btn:hover {
	background: #555;
	transform: translateY(-2px);
}

.podcast-btn i {
	font-size: 18px;
}

@media (max-width: 768px) {
	header .container {
		position: relative;
	}

	.hamburger {
		display: flex;
		z-index: 1003;
	}

	header:not(.scrolled) .hamburger {
		margin-top: -30px;
	}

	.nav-wrapper {
		position: fixed;
		top: 0;
		right: -120%;
		min-height: 110vh;
		width: 280px;
		max-width: 100%;
		background: #00b875;
		flex-direction: column;
		align-items: flex-start;
		padding: 200px 40px 40px;
		gap: 20px;
		box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
		transition: right 0.3s ease;
		z-index: 1002;
		margin: 0;
	}

	header.scrolled .nav-wrapper {
		padding-top: 120px;
	}

	.nav-wrapper.active {
		right: 0;
	}

	nav {
		flex-direction: column;
		gap: 20px;
		width: 100%;
	}

	nav a {
		font-size: 18px;
		padding: 10px 0;
		width: 100%;
		color: white !important;
	}

	.join-link {
		padding-left: 0;
	}

	.join-btn {
		width: 100%;
		padding: 15px 35px;
	}

	.hero h1 {
		font-size: 36px;
	}

	.cards {
		flex-direction: column;
		height: auto;
	}

	.card {
		min-height: 140px;
	}

	.decorative-shapes img {
		height: 140px;
	}

	.articles {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.articles-section {
		padding: 40px 20px;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.newsletter-form input {
		border-right: 2px solid #e0e0e0;
		border-bottom: none;
		border-radius: 50px 50px 0 0;
		text-align: center;
		padding-left: 20px;
	}

	.newsletter-form button {
		border-radius: 0 0 50px 50px;
	}

	.newsletter-container h2 {
		font-size: 24px;
	}

	.newsletter-container p {
		font-size: 14px;
	}

	.campaigns-section {
		padding: 40px 20px;
	}

	.campaigns-container {
		flex-direction: column;
		gap: 30px;
	}

	.quote-section {
		padding: 60px 20px;
	}

	.quote-section p {
		font-size: 20px;
	}

	.quote-section blockquote::before,
	.quote-section blockquote::after {
		font-size: 80px;
	}

	.quote-section blockquote::before {
		left: -10px;
		top: -15px;
	}

	.quote-section blockquote::after {
		right: -10px;
		bottom: -45px;
	}

	.podcast-section {
		padding: 40px 20px;
	}

	.podcast-container {
		flex-direction: column;
		text-align: center;
		gap: 30px;
	}

	.podcast-artwork {
		flex: none;
		max-width: 220px;
	}

	.podcast-links {
		justify-content: center;
	}

	footer {
		padding: 40px 20px;
		border-radius: 100px 100px 0 0;
	}

	.footer-container {
		flex-direction: column;
		gap: 40px;
	}

	.footer-logo {
		flex: none;
		width: 150px;
	}

	.footer-columns {
		flex-direction: column;
		gap: 30px;
	}

	.footer-shapes {
		display: none;
	}

	.archive-header h1 {
		font-size: 28px;
	}

	.nav-links {
		margin-top: 50px;
		gap: 6px;
	}

	.nav-links a,
	.nav-links span {
		min-width: 42px;
		height: 42px;
		font-size: 14px;
		padding: 6px 12px;
	}

	.nav-links a.prev,
	.nav-links a.next {
		padding: 6px 16px;
	}
}

footer {
	background: #00b875;
	padding: 60px 40px;
	margin-top: 80px;
	overflow: hidden;
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	gap: 60px;
	align-items: flex-start;
	position: relative;
}

.footer-logo {
	flex: 0 0 120px;
}

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

.footer-columns {
	flex: 1;
	display: flex;
	gap: 80px;
	justify-content: flex-start;
}

.footer-shapes {
	position: absolute;
	right: -45px;
	bottom: -82px;
	height: 200%;
	width: auto;
	pointer-events: none;
}

.footer-column {
	min-width: 150px;
}

.footer-column h3 {
	color: white;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}

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

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

.footer-column a {
	color: white;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: opacity 0.3s;
	font-family: 'Montserrat', sans-serif;
}

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

.footer-column a[href="/privacy"] {
	font-size: 12px;
	line-height: 15px;
}

.social-links {
	display: flex;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.social-links li {
	margin-bottom: 0;
}

.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	transition: all 0.3s;
}

.social-links a:hover {
	background: white;
	color: #00B875;
	opacity: 1;
}

.social-links i {
	font-size: 18px;
}

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

	.logo img {
		height: 70px;
	}

	.social-links {
		flex-wrap: wrap;
		max-width: 110px;
	}
}

/* Single page styles */
.single-content {
	max-width: 800px;
	margin: 0 auto;
	padding: 60px 40px;
}

.single-content h1 {
	font-size: 42px;
	font-weight: 900;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.2;
}

.single-category {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #00b875;
	text-decoration: none;
	margin-bottom: 12px;
}

.single-category:hover {
	color: #009960;
}

.single-content .entry-content {
	font-size: 18px;
	line-height: 1.8;
	color: #444;
}

.single-content .entry-content p {
	margin-bottom: 1.5em;
}

.single-content .entry-content h2 {
	font-size: 28px;
	font-weight: 900;
	color: #333;
	margin: 2em 0 0.8em;
}

.single-content .entry-content h3 {
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin: 1.5em 0 0.6em;
}

.single-content .entry-content a {
	color: #00b875;
	text-decoration: underline;
}

.single-content .entry-content a:hover {
	color: #009960;
}

.single-content .entry-content .wp-block-file__button,
.single-content .entry-content .wp-block-file__button:hover {
	color: white;
	text-decoration: none;
}

.single-content .entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	margin: 1.5em 0;
}

.single-content .entry-content blockquote {
	border-left: 4px solid #00b875;
	padding: 15px 25px;
	margin: 1.5em 0;
	font-style: italic;
	color: #555;
	background: #f9f9f9;
	border-radius: 0 10px 10px 0;
}

.single-content .entry-content ul,
.single-content .entry-content ol {
	margin: 1em 0 1.5em 1.5em;
}

.single-content .entry-content li {
	margin-bottom: 0.5em;
}

.single-date {
	display: block;
	font-size: 13px;
	color: #999;
	margin-top: 3em;
}

@media (max-width: 768px) {
	.single-content {
		padding: 40px 20px;
	}

	.single-content h1 {
		font-size: 28px;
	}

	.single-content .entry-content {
		font-size: 16px;
	}

	.contact-cards {
		flex-direction: column;
	}
}

/* Contact page cards */
.contact-cards {
	display: flex;
	gap: 30px;
	margin-top: 10px;
}

.contact-card {
	flex: 1;
	background: white;
	border-radius: 100px 0 100px 0;
	padding: 60px 40px 40px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	font-size: 16px;
	line-height: 1.8;
	color: #444;
	position: relative;
}

.contact-card p {
	margin: 0;
}

.contact-card-icon {
	font-size: 24px;
	color: #00b875;
	position: absolute;
	top: 25px;
	right: 30px;
}

.contact-card a {
	color: #00b875;
	text-decoration: underline;
}

.contact-card a:hover {
	color: #009960;
}

/* WordPress block overrides */
.wp-block-button__link,
.wp-block-file__button {
	background-color: #00b875;
	color: white;
	border-radius: 50px 50px 50px 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 30px;
	transition: background 0.3s;
}

.wp-block-button__link:hover,
.wp-block-file__button:hover {
	background-color: #009960;
	color: white;
}

.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	border: 2px solid #00b875;
	color: #00b875;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background-color: #00b875;
	color: white;
}
