/**
 *  Theme Name: The Woks of Life
 *  Theme URI: https://www.oncecoupled.com
 *
 *  Description: Custom Genesis child theme. Made with love!
 *  Tags: custom-made, genesis, child-theme
 *
 *  Author: Once Coupled
 *  Author URI: https://www.oncecoupled.com
 *
 *  Version: 1.0.0
 *  Template: genesis
 *  Template Version: 3.0.2
 *
 *  Text Domain: once-coupled-the-woks-of-life
 *  License: All rights reserved.
 *
 *  Notes: primarily color, font, & layout changes to
 *  elements common to *most* of our themes. #4
 */

/* ================================
[ Common ]
================================ */

/* ---------- [ Table of Contents ] ---------- */

/**
 * Notes
 * - TOC (you are here)
 *
 * Navigation
 * - Nav: Footer
 * - Nav: Header
 * - Nav: Primary
 * - Nav: Privacy
 *
 * Containers
 *
 * Sections
 * - Header
 * - Before Header
 * - Site Footer
 *
 * Content
 * - Author Box
 * - Breadcrumbs
 * - Titles
 * - Entries
 */

/* ================================
[ Navigation ]
================================ */

/* ---------- [ Nav: Footer ] ---------- */

@media screen and (min-width: 1024px) {
	.nav-footer .menu,
	.nav-footer .sub-menu {
		text-align: center;
	}
}

.nav-footer .menu {
	display: flex;
	flex-wrap: wrap;
}

.nav-footer .sub-menu {
	display: block !important;
	opacity: 1 !important;
}

@media screen and (min-width: 1024px) {
	.nav-footer .menu > .menu-item > .sub-menu {
		position: relative;
		top: auto;
		left: auto;

		width: 100%;
		margin-left: 0;

		background: transparent;
	}
}

.nav-footer .menu-item {
	display: block;

	margin: 0 0 8px 0;
	justify-content: space-between;
	flex: 1;
	flex-basis: 49%;
}

@media screen and (min-width: 1024px) {
	.nav-footer .menu > .menu-item {
		flex-basis: calc(50% - 8px);
		margin-bottom: 0px;

		background-color: transparent;
	}
}

.nav-footer .menu > .menu-item:nth-of-type(2n + 1) {
	margin-right: 2%;
}

@media screen and (min-width: 1024px) {
	.nav-footer .menu > .menu-item:nth-of-type(2n + 1) {
		padding-left: 0;
		margin-right: 0px;

		flex-basis: 46%;
	}
}

.nav-footer .menu-item a {
	display: block;

	margin-bottom: 4px;
	padding: 14px 4px;

	color: #000;
	background-color: #fff;
	border-radius: 8px;
}

@media screen and (min-width: 1024px) {
	.nav-footer .menu-item a {
		padding: 2px 0 !important;

		background-color: transparent;
	}

	.nav-footer .sub-menu .menu-item a:hover {
		opacity: 1;
	}
}

.nav-footer .menu > .menu-item > a {
	padding: 4px;

	background-color: transparent;
}

@media screen and (min-width: 1024px) {
	.nav-footer .menu > .menu-item > a {
		font-size: 16px;
	}
}

/* ---------- [ Nav: Primary ] ---------- */

.nav-primary {
	position: fixed;
	z-index: 10;
	top: 56px;
	left: 0;
	width: 100%;
	display: none;
	overflow-y: scroll;
	min-height: calc(100vh - 94px); /* height of sticky header */
	background: #f9f5ed;
}

.admin-bar .nav-primary {
	/* height of admin bar (46px) + sticky header */
	top: 102px;
	height: calc(100vh - 103px);
}

@media screen and (min-width: 761px) {
	.admin-bar .nav-primary {
		top: 88px;
	}
}

@media screen and (min-width: 1024px) {
	.nav-primary,
	.admin-bar .nav-primary {
		top: 110px;
		height: auto;
		min-height: 120px;
	}

	.nav-primary {
		position: relative;
		left: auto;
		width: 100%;
		display: block;
		overflow: visible;
		padding-bottom: 0px;
		margin-top: -110px;
		background: #f9f5ed;
	}
}

@media screen and (max-width: 1023px) {
	.nav-primary .wrap {
		max-width: 100%;
	}
}

.nav-primary > .wrap,
.nav-primary .menu {
	height: 100%;
}

.nav-primary .menu {
	display: flex;
	flex-direction: column;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu {
		position: relative;
		z-index: 999;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		padding: 12px 0 11px;
		z-index: 99999999;
	}
}

/* [ Primary Nav - Menu Items ] */

.nav-primary .menu-item {
	position: relative;
	display: block;
	border-bottom: 1px solid #ede3db;
	color: #fff;
}

.nav-primary .menu-item.hide-on-mobile {
	display: none;
}

.nav-primary .menu-item.visible-on-mobile {
	border-bottom: 0px;
}

.nav-primary .menu-item.visible-on-mobile a {
	display: inline-block;
	margin: 10px 21px;
	text-align: center;
	padding: 12px;
}

.nav-primary .menu-item.visible-on-mobile a .emphasis {
	font-weight: bold;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu > .menu-item {
		margin-right: 15px;
	}

	.nav-primary .menu > .menu-item:nth-child(6) {
		margin-right: 0;
	}

	.nav-primary .menu-item {
		border: 0;
		text-align: center;
		font-size: 16px;
		margin-right: 25px;
		margin-left: 10px;
	}

	.nav-primary .menu-item.split {
		margin-left: auto; /* splitting main menu in half to have space for logo in the center */
		margin-right: 0;
	}

	.nav-primary .menu-item.split + .menu-item {
		margin-right: 5px;
	}

	.nav-primary .menu-item:first-of-type {
		margin-left: 0;
		cursor: pointer;
	}

	.nav-primary .menu-item.hide-on-mobile {
		display: inline-block;
	}

	.nav-primary .menu-item.visible-on-mobile {
		display: none;
	}
}

.nav-primary .menu-item.emphasis + .social-container {
	border-top: 0;
	padding-top: 0;
}

.nav-primary .primary-extras {
	display: flex;
	align-items: center;
	margin: 15px 24px 0;
	flex-wrap: wrap;
	justify-content: space-between;
}

.nav-primary .primary-extras > * {
	margin: 0 0 1em; /* add vertical space when items flex wrap to multi rows */
}

.nav-primary .primary-extras .cta-button {
	padding: 8px 12px;
	display: inline-block;
	font-family: "Crimson Text", serif;
	font-size: 20px;
	font-style: italic;
	font-feature-settings: "kern" 0;
	color: white;
	text-transform: lowercase;
	white-space: nowrap;
	letter-spacing: 0;
	line-height: 1;
}

.nav-primary .primary-extras .social {
	margin-right: 10px;
}

.nav-primary .primary-extras .social .social-icon {
	width: 32px;
	height: 32px;
	margin: 0;
	color: #222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 414px) {
	.nav-primary .primary-extras .social .social-icon {
		font-size: 28px;
		width: 39px;
		height: 38px;
		line-height: 38px;
	}

	.nav-primary .primary-extras .cta-button {
		font-size: 19px;
		background: #f75b2b;
	}
}

@media screen and (min-width: 1024px) {
	.nav-primary .primary-extras {
		display: none;
	}
}

.nav-primary .menu-item a {
	color: #222;
	padding: 0 48px 0 24px;
	position: relative;
	font-size: 18px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-family: "Proxima Nova", sans-serif;
	height: 50px;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu-item a {
		text-transform: lowercase;
		color: #000;
		min-height: auto;
		padding: 6px 20px 6px 10px;
		font-size: 24px;
		display: inline-block;
		letter-spacing: 0;
		font-family: "Crimson Text", serif;
		font-style: italic;
		font-feature-settings: "kern" 0;
		font-weight: 400;
	}

	.nav-primary .menu-item a:hover {
		opacity: 1;
		color: #f74c18;
	}

	.nav-primary .menu > .menu-item > a::before {
		content: "";
		position: absolute;
		top: 0;
		left: 12px;
		width: calc(100% - 30px);
		height: 2px;
		background-color: #000;
		transform: scaleX(0);
		transition: all 250ms ease;
	}

	.nav-primary .menu > .menu-item:first-child > a::before {
		left: 0;
		width: calc(100% - 18px);
	}

	.nav-primary .menu:first-of-type > .menu-item > a:hover {
		color: #000;
	}

	.nav-primary .menu:first-of-type > .menu-item > a:hover::before {
		transform: scaleX(1);
	}

	.nav-primary .menu > .menu-item:first-of-type > a {
		margin: 0;
		padding-left: 0;
	}

	.nav-primary .menu > .menu-item:last-of-type > a {
		margin: 0;
		padding-right: 0;
	}
}

@media screen and (min-width: 1024px) {
	.sticky-nav .nav-primary .search-form {
		display: block;
		max-width: 200px;
		margin-left: 9px;
	}
}

.nav-primary .search-form {
	display: none;
}

@media screen and (min-width: 1024px) {
	.sticky-nav .nav-primary .search-form {
		display: block;
	}
}

/* [ Primary Nav - Sub-menu ] */

.nav-primary .sub-menu-toggle {
	display: block;
	width: 100%;
	height: 50px;
	position: absolute;
	top: 4px;
	right: 0;
	padding: 0 24px;
	background: transparent;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu-toggle {
		right: -9px;
		pointer-events: none;
		width: 30px;
		height: 30px;
		display: block;
		padding: 0;
	}
}

.nav-primary .sub-menu-toggle .icon-chevron::before {
	margin: 0;
}

.nav-primary .sub-menu .sub-menu-toggle {
	position: absolute;
	height: 21px;
	top: 5px;
	color: #fff;
	right: 15px;
}

.nav-primary .sub-menu {
	display: none;
	background: #1c75bc;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu {
		background: #ebe5d9;
		width: 225px;
	}

	.nav-primary .sub-menu .sub-menu-toggle {
		color: #222;
	}

	.nav-primary .sub-menu .sub-menu {
		margin: 0 0 0 225px;
	}
}

.nav-primary .sub-menu .menu-item {
	border-color: transparent;
	font-weight: normal;
	text-transform: none;
	border-bottom: 1px solid #343434;
}

.nav-primary .sub-menu .menu-item:last-child {
	border-bottom: none;
}

.nav-primary .sub-menu .sub-menu {
	background-color: #1565a5;
}

.nav-primary .sub-menu .sub-menu .menu-item:first-child {
	border-top: 1px solid #343434;
}

@media screen and (min-width: 1024px) {
	.nav-primary .menu > .menu-item > .sub-menu {
		/* first sub-menu only */
		top: 35px; /* height of menu item */
		left: calc(50% - 8px);
		transform: translate(-50%);
		margin-left: 0;
		/* display: block !important; */
	}

	.nav-primary
		.menu
		> .menu-item
		> .sub-menu
		.sub-menu-toggle
		.icon-font::before {
		transform: translateY(3px) rotate(0deg) !important;
		font-size: 16px;
	}

	.nav-primary .sub-menu > .menu-item:first-child a {
		padding-top: 20px;
	}

	.nav-primary .sub-menu .sub-menu > .menu-item:first-child a {
		padding-top: 12px;
	}

	.nav-primary .sub-menu .sub-menu .menu-item:first-child {
		border-top: none;
	}

	.nav-primary .sub-menu .menu-item {
		border: 0;
		margin-right: 0;
		text-align: left;
		padding-left: 0;
		margin-left: 0;
	}
}

.nav-primary .sub-menu a {
	padding: 15px 48px 14px 40px;
	height: auto;
	text-transform: none;
	letter-spacing: 0;
	line-height: 1.1;
	font-family: "Crimson Text", serif;
	font-style: italic;
	font-feature-settings: "kern" 0;
	font-weight: 400;
	color: #fff;
	display: flex;
	align-items: center;
	font-size: 18px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu a {
		font-size: 12px;
		min-height: auto;
		height: auto;
		letter-spacing: 0px;
	}

	.nav-primary .menu .sub-menu a {
		padding: 12px 10px 12px;
		display: block;
		color: #222;
		font-size: 12px;
		font-style: normal;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-family: "Proxima Nova", sans-serif;
		font-weight: 800;
		text-align: center;
	}

	.nav-primary .menu .sub-menu .sub-menu a {
		color: #fff;
	}

	.nav-primary .menu .sub-menu a:hover {
		background: #1c75bc;
		color: #fff;
	}

	.nav-primary .menu .sub-menu a:hover + .sub-menu-toggle .icon-font {
		color: #fff;
	}

	.nav-primary .menu .sub-menu .sub-menu-toggle {
		pointer-events: none;
	}

	.menu-primary > .menu-item > .sub-menu > li:first-of-type::before,
	.menu-primary > .menu-item > .sub-menu > li:first-of-type::after {
		position: absolute;
		z-index: 9;
		top: 0;
		left: 0;
		width: 50%;
		content: "";
		-webkit-transition: 400ms;
		transition: 400ms;
		border-top: 8px solid #f9f5ed;
	}

	.menu-primary > .menu-item > .sub-menu > li:first-of-type::before {
		border-right: 8px solid transparent;
	}

	.menu-primary > .menu-item > .sub-menu > li:first-of-type::after {
		right: 0;
		left: auto;
		border-left: 8px solid transparent;
	}
}

.nav-primary .sub-menu .sub-menu a {
	padding-left: 60px;
}

@media screen and (min-width: 1024px) {
	.nav-primary .sub-menu .sub-menu a {
		padding-left: 0;
		margin-left: 0;
	}
}

/* ================================
[ Containers ]
================================ */

body {
	margin-top: 56px;
}

@media screen and (min-width: 1024px) {
	body {
		margin-top: 0;
	}
}

.admin-bar {
	margin-top: 56px;
}

@media screen and (min-width: 1024px) {
	.admin-bar {
		margin-top: 0 !important;
	}
}

@media screen and (min-width: 1024px) {
	.sidebar {
		width: 335px;
	}
}

.archive .content-sidebar-wrap {
	position: relative;
	border-top: 4px double #777;
	padding-top: 20px;
	margin-top: 20px;
}

/* ================================
[ Sections ]
================================ */

/* ---------- [ Header ] ---------- */

.site-header {
	position: fixed;
	left: 0;
	width: 100%;
	height: 56px; /* helps with JS consistency */
	z-index: 100;
	top: 0;
	-webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	-moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
	overflow-y: hidden;
}

@media screen and (min-width: 1024px) {
	.site-header {
		position: absolute;
		height: 135px; /* to overwrite inline styles added by js, if the user resizes their browser */
		overflow: visible;
		padding: 0px 20px 30px;
		top: auto;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
		box-shadow: none;
		background: transparent;
		max-width: 294px;
		height: 120px;
		margin: 0;
		padding: 0;
		top: unset;
		left: calc(50% - 150px);
	}
}

@media screen and (min-width: 1024px) {
	.admin-bar .site-header {
		top: auto;
	}
}

.site-header > .wrap {
	height: 58px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 0 10px;
}

@media screen and (min-width: 768px) {
	.site-header > .wrap {
		max-width: 100%;
	}
}

@media screen and (max-width: 767px) {
	.site-header > .wrap {
		max-width: 100%; /* remove padding so we can get the spacing pixel perfect (add space left of logo, but not right of search toggle, which has built-in padding) */
	}
}

@media screen and (min-width: 1024px) {
	.site-header > .wrap {
		height: auto;
		background-color: transparent;
		display: block;
	}
}

/* [ Logo ] */

.title-area {
	display: inline-block;
	margin-top: 3px;
	margin-left: 4px;
	flex: 1;
}

@media screen and (min-width: 1024px) {
	.title-area {
		width: 312px;
		height: 120px;
		position: relative;
		margin-left: calc(50% - 156px);
		margin-top: 0;
	}

	.title-area .site-title {
		height: 100%;
		margin-top: -33px;
	}
}

.title-area .site-title a {
	display: block;
	margin: 0;
	width: 100%;
	max-width: 217px;
	height: 42px;
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/mobile-logo.svg)
		no-repeat center;
	background-size: 100%;
	text-indent: -9999px;
	transition: all 400ms;
	margin-top: 6px;
}

@media screen and (min-width: 1024px) {
	.title-area .site-title a {
		display: block;
		width: 100%;
		max-width: 100%;
		height: 100%;
		background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/logo-desktop.svg)
			no-repeat center;
		background-size: contain;
		margin-top: 0px;
	}

	.title-area .site-title a:hover {
		transform: scale(1.05);
	}
}

.site-description {
	text-indent: -9999px;
	margin: 0;
	height: 0;
}

/* [ Search ] */

#header-search {
	position: absolute;
	top: 58px;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 9;
	background: #f75b2b;
}

@media screen and (min-width: 1024px) {
	#header-search {
		display: none;
	}
}

@media screen and (max-width: 1023px) {
	#header-search .search-form {
		max-width: 90%;
		margin-left: 5%;
		background-color: #fff;
		border: 0px;
		top: 15px;
	}
}

.search-submit-icon {
	top: 8px;
}

/* [ Toggles ] */

.site-header .generic-toggle {
	height: 53px;
	margin-right: 0;
	order: -1;
}

.site-header .search-toggle {
	order: 4;
	margin-left: 10px;
}

/* ---------- [ Before Header ] ---------- */

.before-header {
	display: none;
}

@media screen and (min-width: 1024px) {
	.before-header {
		display: flex;
		padding-top: 15px;
		padding-bottom: 20px;
		background-color: #f9f5ed;
	}

	.before-header > .wrap {
		display: flex;
		width: 100%;
		justify-content: space-between;
		align-items: center;
	}

	.before-header > .wrap > * {
		flex: 1;
	}

	.before-header .search-submit-icon {
		right: 2px;
		top: 0;
	}
}

.header-side {
	display: none;
}

@media screen and (min-width: 1024px) {
	.header-side {
		float: right;
		margin-top: -39px;
		display: block;
	}

	.header-text {
		display: inline-block;
		margin: 10px 0 0;
	}

	.header-text .emphasis {
		position: relative;
		text-transform: uppercase;
	}

	.header-text .emphasis::after {
		content: "";
		width: 52px;
		height: 2px;
		background-size: contain;
		display: inline-block;
		position: absolute;
		bottom: -2px;
		left: -3px;
	}

	.search-form input[type="submit"]:hover + meta + .search-submit-icon {
		opacity: 0.8;
		transform: scale(1.15);
	}
}

/* ---------- [ Site Footer ] ---------- */

.single .site-footer {
	margin-top: 32px;
}

.footer-columns {
	text-align: center;
	color: #000;
	position: relative;
}

.footer-columns > .wrap {
	max-width: 100%;
}

@media screen and (min-width: 768px) {
	.footer-columns > .wrap {
		max-width: calc(100% - 20px);
	}
}

@media screen and (min-width: 1024px) {
	.footer-columns {
		padding: 60px 0;
		border-top: 4px double #777;
	}
}

@media screen and (min-width: 1024px) {
	.footer-columns::before {
		position: absolute;
		top: -4px;
		width: 100%;
		height: 4px;
		display: block;
		content: "";
	}
}

.footer-columns .sm-col-1 {
	margin-bottom: 16px;
}

@media screen and (min-width: 1024px) {
	.footer-columns .sm-col-1 {
		width: 100%;
		margin-bottom: 0;
		text-align: center;
		align-items: center;
		justify-content: center;
	}
}

.footer-columns .footer-logo {
	padding-top: 0px;
	position: absolute;
	top: -17px;
	left: 0px;
}

@media screen and (min-width: 1024px) {
	.footer-columns .footer-logo {
		margin: 0px;

		flex-basis: 281px;
		border-right: 1px solid #d0d0d0;

		position: static;
	}
}

.footer-columns .footer-subscribe,
.after-entry .subscribe_widget {
	margin-bottom: 22px;
	width: calc(100% + 20px);
	border: 4px double #777;
	border-right: 0;
	border-left: 0;
	margin: 0 -10px;
	padding: 20px;
}

@media screen and (min-width: 1024px) {
	.footer-columns .footer-subscribe,
	.after-entry .subscribe_widget {
		margin: 0;
		border: 0;
		border-right: 4px double #777;
		width: 54%;
		overflow: hidden;
		padding: 0;
		display: flex;
		align-items: center;
		text-align: center;
	}
}

.footer-subscribe .pre-title,
.after-entry .subscribe .pre-title {
	font-family: "Crimson Text", serif;
	font-style: italic;
	font-feature-settings: "kern" 0;
	text-transform: lowercase;
	font-weight: 400;
	letter-spacing: 0;
	margin: 5px;
}

.footer-subscribe .title,
.after-entry .subscribe .title {
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	font-size: 28px;
}

.footer-subscribe input,
.after-entry .subscribe input {
	text-align: center;
	display: block;
	width: 100%;
	height: 52px;
	border-width: 2px;
}

.footer-subscribe input[type="email"],
.after-entry .subscribe input[type="email"],
.footer-subscribe input[type="text"],
.after-entry .subscribe input[type="text"] {
	max-width: 100%;
}

.footer-subscribe input[type="submit"],
.after-entry .subscribe input[type="submit"] {
	background: #1c75bc;
}

@media screen and (min-width: 1024px) {
	.footer-subscribe .subscribe,
	.after-entry .subscribe {
		width: 100%;
		text-align: center;
		justify-content: center;
		display: flex;
		align-items: center;
		padding-right: 25px;
	}

	.footer-subscribe .pre-title,
	.after-entry .subscribe .pre-title {
		font-size: 32px;
		margin: 0;
	}

	.footer-subscribe .title,
	.after-entry .subscribe .title {
		font-size: 36px;
		font-weight: 800;
		margin-bottom: 0;
	}

	.footer-subscribe .mc4wp-form-fields,
	.after-entry .subscribe .mc4wp-form-fields {
		padding: 0;
		width: 90%;
		margin: auto;
		display: flex;
	}

	.footer-subscribe input,
	.after-entry .subscribe input {
		width: 100%;
		font-size: 16px;
		margin: 0;
		text-align: left;
		color: #000;
		border: 2px solid;
	}

	.footer-subscribe input[type="email"],
	.after-entry .subscribe input[type="email"] {
		border-left: 0;
	}

	.footer-subscribe input[type="submit"],
	.after-entry .subscribe input[type="submit"] {
		margin-left: 10px;
		padding: 5px;
		text-align: center;
		color: #fff;
		border: none;
	}

	.footer-subscribe input[type="submit"]:hover,
	.after-entry .subscribe input[type="submit"]:hover {
		transform: scale(0.95);
	}

	.footer-subscribe ::-webkit-input-placeholder,
	.after-entry .subscribe ::-webkit-input-placeholder,
	.footer-subscribe :-ms-input-placeholder,
	.after-entry .subscribe :-ms-input-placeholder,
	.footer-subscribe :-moz-placeholder,
	.after-entry .subscribe :-moz-placeholder,
	.footer-subscribe ::-moz-placeholder,
	.after-entry .subscribe ::-moz-placeholder {
		color: #000;
	}
}

.footer-columns .footer-testimonial {
	width: 100%;
	font-size: 18px;
	font-style: italic;
	margin: 20px 0;
	color: #222;
	position: relative;
}

.footer-columns .footer-testimonial .quote-icon {
}

.footer-columns .footer-testimonial .quote-icon::before {
	content: "\201C";
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	width: 22px;
	height: 30px;
	font-size: 71px;
	color: #f75b2b;
	margin-top: 20px;
	display: block;
	text-align: center;
	margin: auto;
	letter-spacing: 0.025em;
}

.footer-columns .footer-testimonial h6 {
	font-family: "Proxima Nova", sans-serif;
	font-style: normal;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 0.1em;
	margin-top: 10px;
	display: inline-block;
}

@media screen and (min-width: 1024px) {
	.footer-columns .footer-testimonial {
		width: 43%;
		margin: 0;
		margin-left: 30px;
	}

	.footer-columns .footer-testimonial .quote-icon::before {
		line-height: 0.5;
		height: 10px;
	}
}

.site-footer .manual-features.top-highlighted-features > .wrap {
	max-width: calc(100% - 16px);
}

.site-footer .top-highlighted-features .articles-container .entry {
	margin: 0;
	width: calc(1 / 4 * 100% - 1px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 25%;
}

@media screen and (min-width: 1024px) {
	.site-footer .top-highlighted-features .articles-container {
		flex-wrap: nowrap;
	}

	.site-footer .top-highlighted-features a:hover {
		opacity: 1;
		background: #22222230;
	}
}

.footer-columns .footer-menu {
	margin-bottom: 10px;
	margin-top: 102px;
}

@media screen and (min-width: 1024px) {
	.footer-columns .footer-menu {
		margin: 0;
		flex-basis: 385px;
		padding-right: 35px;
		border-right: 1px solid #d0d0d0;
	}
}

@media screen and (min-width: 1024px) {
	.site-footer .top-highlighted-features .articles-container .entry > a {
		height: auto;
	}
}

.site-footer .top-highlighted-features .articles-container .entry > a img {
	width: 100%;
	min-width: 0;
	object-fit: cover;
	display: block;
}

.site-footer .top-highlighted-features .articles-container .entry-content {
	display: none;
}

.footer-bottom {
	background: #f9f5ed;
	padding: 64px 16px 16px;
	color: #222;
	text-align: center;
	font-family: "Proxima Nova", sans-serif;
	font-weight: 800;
	letter-spacing: 0.065em;
	font-size: 12px;
	line-height: 2;
	text-transform: uppercase;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.footer-bottom {
		padding: 28px 22px 28px;
		margin: 0 auto;
		text-align: center;
		font-size: 16px;
	}

	.site-footer .footer-bottom > .wrap {
		display: flex;
		align-items: center;
		justify-content: center;
		margin: auto;
		/* max-width: 100%; */
	}
}

.footer-bottom a {
	opacity: 1;
	text-transform: uppercase;
	font-size: 18px;
	color: #222;
}

@media screen and (min-width: 1024px) {
	.footer-bottom a {
		background-color: transparent;
		font-size: 16px;
	}

	.footer-bottom .menu-item a:hover {
		color: #757575;
		text-decoration: underline;
		text-decoration-color: #000;
	}
}

.footer-bottom .search-form {
	background-color: #fff;
	height: 52px;
}

.footer-bottom .search-form .search-form-input {
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	color: #222;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.22;
	padding: 20px 15px;
}

.footer-bottom .search-form .search-submit-icon {
	height: 52px;
	font-size: 24px;
	right: 20px;
	top: 2px;
}

@media screen and (min-width: 1024px) {
	.footer-bottom .footer-search {
		max-width: 170px;
	}

	.footer-bottom .search-form {
		height: 44px;
		padding-top: 6px;
	}

	.footer-bottom .search-form input[type="submit"] {
		width: 35px;
	}

	.footer-bottom .search-form .search-form-input {
		padding: 0;
		font-size: 14px;
		width: calc(100% - 35px);
	}
	.footer-bottom .search-form .search-submit-icon {
		height: 44px;
		font-size: 18px;
		right: 8px;
		width: 32px;
		top: 5px;
	}
}

.footer-bottom .footer-social {
	margin: 20px 0 10px;
}

.footer-bottom .social a {
	height: 47px;
	border: 2px solid #222;
	border-radius: 50%;
	width: 46px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}

.footer-bottom .social .icon-font {
	font-size: 20px;
	line-height: 1;
	margin: 0;
	padding: 0;
}

.footer-bottom .social .icon-font.icon-facebook,
.footer-bottom .social .icon-font.icon-instagram {
	top: 0;
}

.footer-bottom .footer-social .wrap {
	display: flex;
	justify-content: center;
}

@media screen and (min-width: 375px) {
	.footer-bottom .social a {
		width: 53px;
		height: 53px;
	}

	.footer-bottom .social .icon-font {
		font-size: 25px;
	}
}

@media screen and (min-width: 414px) {
	.footer-bottom .social a {
		margin-right: 10px;
	}
}

@media screen and (min-width: 1024px) {
	.footer-bottom .footer-social {
		width: 200px;
		margin: 0;
		flex-basis: 200px;
		flex: auto;
		max-width: 221px;
	}

	.footer-bottom .footer-social .wrap {
		text-align: left;
		margin-left: 20px;
		display: block;
	}

	.footer-bottom .social a {
		margin-right: 5px;
		width: 39px;
		height: 39px;
	}

	.footer-bottom .social .icon-font {
		font-size: 16px;
	}
}

.footer-nav .menu {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
	.footer-nav .menu {
		display: block;
	}
}

.nav-footer-bottom .menu {
	display: flex;

	flex-wrap: wrap;
}

@media screen and (min-width: 1024px) {
	.nav-footer-bottom .menu {
		display: block;
		padding-top: 5px;
	}
}

.nav-footer-bottom .menu-item {
	display: block;
	margin: 0 0 8px 0;
	justify-content: space-between;
	flex: 1;
	flex-basis: 49%;
	text-align: center;
	border-radius: 20px;
}

.nav-footer-bottom .menu-item:nth-child(2n) {
	margin-right: 2%;
}

@media screen and (min-width: 1024px) {
	.nav-footer-bottom .menu-item {
		background-color: transparent;
		display: inline-block;
		text-align: left;
		margin-right: 20px;
	}

	.nav-footer-bottom .menu-item:nth-child(2n) {
		margin-right: 20px;
	}
}

.nav-footer-bottom .menu-item a {
	width: 100%;
	padding: 15px 8px;
}

@media screen and (min-width: 1024px) {
	.nav-footer-bottom .menu-item a {
		padding: 0px;
	}

	.footer-bottom > .wrap {
		display: flex;
		justify-content: space-between;
	}

	.footer-bottom .footer-nav {
		position: relative;
		margin-left: 20px;
		flex: 1;
	}

	.footer-bottom .footer-text {
		flex-basis: 40%;
		text-align: right;
	}
}

.footer-bottom .footer-text {
	font-weight: normal;
	text-align: center;
}

.footer-bottom .footer-credits {
	margin-top: 5px;
	display: inline-block;
}

@media screen and (min-width: 1024px) {
	.footer-bottom .footer-credits {
		margin-top: 0px;
	}
}

.nav-privacy {
	display: inline-block;
}

.nav-privacy a {
	background-color: transparent;
	font-weight: 700;
	font-size: 12px;
}

@media screen and (min-width: 1024px) {
	.nav-privacy .menu-item a {
		font-size: 12px;
	}
}

.nav-privacy .menu-item a::after,
.copyright::after {
	content: "\2022";
	display: inline-block;
	margin: 0 4px 0 8px;
}

@media screen and (min-width: 1024px) {
	.footer-social-bar .social {
		margin-top: 3px;
		text-align: right;
		width: calc(100% - 94px);
	}
}

.footer-credits,
.footer-credits .nav-privacy a {
	font-size: 12px;
	font-weight: 700;
}

@media screen and (min-width: 375px) {
	.footer-credits,
	.footer-credits .nav-privacy a {
		font-size: 12px;
	}
}

@media screen and (min-width: 1024px) {
	.footer-credits,
	.footer-credits .nav-privacy a {
		font-size: 12px;
		padding: 0;
		letter-spacing: 0;
		text-transform: lowercase;
	}
}

@media screen and (min-width: 1112px) {
	.footer-credits,
	.footer-credits .nav-privacy a {
		letter-spacing: 0.05em;
		text-transform: uppercase;
	}
}

.footer-credits .copyright {
	margin: 0 0 2px;
}

@media screen and (min-width: 1024px) {
	.footer-credits .copyright {
		margin-bottom: 0;
	}
}

.footer-credits .copyright::after {
	content: none;
}

@media screen and (min-width: 1024px) {
	.footer-credits .copyright::after {
		content: "\2022";
	}
}

@media screen and (min-width: 1024px) {
	.footer-credits .nav-privacy {
		margin: 0;
	}

	.footer-credits,
	.footer-credits .copyright,
	.footer-credits .nav-privacy {
		display: inline-block;
	}
}

.site-credits-container {
	display: inline;
}

/* ================================
[ Content ]
================================ */

/* ---------- [ Author Box ] ---------- */

.author-box {
	background: #f9f5ed;
	padding: 25px 25px 20px 120px;
	font-size: 18px;
	margin: 10px 0;
}

@media screen and (min-width: 768px) {
	.author-box {
		padding: 32px 24px 32px 120px;
		font-size: 16px;
		text-align: left;
		position: relative;
		margin: 0 0 15px;
	}
}

.author-box p {
	font-style: italic;
}

.author-box a {
	text-decoration: none;
}

.author-box .avatar,
.avatars-disabled .author-box::before {
	margin: 0 auto 12px;
	border-radius: 100%;
}

.avatars-disabled .author-box::before {
	content: "";
	width: 100px;
	height: 100px;
	background: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/avatar-author.jpg)
		no-repeat center;
	background-size: 100px;
	background-color: #fff;
	margin-bottom: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
	.avatars-disabled .author-box::before {
		background-image: url(https://thewoksoflife.com/wp-content/themes/once-coupled-the-woks-of-life/assets/images/avatar-author@2x.jpg);
	}
}

.author-box .avatar {
	float: none;
	position: absolute;
	left: 34px;
	max-width: 80px;
}

@media screen and (min-width: 768px) {
	.author-box .avatar {
		position: absolute;
		top: 32px;
		left: 25px;
		margin-bottom: 0;
	}
}

.author-box-title {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 18px;
	letter-spacing: 0.2em;
}

@media screen and (min-width: 768px) {
	.author-box-title {
		margin-bottom: 0;
	}
}

/* ---------- [ Breadcrumbs ] ---------- */

.breadcrumb,
.breadcrumb a {
	margin-bottom: 12px;
	text-align: left;
	color: #222;
	font-size: 16px;
	letter-spacing: 0;
	text-transform: lowercase;
	font-style: italic;
	font-weight: 400;
	line-height: 1.2;
}

.breadcrumb strong {
	font-weight: 400;
	font-feature-settings: "kern" 0;
}

.breadcrumb .breadcrumb-link {
	text-decoration: none;
}

.breadcrumb .breadcrumb-separator {
	margin: 0 3px;
	font-weight: normal;
	color: #f75b2b;
	font-size: 12px;
	line-height: 1;
}

@media screen and (min-width: 1024px) {
	.breadcrumb a:hover {
		text-decoration: underline;
	}
}

/* ---------- [ Titles ] ---------- */

.archive-title,
h1.entry-title,
.section-title,
.widget-title {
	margin: 0 0 8px;
	line-height: 1;
}

.archive-title,
h1.entry-title {
	font-size: 32px;
}

@media screen and (min-width: 1024px) {
	.archive-title,
	h1.entry-title {
		font-size: 36px;
	}
}

.archive-title {
	color: #000;
	font-size: 25px;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
	.archive-title {
		text-align: left;
		font-size: 28px;
		color: #000;
		letter-spacing: 0.1em;
	}
}

.archive-recipe-link {
	text-align: center;
}

.archive-recipe-link.visible-on-mobile {
	margin: 0px 10px;
}

.archive-recipe-link a {
	display: inline-block;
	padding: 6px 108px 6px;
	max-width: 100%;
	width: 100%;
}

h1.entry-title {
	margin: 4px 0px 12px;
	text-align: left;
	letter-spacing: 0.1em;
}

.widget-title,
.widget .section-title {
	color: #000;
	margin-bottom: 12px;
}

.post-listing .content .entry-title,
.featured-posts .entry-title {
	margin: 0;
}

.post-listing .content .entry-title-link,
.featured-posts .entry-title-link {
	display: block;
	position: relative;
	padding: 8px 12px;
	color: #222222;
	text-align: center;
	font-family: "Crimson Text", serif;
	font-size: 20px;
	line-height: 1.1;
	text-transform: none;
	font-weight: 400;
	letter-spacing: 0;
	text-decoration: none;
}

@media screen and (min-width: 1024px) {
	.post-listing .content .entry-title-link,
	.featured-posts .entry-title-link {
		font-size: 18px;
		padding: 8px;
	}

	.post-listing .content .entry-title-link:hover,
	.featured-posts .entry-title-link:hover {
		opacity: 1;
		text-decoration: underline;
		transform: scale(1);
	}
}

.featured-posts .entry-title-link {
	font-size: 16px;
}

/* ---------- [ Post Info ] ---------- */

.post-info {
	display: block;
	font-family: "Barlow", sans-serif;
	font-style: normal;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.1em;
}

.post-info__top {
	border-bottom: 1px solid #e2e2e2;
	padding-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.post-info .post-author-comments {
	white-space: nowrap;
	display: flex;
	align-items: center;
	padding-right: 10px;
	margin-bottom: 8px;
	min-width: 190px;
}

@media screen and (min-width: 360px) {
	.post-info .post-author-comments {
		margin-bottom: 0;
	}
}

.post-info .post-author-comments .avatar {
	border-radius: 50%;
	overflow: hidden;
	margin-right: 8px;
	margin-bottom: 0;
	width: 32px;
	flex: 0 0 auto;
}

@media screen and (min-width: 768px) {
	.post-info .post-author-comments .avatar {
		margin-right: 10px;
	}
}

.post-info .post-author-comments__right {
	display: flex;
	flex-direction: column;
}

@media screen and (min-width: 768px) {
	.post-info .post-author-comments__right {
		flex-direction: row;
	}

	.post-info .post-author-comments__right > div {
		margin-right: 15px;
	}
}

.post-info .post-author-comments__right .emphasis {
	font-style: italic;
	text-transform: lowercase;
	font-family: "Crimson Text", serif;
	font-feature-settings: "kern" 0;
	line-height: 1;
	margin-right: 3px;
	display: inline-block;
	margin-top: 3px;
	margin-left: 0;
}

.post-info .post-author-comments__right a {
	color: #222;
}

.post-info .post-author-comments__right .icon-font {
	margin-left: 0;
	margin-right: 3px;
}

.post-info .entry-author-link,
.post-info .post-author-link {
	color: #222;
}

@media screen and (min-width: 1024px) {
	.post-info .post-author-comments a:hover {
		text-decoration: underline;
		color: #222;
	}
}

.post-nav {
	width: 100%;
}

@media screen and (min-width: 360px) {
	.post-nav {
		max-width: 102px;
	}
}

@media screen and (min-width: 414px) {
	.post-nav {
		max-width: none;
		width: auto;
	}
}

.post-info__bottom {
	padding-top: 18px;
	padding-bottom: 15px;
	display: flex;
	flex-wrap: wrap;
}

.post-info__bottom .entry-time {
	margin-right: 15px;
}

.post-info__bottom .meta-title {
	margin-right: 3px;
}

.post-info .post-nav .wprm-recipe-jump {
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.1em;
	min-height: 36px;
	line-height: 1.1;
	display: block;
	border: 1px solid #222;
	padding: 8px 12px;
	text-align: center;
}

@media screen and (min-width: 360px) {
	.post-info .post-nav .wprm-recipe-jump {
		text-align: left;
		padding: 4px 4px 4px 12px;
	}
}

@media screen and (min-width: 414px) {
	.post-info .post-nav .wprm-recipe-jump {
		padding: 8px 12px;
	}
}

.post-info .post-nav .wprm-recipe-jump .icon-font {
	color: #f75b2b;
	margin: 2px 0 0 0;
	font-size: 12px;
}

.post-info .post-nav .wprm-recipe-jump .icon-font::before {
	margin: 0;
}

@media screen and (min-width: 375px) {
	.post-info .post-nav .wprm-recipe-jump .icon-font::before {
		right: 2px;
	}
}

@media screen and (min-width: 414px) {
	.post-info .post-nav .wprm-recipe-jump .icon-font::before {
		right: 0;
	}
}

@media screen and (min-width: 1024px) {
	.post-info .post-nav .wprm-recipe-jump:hover {
		background: #222;
		border-color: #222;
		color: #fff !important;
		transform: scale(1.05);
	}

	.post-info .post-nav .wprm-recipe-jump:hover .icon-font {
		color: #fff !important;
	}
}

/* ---------- [ Entries ] ---------- */

.post-listing .content .entry,
.featured-posts .entry {
	margin-bottom: 18px;
	background: #fff;
}

@media screen and (min-width: 1024px) {
	.post-listing .content .entry,
	.featured-posts .entry {
		margin-bottom: 15px;
	}
}

.post-listing #genesis-content > div.entry {
	width: 100%; /* flexbox fix for when no posts are found (otherwise container would be 'article') */
	margin-left: 8px;
}

.post-listing .content .entry-image,
.featured-posts .entry-image {
	display: block;
}

/* Fix collapsing Margin for Headers and P in content entry area */

.content .entry-content p + h2,
.content .entry-content p + h3,
.content .entry-content p + h4,
.content .entry-content p + h5 {
	margin-top: 28px;
	margin-bottom: 20px;
}

.content .entry-content h2 + p,
.content .entry-content h3 + p,
.content .entry-content h4 + p,
.content .entry-content h5 + p {
	margin-top: 5px;
}
