.plans-container {
	padding: 2rem 0 !important;
}

.plans {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	margin-top: 7rem;
}

.plans .plan {
	background: white;
	color: #000;
	position: relative;
	text-align: center;
	padding: 0 2rem 3rem;
	box-shadow: 0px 0px 15px 1px rgba(0,0,0,0.35);
}

.plan__hex {
	background: var(--colors--blue-cerulean);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
	width: 100px;
	height: 115px;
	font-size: 1.75em;
	margin: 0 auto -20px;
	transform: translate3d(0,-50%,0);
}

.plan__title {
	color: var(--colors--blue-cerulean);
}

.plan p {
	color: #000;
	margin-bottom: 2rem;
}

.plan .wp-block-buttons {
	margin: 0 0 0;
	text-align: center;
}

.plan .wp-block-buttons > .wp-block-button {
	margin: 0 auto;
}

@media all and (min-width: 960px) {

	.plans-container {
		padding: 4rem 0 !important;
	}

	.plans {
		flex-direction: row;
		gap: 1rem;
		justify-content: space-between;
		align-items: flex-start;
	}

	.plan__hex {
		height: 151px;
		width: 131px;
		font-size: 2.625em;
		margin-bottom: -30px;
	}

	.plan {
		display: flex;
		flex-direction: column;
		flex: 1 0 32%;
		align-self: stretch;
	}

	.plans_count--4 .plan {
		flex: 1 0 23%;
	}

	.plan .wp-block-buttons {
		margin-top: auto;
	}

}

@media all and (min-width: 1280px) {

	.plans-container {
		padding: 6rem 0 !important;
	}

	.plans {
		gap: 1.65rem;
	}
}