/* 240 homepage Project 180 feature block (acf/two40-project-180). Scoped —
   enqueued only where the block appears, so .bone-card etc. don't leak to
   the Project 180 page (which has its own .bones-section .bone-card). */

/* ===== P180 FEATURE SECTION ===== */
.p180-section {
	background: #fff;
	padding: 100px 80px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.p180-section::after {
	content: "";
	position: absolute;
	bottom: -100px;
	right: -100px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
}

.p180-text {
	position: relative;
	z-index: 1;
}

.p180-badge {
	display: inline-block;
	background: rgba(52, 25, 95, 0.15);
	color: #34195f;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 24px;
	border: 1px solid rgba(52, 25, 95, 0.25);
}

.p180-title {
	font-family: "Mona Sans", sans-serif;
	font-size: clamp(36px, 4vw, 54px);
	color: #34195f;
	line-height: 1.15;
	margin-bottom: 24px;
}

.p180-desc {
	font-size: 17px;
	color: rgba(52, 25, 95, 0.85);
	line-height: 1.75;
	margin-bottom: 36px;
	font-weight: 400;
}

.p180-cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #34195f;
	color: #fff;
	padding: 16px 32px;
	border-radius: 8px;
	font-weight: 800;
	font-size: 15px;
	text-decoration: none;
	transition: all 0.2s;
}

.p180-cta:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(52, 25, 95, 0.3);
}

.p180-bones {
	position: relative;
	z-index: 1;
}

.bone-card {
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 14px;
	padding: 24px;
	margin-bottom: 16px;
	transition: transform 0.2s;
}

.bone-card:hover {
	transform: translateY(-2px);
}

.bone-emoji {
	font-size: 28px;
	margin-bottom: 8px;
}

.bone-title {
	font-family: "Mona Sans", sans-serif;
	font-size: 20px;
	color: #5450a0;
	margin-bottom: 6px;
	font-weight: 700;
}

.bone-subtitle {
	font-size: 12px;
	color: rgba(84, 80, 160, 0.65);
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.bone-desc {
	font-size: 13px;
	color: #444;
	line-height: 1.6;
	font-weight: 400;
}

@media (max-width: 1100px) {
	.p180-section {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 700px) {
	.p180-section {
		padding: 60px 24px;
	}
}
