/* You must define the $primary-color in your WordPress theme's style or a custom css file */
.takeaway {
	position: relative;
	margin: 1rem 0 2rem;
}
.takeaway::before,
.takeaway::after {
	content: '';
	z-index: 1;
	position: absolute;
}
.takeaway::before {
	width: 14rem;
	height: 3.25rem;
	border-top: 2px solid;
	border-left: 2px solid;
}
.takeaway::after {
	width: 12rem;
	height: 3.25rem;
	right: 0;
	bottom: 0;
	border-right: 2px solid;
	border-bottom: 2px solid;
}
.pink-text {
	color: #E91E63; /* Replace with your chosen pink color */
}
.font-semibold {
	font-weight: 600;
}
.pl-lg {
	padding-left: 1.5rem; /* Adjust to match your site's spacing */
}
.pr-lg {
	padding-right: 1.5rem; /* Adjust to match your site's spacing */
}
.pt-md {
	padding-top: 1rem; /* Adjust to match your site's spacing */
}
.pb-md {
	padding-bottom: 1rem; /* Adjust to match your site's spacing */
}