/* ── Campaign header ── */
.ps-campaign-header-wrap {
	position: relative;
	background-color: #12181a;
}

.ps-campaign-header-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	min-height: inherit;
	box-sizing: border-box;
}

.ps-campaign-header-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 30px;
}

.ps-campaign-header-logo a {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.ps-campaign-logo-img {
	max-height: 100px;
	width: auto;
	display: block;
}

.ps-campaign-logo-text {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
}

.ps-campaign-header-shop {
	display: flex;
	gap: 10px;
	align-items: center;
}

.ps-campaign-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: #e2730d;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.ps-campaign-icon-btn:hover {
	background-color: #c85f0b;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.ps-campaign-icon-btn svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}

.ps-campaign-header-bottom {
	display: flex;
	justify-content: flex-end;
	padding-bottom: 18px;
}

.ps-campaign-header-socials {
	display: flex;
	gap: 10px;
}

@media (max-width: 768px) {
	.ps-campaign-header-top {
		padding-top: 30px;
	}

	.ps-campaign-logo-img {
		max-height: 60px;
	}

	.ps-campaign-icon-btn {
		width: 40px;
		height: 40px;
	}

	.ps-campaign-header-bottom {
		padding-bottom: 12px;
	}
}

/* ── Campaign page ── */
.ps-campaign-page .container {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
}

.ps-campaign-page {
	padding-bottom: 60px;
	background: linear-gradient(180deg, #fff8f1 0%, #ffffff 26%, #fffaf6 100%);
}

.ps-campaign-hero {
	padding: 44px 0 32px;
}

.ps-campaign-hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 32px;
	align-items: center;
	padding: 36px;
	border-radius: 28px;
	background: linear-gradient(135deg, #4c250f 0%, #7f3210 55%, #c35f27 100%);
	box-shadow: 0 24px 60px rgba(73, 33, 11, 0.22);
	color: #fff;
}

.ps-campaign-hero__eyebrow {
	display: inline-flex;
	margin-bottom: 14px;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ps-campaign-hero h1 {
	margin: 0 0 14px;
	font-size: clamp(2rem, 4vw, 3.4rem);
	line-height: 1.05;
	color: #fff;
}

.ps-campaign-hero__subtitle,
.ps-campaign-hero__excerpt,
.ps-campaign-hero__excerpt p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.02rem;
	line-height: 1.8;
}

.ps-campaign-hero__actions {
	display: flex;
	gap: 14px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.ps-campaign-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 20px;
	border-radius: 999px;
	background: #fff;
	color: #7f3210;
	font-weight: 700;
	text-decoration: none;
}

.ps-campaign-button--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.4);
}

.ps-campaign-hero__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 22px;
	object-fit: cover;
	max-height: 440px;
}

.ps-campaign-layout {
	padding: 18px 0 0;
}

.ps-campaign-layout__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.ps-campaign-content,
.ps-campaign-card {
	background: #fff;
	border-radius: 24px;
	padding: 28px;
	box-shadow: 0 18px 44px rgba(70, 38, 16, 0.1);
}

.ps-campaign-content h2,
.ps-campaign-card h2 {
	margin-top: 0;
	color: #3f2412;
}

.ps-campaign-content__body {
	color: #5e4537;
	line-height: 1.85;
	font-size: 1rem;
}

.ps-campaign-sidebar {
	display: grid;
	gap: 20px;
	position: sticky;
	top: 20px;
}

.ps-campaign-card__form {
	margin-top: 18px;
}

.ps-campaign-card__form .wpforms-submit {
	background-color: #e2730d;
	color: #fff;
	border: none;
	border-radius: 999px;
	padding: 14px 28px;
	font-weight: 700;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.2s;
}

.ps-campaign-card__form .wpforms-submit:hover,
.ps-campaign-card__form .wpforms-submit:focus {
	background-color: #c8620a;
}

.ps-campaign-card__note {
	margin-bottom: 0;
	color: #6c4d3a;
	line-height: 1.7;
}

@media (max-width: 991px) {
	.ps-campaign-hero__grid,
	.ps-campaign-layout__grid {
		grid-template-columns: 1fr;
	}

	.ps-campaign-sidebar {
		position: static;
	}
}

@media (max-width: 575px) {
	.ps-campaign-hero {
		padding-top: 24px;
	}

	.ps-campaign-hero__grid,
	.ps-campaign-content,
	.ps-campaign-card {
		padding: 20px;
		border-radius: 20px;
	}
}