/* Table of Contents
- Defaults
	- Forms & Buttons
	- Links
	- Lists
	- Objects & Images
	- Paragraphs
	- Screen Reader Text
	- Tables
	- Typography
- Structure and Layout
	- Site Container
	- Site Inner
- Common Classes
	- Avatar
	- Genesis
	- Search Form
	- Titles
	- WordPress
- Skip Links
- Site Header
	- Title Area & Logo
- Site Navigation
	- Responsive Menu
	- Header Menu
	- Mobile Search
	- Footer Menu
- Archives
	- Custom Author Archives & Author Box
- Content Area
	- Entry Header & Entry Meta
	- Entry Content
	- Pagination
	- Entry Comments
- Widgets Areas & Widgets
	- Featured Content Widget
	- Sticky Sponsored Banner
	- Large Header Banner
	- Before Footer Widgets
	- Footer Widgets
- Site Footer
- Plugins
- Other Custom Styles
	- Homepage
	- Responsive Video Embeds
- Media Queries
- Print Styles
*/

/* Defaults
---------------------------------------------------------------------------- */

html {
	box-sizing: border-box;
}

*,
*::before,
*::after {
	box-sizing: inherit;
}

body {
	overflow-x: hidden;
}

/* Forms & Buttons
--------------------------------------------- */

input,
select,
textarea {
	background-color: var(--wp--preset--color--background);
	border: 1px solid var(--wp--preset--color--tertiary);
	border-radius: 0;
	color: var(--wp--preset--color--foreground);
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--medium);
	padding: 11px 10px 9px;
	width: 100%;
}

textarea {
	line-height: var(--wp--custom--line-height--body);
}

input:focus,
textarea:focus {
	border: 1px dashed var(--wp--preset--color--foreground);
	outline: none;
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.pagination a {
	-webkit-appearance: none;
	background-color: var(--wp--preset--color--primary);
	border: 0;
	border-radius: 5px;
	color: var(--wp--preset--color--background);
	cursor: pointer;
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	padding: 12px 20px;
	text-align: center;
	text-decoration: none;
	white-space: normal;
	width: auto;
}

.pagination a {
	font-size: var(--wp--preset--font-size--x-small);
}

button:focus,
button:hover,
input[type="button"]:focus,
input[type="button"]:hover,
input[type="reset"]:focus,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="submit"]:hover,
.button:focus,
.button:hover,
.pagination a:focus,
.pagination a:hover,
.pagination .active a {
	background-color: var(--wp--preset--color--secondary);
	border-width: 0;
	color: var(--wp--preset--color--background);
	text-decoration: none;
}

input[type="button"]:focus-visible,
button[type="reset"]:focus-visible,
input[type="submit"]:focus-visible {
	outline: 1px dashed var(--wp--preset--color--foreground);
}

input[type="checkbox"],
input[type="image"],
input[type="radio"] {
	width: auto;
}

::-ms-input-placeholder {
	color: var(--wp--preset--color--foreground-light);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--wp--preset--color--foreground-light);
	opacity: 1;
}

::placeholder {
	color: var(--wp--preset--color--foreground-light);
	opacity: 1;
}

.button {
	display: inline-block;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
	display: none;
}

/* Links
--------------------------------------------- */

a {
	text-decoration: underline;
}

a:focus,
a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

/* Lists
--------------------------------------------- */

.entry-comments ol,
.entry-comments ul,
nav ul,
section:not(.entry-content) ol,
section:not(.entry-content) ul {
	margin: 0;
	padding: 0;
}

.entry-content ol,
.entry-content ul {
	font-size: var(--wp--preset--font-size--medium-small);
}

li {
	list-style-type: none;
}

/* Objects & Images
--------------------------------------------- */

hr {
	border: 0;
	border-collapse: collapse;
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
	margin: 30px auto;
}

figure {
	margin: 0;
}

mark {
	background-color: var(--wp--preset--color--primary-light);
	color: var(--wp--preset--color--foreground);
}

embed,
iframe,
img,
object,
video,
.wp-caption {
	max-width: 100%;
}

iframe {
	margin: 0 auto 15px !important;
}

img {
	height: auto;
	vertical-align: top;
}

a img:focus,
a img:hover {
	opacity: 0.8;
}

/* Paragraphs
--------------------------------------------- */

p {
	margin-bottom: 25px;
	padding: 0;
}

/* Screen Reader Text
--------------------------------------------- */

.screen-reader-shortcut,
.screen-reader-text,
.screen-reader-text span {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus,
.screen-reader-shortcut:focus {
	background: var(--wp--preset--color--background);
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: var(--wp--preset--color--foreground);
	display: block;
	font-size: 1em;
	font-weight: var(--wp--custom--font-weight--semi-bold);
	height: auto;
	padding: 15px 23px 14px;
	text-decoration: none;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Tables
--------------------------------------------- */

table {
	border-collapse: collapse;
	border-spacing: 0;
	margin-bottom: 40px;
	width: 100%;
	word-break: break-all;
}

tbody {
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
}

td,
th {
	line-height: 2;
	text-align: left;
	vertical-align: top;
}

td {
	padding: 0.5em;
}

tr {
	border-top: 1px solid var(--wp--preset--color--tertiary);
}

th {
	font-weight: var(--wp--custom--font-weight--semi-bold);
	padding: 0.5em;
}

/* Typography
--------------------------------------------- */

b,
strong {
	font-weight: var(--wp--custom--font-weight--semi-bold);
}

em,
i {
	font-style: italic;
}

small {
	font-size: var(--wp--preset--font-size--small);
}


/* Structure and Layout
---------------------------------------------------------------------------- */

/* Site Container
--------------------------------------------- */

.site-container {
	word-wrap: break-word;
}

/* Site Inner
--------------------------------------------- */

.site-inner {
	clear: both;
	margin: 0 auto;
	max-width: 1180px;
	padding: 30px 20px 0;
}

.archive .site-inner {
	padding-bottom: 50px;
}

.first-block-align-full.full-width-content .site-inner {
	padding-top: 0;
}


/* Common Classes
---------------------------------------------------------------------------- */

/* Avatar
--------------------------------------------- */

.avatar,
.avatar img {
	border-radius: 50%;
	float: left;
}

.author-box .avatar,
.alignleft .avatar {
	margin-right: 20px;
}

.alignright .avatar {
	margin-left: 20px;
}

.comment .avatar {
	margin: 0 10px 0 0;
	max-width: 26px;
}

/* Genesis
--------------------------------------------- */

.after-entry,
.archive-description,
.author-box {
	margin-bottom: 30px;
}

.after-entry {
	margin-top: 50px;
}

.author-box {
	background-color: var(--wp--preset--color--quaternary);
	border: 0;
	overflow: hidden;
	padding: 30px 20px;
}

.author-box p:last-of-type {
	margin-bottom: 0;
}

.author-box-content {
	overflow: hidden;
}

.breadcrumb {
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	letter-spacing: 0.075em;
	line-height: var(--wp--custom--line-height--body);
	margin: 0 auto;
	max-width: 760px;
	text-transform: uppercase;
}

.breadcrumb a {
	text-decoration: none;
}

.breadcrumb a:focus,
.breadcrumb a:hover {
	opacity: 0.8;
	text-decoration: none;
}

.archive .breadcrumb {
	display: none;
	max-width: unset;
}

.search .breadcrumb {
	display: block;
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	letter-spacing: 0;
	margin: 0 0 20px;
	max-width: 1180px;
	text-transform: none;
}

/* Search Form
--------------------------------------------- */

.search-form {
	overflow: hidden;
}

li.menu-item.search {
	display: none;
}

.post-password-form input[type="submit"],
.search-form input[type="submit"] {
	margin-top: 10px;
}

.widget_search input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	padding: 0;
	position: absolute;
	width: 1px;
}

.search-form {
	position: relative;
}

.search-form input {
	font-size: var(--wp--preset--font-size--x-small);
	height: 40px;
}

.search-form input[type="submit"] {
	background: transparent;
	background-color: inherit !important;
	background-image: url('https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-search.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: 16px 16px;
	box-shadow: none;
	border: 0;
	border-radius: 0;
	clip: inherit;
	content: '';
	font-family: none;
	font-size: 0px;
	height: 16px;
	margin: 4px;
	opacity: 0.5;
	padding: 0;
	position: absolute;
	right: 8px;
	top: 8px;
	width: 16px;
}

.search-form input[type="submit"]:focus,
.search-form input[type="submit"]:hover {
	opacity: 0.5;
}

.site-header .search-form {
	margin-top: 10px;
	width: 100%;
}

.site-header .search-form input[type="search"] {
	border-radius: 8px;
}

.search-form-input {
	padding-right: 40px;
}

/* Titles
--------------------------------------------- */

.entry-title a,
.sidebar .widget-title a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.entry-title a:focus,
.entry-title a:hover {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

.widget-title {
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	letter-spacing: 0.075em;
	line-height: var(--wp--custom--line-height--body);
	margin-bottom: 15px;
	text-transform: uppercase;
}

/* WordPress
--------------------------------------------- */

a.aligncenter img {
	display: block;
	margin: 0 auto;
}

.alignleft {
	float: left;
	text-align: left;
}

.alignright {
	float: right;
	text-align: right;
}

a.alignleft,
a.alignnone,
a.alignright {
	max-width: 100%;
}

img.centered,
.aligncenter,
.singular-image {
	display: block;
	margin: 0 auto 30px;
}

img.alignnone,
.alignnone {
	margin-bottom: 15px;
}

a.alignleft,
img.alignleft,
.wp-caption.alignleft {
	margin: 0 20px 20px 0;
}

a.alignright,
img.alignright,
.wp-caption.alignright {
	margin: 0 0 20px 20px;
}

.entry-content p.wp-caption-text {
	margin-bottom: 0;
}

.entry-content .wp-audio-shortcode,
.entry-content .wp-playlist,
.entry-content .wp-video {
	margin: 0 0 30px;
}

.entry-content code {
	background-color: var(--wp--preset--color--quaternary);
}


/* Skip Links
---------------------------------------------------------------------------- */

.genesis-skip-link {
	margin: 0;
}

.genesis-skip-link .skip-link-hidden {
	display: none;
	visibility: hidden;
}

.genesis-skip-link li {
	height: 0;
	list-style: none;
	width: 0;
}

/* Display outline on focus */

:focus:not(:focus-visible) {
	outline: none
}

:focus-visible {
	outline-style: dashed;
	outline-color: var(--wp--preset--color--foreground);
	outline-offset: 1px;
}


/* Site Header
---------------------------------------------------------------------------- */

.site-header {
	animation: fadein 1s;
	background-color: var(--wp--preset--color--primary);
	padding: 5px 10px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 999;
}

@keyframes fadein {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}

}

body.logged-in.admin-bar header.site-header {
	position: unset;
}

.site-header .wrap {
	margin: 0 auto;
	min-height: 36px;
}

.site-header .wrap {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

/* Title Area & Logo
--------------------------------------------- */

.wp-custom-logo .title-area {
	max-width: 130px;
	width: 100%;
}

.wp-custom-logo .title-area img {
	width: auto;
}

.wp-custom-logo .custom-logo-link {
	display: block;
}

.site-title {
	font-size: var(--wp--preset--font-size--large);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: 1;
	margin-bottom: 0;
}

.site-title a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.site-description,
.wp-custom-logo .site-title {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}


/* Site Navigation
---------------------------------------------------------------------------- */

.genesis-nav-menu {
	clear: both;
	display: flex;
	line-height: 1;
	width: 100%;
}

.genesis-nav-menu .menu-item {
	display: block;
	float: none;
	position: relative;
}

.genesis-nav-menu a {
	color: var(--wp--preset--color--foreground);
	display: inline-block;
	font-size: var(--wp--preset--font-size--medium-small);
	font-weight: var(--wp--custom--font-weight--regular);
	outline-offset: -1px;
	padding-bottom: 12px;
	padding-top: 12px;
	text-decoration: none;
}

.genesis-nav-menu a:focus,
.genesis-nav-menu a:hover,
.genesis-nav-menu .current-menu-item>a,
.genesis-nav-menu .sub-menu .current-menu-item>a:focus,
.genesis-nav-menu .sub-menu .current-menu-item>a:hover {
	color: var(--wp--preset--color--primary);
}

.genesis-nav-menu .sub-menu,
.genesis-nav-menu .sub-menu a {
	width: 100%;
}

.genesis-nav-menu .sub-menu {
	clear: both;
	display: none;
	left: -9999px;
	margin: 0;
	opacity: 1;
	padding: 0 0 10px 20px;
	position: static;
	z-index: 99;
}

.genesis-nav-menu .sub-menu a {
	background-color: var(--wp--preset--color--background);
	display: inline-block;
	font-size: var(--wp--preset--font-size--small);
	font-weight: var(--wp--custom--font-weight--regular);
	position: relative;
	width: auto;
	word-wrap: break-word;
}

.genesis-nav-menu .menu-item:focus,
.genesis-nav-menu .menu-item:hover {
	position: relative;
}

.genesis-nav-menu .menu-item:hover>.sub-menu {
	display: block;
	left: auto;
	opacity: 1;
}

/* Responsive Menu
--------------------------------------------- */

.menu .menu-item:focus {
	position: static;
}

.menu .menu-item>a:focus+ul.sub-menu,
.menu .menu-item.sfHover>ul.sub-menu {
	left: auto;
	opacity: 1;
}

.js .nav-primary {
	display: none;
}

.nav-primary .genesis-nav-menu .menu-item:hover>.sub-menu {
	display: none;
}

.menu-toggle,
.search-toggle,
.sub-menu-toggle {
	background-color: transparent;
	border-radius: 50%;
	border-width: 0;
	box-shadow: none !important;
	display: block;
	overflow: hidden;
	text-align: center;
	visibility: visible;
}

.menu-toggle:focus,
.menu-toggle:hover,
.search-toggle:focus,
.search-toggle:hover,
.sub-menu-toggle:focus,
.sub-menu-toggle:hover {
	background-color: transparent;
	border-width: 0;
}

.menu-toggle {
	order: -1;
}

.menu-toggle,
.search-toggle {
	margin: 0;
	padding: 10px;
	position: relative;
	z-index: 1000;
}

.menu-toggle::before {
	content: ' ';
	background-image: url('https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-menu-open.svg');
	background-size: 20px 20px;
	float: right;
	height: 20px;
	width: 20px;
}

.search-toggle::before {
	content: ' ';
	background-image: url('https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-search-toggle.svg');
	background-size: 20px 20px;
	float: right;
	height: 20px;
	width: 20px;
}

.menu-toggle.activated::before,
.search-toggle.activated::before {
	content: ' ';
	background-image: url('https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-menu-close.svg');
	background-size: 20px 20px;
	height: 20px;
	width: 20px;
}

.sub-menu-toggle {
	align-items: center;
	display: flex;
	float: right;
	height: 25px;
	padding: 5px;
	position: absolute;
	right: 6px;
	top: 8px;
	z-index: 100;
}

.sub-menu .sub-menu-toggle {
	padding: 12px 10px;
	right: 1px;
}

.sub-menu-toggle::before {
	content: ' ';
	background-image: url('https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-down.svg');
	background-repeat: no-repeat;
	background-size: 15px 8px;
	display: inline-block;
	height: 8px;
	width: 15px;
}

.sub-menu-toggle.activated::before {
	transform: rotate(180deg);
}

/* Header Menu
--------------------------------------------- */

.nav-primary {
	clear: left;
	padding: 10px 0;
	position: relative;
	width: 100%;
}

.nav-primary ul {
	flex-direction: column;
	gap: 10px;
}

.nav-primary .genesis-nav-menu .sub-menu .menu-item:not(:last-of-type) {
	margin: 5px 0;
}

.nav-primary a {
	padding: 10px;
}

.nav-primary .sub-menu a {
	margin: 0;
}

.nav-primary .genesis-nav-menu a {
	color: var(--wp--preset--color--background);
}

.nav-primary .genesis-nav-menu a:focus,
.nav-primary .genesis-nav-menu a:hover,
.nav-primary .genesis-nav-menu .current-menu-item>a,
.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a:focus,
.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a:hover {
	color: var(--wp--preset--color--background);
}

.genesis-nav-menu .sub-menu a {
	background: none;
}

/* Mobile Search
--------------------------------------------- */

.mobile-search {
	clear: both;
	display: none;
	padding: 0 10px;
	width: 100%;
}

.mobile-search.activated {
	display: block;
}

.mobile-search .widget {
	margin-bottom: 0;
}

/* Footer Menu
--------------------------------------------- */

.nav-secondary {
	margin: 0 0 20px;
}

.nav-secondary .genesis-nav-menu {
	flex-wrap: wrap;
	justify-content: center;
	line-height: var(--wp--custom--line-height--body);
}

.nav-secondary .genesis-nav-menu .menu-item:not(:last-of-type) {
	margin: 0 5px 5px 0;
}

.nav-secondary .menu-item {
	display: inline-block;
}

.nav-secondary a {
	padding: 8px 12px;
}


/* Archives
--------------------------------------------- */

.archive-title {
	font-size: var(--wp--preset--font-size--x-large);
}

.archive-description p {
	max-width: 760px;
}

.search .archive-description {
	display: none;
}

.archive-description p:last-child {
	margin-bottom: 0;
}

.archive:not(.author) .content {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 25px;
}

.archive article {
	margin-bottom: 0;
}

.archive .entry-title {
	font-size: var(--wp--preset--font-size--medium-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin-bottom: 0;
}

.archive .entry-content p,
.archive .entry-footer,
.post-type-archive-web-story .entry-content {
	display: none !important;
	margin: 0;
}

.archive article img,
.archive article picture {
	display: block;
	margin-bottom: 8px;
}

.archive.paged .archive-description p,
.archive.paged:not(.search) .content::before {
	display: none;
}

/* Custom Author Archives & Author Box
--------------------------------------------- */

.archive.author .archive-description {
	margin-bottom: 20px;
}

.archive.author .archive-title {
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	letter-spacing: 0.075em;
	line-height: var(--wp--custom--line-height--body);
	margin-bottom: 0;
	text-transform: uppercase;
}

.archive.author .archive-title::before {
	content: 'Articles by ';
}

.author.archive h2.category-title {
	font-size: var(--wp--preset--font-size--medium);
	margin-bottom: 15px;
}

.author.archive .content ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin: 0 0 30px;
	padding-left: 30px;
}

.author.archive .content ul li {
	list-style-type: disc;
}

.archive.author .pagination {
	display: none;
}

.archive.author .site-inner {
	max-width: 800px;
}

.archive.author .content {
	display: block;
}

.archive.author .content article .entry-image-link,
.archive.author .content article img {
	display: none;
}

.archive.author .content article .entry-title {
	line-height: var(--wp--custom--line-height--body);
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
}

.archive.author .content article .entry-title::before {
	color: var(--wp--preset--color--primary);
	content: "•";
	font-size: 30px;
	left: 8px;
	line-height: 1;
	position: absolute;
	top: -3px;
}

.archive.author .content article .entry-title a {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

.archive.author .content article .entry-title a:focus,
.archive.author .content article .entry-title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}

.archive.author .author-box {
	background: none;
	margin: 20px auto 50px;
	padding: 0;
}

.archive.author .author-box .avatar {
	margin-right: 30px;
}

.author-box-title {
	font-size: var(--wp--preset--font-size--large);
	margin-bottom: 5px;
}

.author-box-content {
	font-size: var(--wp--preset--font-size--medium-small);
}

.author-box-content p {
	margin-bottom: 25px;
}

.author-box .contact-links {
	display: flex;
	gap: 10px;
}

.single-post .author-box .more-about-author {
	display: none;
}


/* Content Area
---------------------------------------------------------------------------- */

/* Entry Header & Entry Meta
--------------------------------------------- */

.page .entry-header,
.single-post .entry-header {
	margin-bottom: 16px;
}

.single-post .entry-title {
	margin-bottom: 10px;
}

.entry-header .entry-meta {
	display: inline-block;
	margin: -4px 0 0 10px;
	position: relative;
}

.entry-header:has(.expert-verification) .entry-meta {
	margin-top: 10px;
}

time.entry-time {
	display: block;
	font-size: var(--wp--preset--font-size--x-small);
	opacity: 0.8;
}

p.entry-subtitle {
	font-size: var(--wp--preset--font-size--medium-small);
	font-style: italic;
	font-weight: var(--wp--custom--font-weight--medium);
	margin-bottom: 16px !important;
}

.entry-header p {
	margin-bottom: 0;
}

.first-block-align-full.full-width-content .entry-header {
	margin-bottom: 0;
}

p.entry-meta {
	font-size: var(--wp--preset--font-size--small);
	margin-bottom: 0;
}

.entry-footer .entry-meta {
	border-top: 0;
	padding-top: 0;
}

.entry-categories,
.entry-tags {
	display: block;
}

/* Entry Content
--------------------------------------------- */

.content {
	position: relative;
}

.entry {
	margin-bottom: 50px;
}

.last-block-align-full .entry {
	margin-bottom: 0;
}

.entry-content ol>li {
	list-style-type: decimal;
	margin-bottom: 10px;
}

.entry-content ul>li {
	list-style-type: disc;
	margin-bottom: 10px;
}

.entry-content ol ul>li,
.entry-content ul ul>li {
	list-style-type: circle;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
	margin-top: 0;
}

/* Pagination
--------------------------------------------- */

.pagination {
	clear: both;
}

.pagination div,
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px auto 40px;
	padding: 0;
}

.comments-pagination div {
	margin: 30px auto 40px;
}

.pagination ul li {
	margin: 0 8px 15px 0;
}

.adjacent-entry-pagination {
	margin-bottom: 0;
}

.pagination a {
	font-size: var(--wp--preset--font-size--xx-small);
	padding: 5px 10px;
}

.comments-pagination a {
	padding: 9px 12px;
}

/* Entry Comments
--------------------------------------------- */

.entry-comments {
	font-size: var(--wp--preset--font-size--medium-small);
	margin-bottom: 50px;
	margin-top: 80px;
}

.entry-pings,
.entry-pings .reply {
	display: none;
}

.entry-comments h3:first-of-type {
	display: none;
}

.comment-reply-title {
	display: block !important;
	font-size: var(--wp--preset--font-size--large);
	margin-bottom: 10px;
}

#cancel-comment-reply-link {
	display: block;
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--regular);
	line-height: var(--wp--custom--line-height--body);
	margin-top: 10px;
}

#cancel-comment-reply-link::before {
	background-image: url(https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-menu-close.svg);
	background-size: 12px 9px;
	content: "";
	display: inline-block;
	height: 9px;
	margin-right: 5px;
	width: 12px;
}

.comment-respond {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	margin: 0 0 80px;
	padding: 20px;
}

li.comment .comment-respond {
	margin-bottom: 30px;
	margin-top: 30px;
}

.comment-respond,
.comment-reply {
	font-size: var(--wp--preset--font-size--x-small);
}

.comment-form {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.comment-respond p {
	margin-bottom: 0;
}

p.comment-form-comment,
p.comment-form-author,
p.comment-form-email {
	flex-basis: 100%;
}

.comment-form-comment textarea {
	max-height: 100px;
}

.comment-content p {
	margin-bottom: 20px;
}

.comment-list li {
	padding: 20px 0 0 20px;
	position: relative;
}

.comment-list li.depth-1:first-of-type::before {
	content: "Comments";
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--large);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	position: absolute;
	top: -30px;
	width: 100%;
}

.comment-reply a::before {
	background-image: url('https://breakingmuscle.com/wp-content/themes/breaking-muscle/images/icon-reply.svg');
	background-size: 12px 9px;
	content: "";
	display: inline-block;
	height: 9px;
	margin-right: 5px;
	width: 12px;
}

.comment-list .depth-1 {
	margin-bottom: 10px;
	padding-left: 0;
}

.comment-header {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
	justify-content: space-between;
	margin-bottom: 15px;
}

span.comment-author-name {
	font-weight: var(--wp--custom--font-weight--semi-bold);
}

.comment-content {
	clear: both;
}

.comment-content ul > li {
	list-style-type: disc;
}

.comment-respond label {
	display: block;
	font-weight: var(--wp--custom--font-weight--semi-bold);
	margin-bottom: 5px;
}

.comment-header p {
	margin-bottom: 0;
}

.comment-form-cookies-consent label {
	display: inline;
	padding-left: 5px;
}

.comment-time {
	font-size: var(--wp--preset--font-size--xx-small);
}

.comment-time-link,
.comment-time-link:focus,
.comment-time-link:hover {
	text-decoration: none;
}

.entry-comments article {
	border: 1px solid var(--wp--preset--color--tertiary);
	padding: 20px;
}

.comment-list li.bypostauthor>article {
	border-left: 2px solid var(--wp--preset--color--primary);
}

p.comment-form-subscriptions {
	margin-left: -8px;
}

p.form-submit {
	width: 100%;
}


/* Widget Areas & Widgets
---------------------------------------------------------------------------- */

.widget {
	font-size: var(--wp--preset--font-size--small);
	margin-bottom: 50px;
}

.after-entry .widget {
	font-size: var(--wp--preset--font-size--medium);
}

.widget p {
	margin-bottom: 20px;
}

.widget p:last-child,
.widget ul > li:last-of-type {
	margin-bottom: 0;
}

.widget ul > li:last-of-type {
	padding-bottom: 0;
}

.widget ol > li {
	list-style-position: inside;
	list-style-type: decimal;
	padding-left: 20px;
	text-indent: -20px;
}

.widget li li {
	border: 0;
	margin: 0 0 0 30px;
	padding: 0;
}

/* Featured Content Widget
--------------------------------------------- */

.sidebar .featured-content .widget-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px 20px;
	padding-top: 36px;
	position: relative;
}

.sidebar .featured-content .widget-wrap:first-of-type {
	gap: 15px;
}

.sidebar .featured-content .widget-title {
	position: absolute;
}

.sidebar .featured-content .widget-wrap a {
	margin: 0;
}

/* Sticky Sponsored Banner
--------------------------------------------- */

.sticky-sponsored-banner {
	background-color: #fafafa;
	border-bottom: 1px solid var(--wp--preset--color--quaternary);
	clear: both;
	left: 0;
	position: sticky;
	text-align: center;
	top: 50px;
	width: 100%;
	z-index: 999;
}

.sticky-sponsored-banner .widget-title {
	display: none;
}

.sticky-sponsored-banner .widget {
	margin-bottom: 0;
}

.sticky-sponsored-banner .custom-html-widget {
	align-items: center;
	display: flex;
	gap: 10px;
    justify-content: center;
	margin: 0 auto;
	padding: 3px 20px;
	text-align: center;
}

.sticky-sponsored-banner p {
	margin-bottom: 0;
}

.sticky-sponsored-banner a {
	color: var(--wp--preset--color--foreground);
    font-size: var(--wp--preset--font-size--x-small);
	margin: 0 !important;
	padding: 0 !important;
	text-decoration: none;
}

body.logged-in.admin-bar .sticky-sponsored-banner {
	position: unset;
}

/* Large Header Banner
--------------------------------------------- */

.large-header-banner .widget-title {
	display: none;
}

.large-header-banner .widget {
	margin-bottom: 0;
}

/* Before Footer Widgets
--------------------------------------------- */

.before-footer-widgets {
	background-color: var(--wp--preset--color--quaternary);
	clear: both;
	padding: 0;
}

.before-footer-widgets .wrap {
	margin: 0 auto;
	max-width: 100%;
}

.before-footer-widgets .widget:last-of-type {
    margin-bottom: 0;
}

.before-footer-widgets .opt-in-container {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.before-footer-widgets #text-2 {
	max-width: 1480px;
	margin: 0 auto;
	padding: 40px 10px 0;
}

/* Footer Widgets
--------------------------------------------- */

.footer-widgets {
	background-color: var(--wp--preset--color--background);
	clear: both;
	padding: 0;
}

.footer-widgets .wrap {
	margin: 0 auto;
	max-width: 100%;
}

.footer-widgets .widget:last-of-type {
	margin-bottom: 0;
}


/* After Footer Widgets
--------------------------------------------- */

.after-footer-widgets {
	clear: both;
	padding: 40px 20px 0;
}

.after-footer-widgets .widget:last-of-type {
	margin-bottom: -40px;
}


/* Site Footer
---------------------------------------------------------------------------- */

.site-footer {
	background-color: var(--wp--preset--color--background);
	clear: both;
	font-size: var(--wp--preset--font-size--x-small);
	line-height: var(--wp--custom--line-height--body);
	padding: 30px 20px 50px;
	text-align: center;
}

.site-footer p {
	margin-bottom: 0;
}


/* Plugins
---------------------------------------------------------------------------- */

/* Grow Social
--------------------------------------------- */

.dpsp-network-btn,
.dpsp-network-icon,
.dpsp-network-icon-inner,
.dpsp-network-list-item {
	transition: none !important;
}

.dpsp-share-text {
	font-family: var(--wp--preset--font-family--primary);
	font-size: var(--wp--preset--font-size--x-small);
	font-weight: var(--wp--custom--font-weight--semi-bold);
	letter-spacing: 0.075em;
	margin-bottom: -10px !important;
	text-transform: uppercase;
}

#dpsp-content-bottom {
	margin-bottom: 20px;
}

/* Related Posts by Taxonomy
--------------------------------------------- */

.related-gallery {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr 1fr;
}

.related-gallery .gallery-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 10px;
}

.related-gallery .gallery-item .wp-caption-text {
	background: none;
	font-family: var(--wp--preset--font-family--secondary);
	font-size: var(--wp--preset--font-size--small) !important;
	font-weight: var(--wp--custom--font-weight--semi-bold);
	line-height: var(--wp--custom--line-height--heading);
	margin: 0;
	padding: 0;
	text-align: left;
}

.related-gallery .gallery-item .wp-caption-text a {
	color: var(--wp--preset--color--foreground);
	text-decoration: none;
}

.related-gallery .gallery-item .wp-caption-text a:focus,
.related-gallery .gallery-item .wp-caption-text a:hover {
	color: var(--wp--preset--color--primary);
	text-decoration: underline;
}

@media only screen and (min-width: 768px) {

	.related-gallery .gallery-item .wp-caption-text {
		font-size: var(--wp--preset--font-size--medium) !important;
	}

}

/* Yoast FAQ Accordion
--------------------------------------------- */

.schema-faq.wp-block-yoast-faq-block {
	margin: 20px 0 35px;
}

.wp-block-yoast-faq-block .schema-faq-section {
	background: var(--wp--preset--color--quaternary) !important;
	border: none !important;
	margin-bottom: 15px !important;
	padding: 20px 18px 20px 20px;
}

.wp-block-yoast-faq-block .schema-faq-section:last-of-type {
	border-bottom: none !important;
}

.wp-block-yoast-faq-block .schema-faq-question {
	font-size: inherit !important;
	font-weight: var(--wp--custom--font-weight--semi-bold) !important;
	padding: 0 40px 0 0 !important;
	line-height: inherit !important;
}

.wp-block-yoast-faq-block p.schema-faq-answer {
	background: none !important;
	border: none !important;
	font-size: inherit !important;
	line-height: inherit !important;
	padding: 15px 20px 5px 0 !important;
}

.wp-block-yoast-faq-block .schema-faq-question.faq-q-open {
	border-bottom: none !important;
}

.wp-block-yoast-faq-block .schema-faq-question:after {
	align-items: center;
	display: flex;
	font-size: var(--wp--preset--font-size--x-large) !important;
	font-weight: var(--wp--custom--font-weight--regular);
	height: 28px;
	justify-content: center;
	top: calc(50% - 5px);
	width: 28px;
}


/* Other Custom Styles
---------------------------------------------------------------------------- */

.review-disclaimer {
	border-bottom: 1px solid var(--wp--preset--color--tertiary);
	border-top: 1px solid var(--wp--preset--color--tertiary);
	font-size: var(--wp--preset--font-size--xx-small);
	margin-bottom: 20px;
	padding: 10px 0;
}

.home .entry,
.landing-page .entry {
	margin-bottom: 0;
}

.about-container {
	background-color: var(--wp--preset--color--quaternary);
	padding: 65px 15px 30px;
	text-align: center;
}

.after-entry .about-container {
	margin-bottom: 50px;
}

.author-image {
	margin-bottom: -50px;
	text-align: center;
}

.author-image img {
	border-radius: 50%;
}

.about-container h3 {
	font-size: var(--wp--preset--font-size--medium);
	margin-bottom: 10px;
}

.about-container .social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 15px;
}

.about-container .about-links {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.footer-logo img {
	margin-top: -5px;
}

p.rtecenter {
	text-align: center;
}

p.rtecenter span {
	font-size: var(--wp--preset--font-size--small) !important;
}

/* Homepage
--------------------------------------------- */

.home h1 {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.home .featured-left .wp-block-post-featured-image {
	margin-bottom: -40px;
}

.home .featured-left .wp-block-post figure a::after {
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #000 100%);
	content: '';
	display: block;
	height: 150px;
	margin-top: -150px;
	position: relative;
	width: 100%;
}

.home .featured-left .wp-block-post figure a:hover::after {
	opacity: 0.8;
}

.home .featured-text {
	border-bottom: 2px solid var(--wp--preset--color--secondary);
	display: inline-block;
	left: 20px;
	line-height: 1.3;
	margin: 0 0 35px;
	position: relative;
	z-index: 9;
}

.home .featured-text a {
	color: #fff;
	text-decoration: none !important;
}

/* Responsive Video Embeds
--------------------------------------------- */

.has-no-blocks .video-wrapper {
	height: 0;
	margin-bottom: 30px;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}

.has-no-blocks .video-wrapper iframe,
.has-no-blocks .video-wrapper object,
.has-no-blocks .video-wrapper embed,
.has-no-blocks .video-wrapper video {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

/* .wp-block-embed .video-wrapper {
	height: unset !important;
	margin-bottom: unset !important;
	overflow: unset !important;
	padding-bottom: unset !important;
	position: unset !important;
} */

/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (max-width: 359px) {

	.after-footer-widgets,
	.footer-widgets,
	.site-footer,
	.site-inner,
	.sticky-sponsored-banner {
		padding-left: 10px;
		padding-right: 10px;
	}

	.site-header {
		padding-left: 10px;
		padding-right: 10px;
	}

}

@media only screen and (min-width: 360px) {

	.before-footer-widgets #text-2 {
		padding: 40px 20px 0;
	}

}

@media only screen and (min-width: 375px) {



}

@media only screen and (min-width: 411px) {



}

@media only screen and (min-width: 420px) {

	.archive:not(.author) .content {
		gap: 25px 20px;
		grid-template-columns: 1fr 1fr;
	}

	.archive .entry-title {
		font-size: var(--wp--preset--font-size--x-small);
	}

}

@media only screen and (min-width: 500px) {

	.site-header .search-form {
		width: 240px;
	}

	table {
		table-layout: auto;
		word-break: normal;
	}

	.entry-content .search-form {
		width: 50%;
	}

}

@media only screen and (max-width: 599px) {

	.author-box {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

}

@media only screen and (min-width: 600px) {

	.entry-content .search-form {
		max-width: 300px;
	}

	p.comment-form-author,
	p.comment-form-email {
		flex-basis: 48.7%;
	}

	.entry-header .entry-meta {
		margin: 8px 0 8px 10px;
	}

	p.entry-subtitle,
	.page .entry-header,
	.single-post .entry-header {
		margin-bottom: 12px;
	}

	time.entry-time {
		display: inline-block;
		margin-left: 30px;
	}

	.entry-header:has(.expert-verification) time.entry-time {
		margin-left: 0;
	}

	.archive .filters .widget-wrap,
	.archive .filters .widget-wrap .textwidget.custom-html-widget {
		flex-direction: row;
		align-items: flex-end;
	}

	.archive .filters .widget-wrap .textwidget.custom-html-widget {
		min-height: 42px;
	}

	.archive .entry-title {
		font-size: var(--wp--preset--font-size--small);
	}

}

@media only screen and (max-width: 767px) {



}

@media only screen and (min-width: 768px) {

	.content {
		margin-left: auto;
		margin-right: auto;
		max-width: 760px;
	}

	.author-box {
		padding: 30px;
	}

	.comment-respond,
	.entry-comments article {
		padding: 30px;
	}

	.archive.full-width-content .content {
		max-width: 100%;
		width: 100%;
	}
	
	.archive:not(.author) .content {
		display: grid;
		gap: 30px;
		grid-template-columns: 1fr 1fr 1fr;
	}

	.after-entry .about-container {
		font-size: var(--wp--preset--font-size--medium);
	}

	.featured-content .widget-wrap {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.archive .entry-title {
		font-size: var(--wp--preset--font-size--medium);
	}

	.featured-content .widget-wrap {
		grid-template-columns: 1fr 1fr 1fr;
	}

	.review-disclaimer {
		font-size: var(--wp--preset--font-size--x-small);
	}

	.site-footer {
		padding-bottom: 100px;
		padding-top: 0;
	}

}

@media only screen and (max-width: 781px) {

	.about-text {
		text-align: center;
	}

}

@media only screen and (min-width: 860px) {



}

@media only screen and (max-width: 1023px) {

  .sidebar {
  	display: none;
  }

}

@media only screen and (min-width: 1024px) {

	.site-header {
		padding: 0 20px;
	}

	.sticky-sponsored-banner {
		top: 65px;
	}

	.site-header .wrap {
		max-width: 1140px;
	}

	.wp-custom-logo .title-area {
		max-width: 160px;
	}

	.site-header .search-form {
		margin-left: 20px;
		width: 200px;
	}

	.nav-primary .genesis-nav-menu {
		flex-direction: row;
	}

	.genesis-nav-menu .menu-item {
		display: inline-block;
	}

	.nav-primary .genesis-nav-menu .menu-item:not(:last-of-type) {
		margin: 0 10px 0 0;
	}

	.nav-primary .genesis-nav-menu .sub-menu .menu-item:not(:last-of-type) {
		margin: 0;
	}

	.genesis-nav-menu .menu-item:focus,
	.genesis-nav-menu .menu-item:hover {
		position: relative;
	}

	.genesis-nav-menu .sub-menu,
	.genesis-nav-menu .sub-menu a,
	.genesis-nav-menu>.sub-menu>li {
		width: 210px;
	}

	.genesis-nav-menu .sub-menu {
		background-color: var(--wp--preset--color--background);
		border: none;
		border-radius: 8px;
		box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
		opacity: 0;
		padding: 0;
		position: absolute;
		z-index: 9999;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		margin: -44px 0 0 198px;
		box-shadow: none;
	}

	.nav-primary .menu-item.menu-item-has-children>a>span {
		align-items: center;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
	}

	.nav-primary .menu-item.menu-item-has-children>a>span::after {
		border-top: 1px solid;
		border-right: 1px solid;
		content: "";
		height: 6px;
		margin: 0 -3px 0 8px;
		-webkit-transform: rotate(135deg);
		transform: rotate(135deg);
		width: 6px;
	}

	.nav-primary .sub-menu .menu-item.menu-item-has-children>a>span {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.nav-primary .sub-menu .menu-item.menu-item-has-children>a>span::after {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	.js .nav-primary {
		display: block;
	}

	.menu-toggle,
	.search-toggle,
	.sub-menu-toggle {
		display: none;
		visibility: hidden;
	}

	.nav-primary {
		clear: none;
		padding: 0;
		width: auto;
	}

	.nav-primary .genesis-nav-menu a {
		padding: 12px 16px;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		margin: 0;
		padding: 16px;
	}

	li.menu-item.search {
		display: block;
	}

	.site-header .search-form {
		margin-top: 0;
		width: 170px;
	}

	.mobile-search,
	.mobile-search.activated {
		display: none;
	}

	.nav-primary ul {
		gap: 0;
	}

	.genesis-nav-menu .sub-menu {
		padding: 8px 0;
	}

	.nav-primary .genesis-nav-menu a:focus,
	.nav-primary .genesis-nav-menu a:hover,
	.nav-primary .genesis-nav-menu .current-menu-item>a {
		opacity: 0.8;
	}

	.nav-primary .genesis-nav-menu .sub-menu a {
		color: var(--wp--preset--color--foreground);
		padding: 10px 16px
	}

	.nav-primary .genesis-nav-menu .sub-menu a:focus,
	.nav-primary .genesis-nav-menu .sub-menu a:hover,
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a,
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a:focus,
	.nav-primary .genesis-nav-menu .sub-menu .current-menu-item>a:hover {
		color: var(--wp--preset--color--primary);
		opacity: 1;
	}

	.genesis-responsive-menu .wrap {
		position: relative;
	}

	.nav-primary .genesis-nav-menu {
		align-items: center;
	}

	.nav-primary .genesis-nav-menu a {
		padding: 24px 16px;
	}

	.genesis-nav-menu .sub-menu {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.mega-menu .sub-menu,
	.mega-menu .sub-menu a {
		width: unset;
	}

	/* the mega menu */
	.mega-menu>.sub-menu {
		background-color: #fff;
		flex-direction: row;
		gap: 15px;
		justify-content: center;
		left: -4900px !important;
		width: 10000px;
		max-width: 10000px;
		padding: 10px 20px;
	}

	.nav-primary .genesis-nav-menu .menu-item:hover>.sub-menu {
		display: block;
	}

	.nav-primary .mega-menu.menu-item:hover>.sub-menu {
		display: flex;
	}

	.nav-primary li.menu-item-has-children:focus:after,
	.nav-primary li.menu-item-has-children:hover:after {
		content: "";
		position: absolute;
		left: 25px;
		bottom: 0;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 10px 10px 10px;
		border-color: transparent transparent #fff transparent;
		z-index: 9999;
	}

	/* first of the 4 columns in the mega menu
	.mega-menu > .sub-menu > li:nth-of-type(4n+1) {
		clear: left;
	}

	.mega-menu > .sub-menu > li {
		width: 25%;
		float: left;
	}*/

	/* show the contents (3rd level) of each of the columns */
	.mega-menu:hover li ul {
		display: block !important;
	}

	.genesis-nav-menu li.mega-menu li ul {
		opacity: 1;
		border-top: none;
	}

	.genesis-nav-menu .sub-menu .sub-menu {
		position: relative;
		top: auto;
		left: auto;
		margin: 0;
		width: 100%;
	}

	/* make list items appear one below the other in columns */
	.genesis-nav-menu .sub-menu .sub-menu li {
		display: block;
	}

	/* column titles */
	.mega-menu>ul>li>a:first-child {
		border-bottom: 1px solid #eee;
		color: var(--wp--preset--color--foreground) !important;
		font-weight: var(--wp--custom--font-weight--semi-bold);
		width: 95%;
	}

	.mega-menu .menu-item.menu-item-has-children>a>span::after {
		content: none;
	}

	/* menu item links in the mega menu */
	.mega-menu .sub-menu a {
		padding: 15px 20px;
		line-height: 1.2;
		width: 100%;
		background-color: transparent;
	}

	.mega-menu>ul>li>a:first-child:hover {
		background-color: transparent;
	}

	.content-sidebar .breadcrumb {
		max-width: unset;
	}

	.content {
		float: left;
		max-width: 67%;
	}

	.sidebar-content .content {
		float: right;
	}

	.full-width-content .content {
		float: none;
		margin-left: auto;
		margin-right: auto;
		max-width: 760px;
	}

	.sidebar {
		float: right;
		max-width: 300px;
	}

	.sidebar-content .sidebar {
		float: left;
	}

	.sidebar .widget {
		background-color: var(--wp--preset--color--quaternary);
		padding: 20px;
	}

	.sidebar .widget:first-of-type {
		margin-bottom: 0;
		padding-bottom: 30px;
	}

	.single-post .sidebar {
		margin-top: -11px;
	}

	.sidebar .widget:last-of-type {
		margin-bottom: 30px;
	}

	.sidebar .featured-content .widget-wrap {
		grid-template-columns: 1fr;
	}

	.sidebar .featured-content article {
		align-items: center;
		display: flex;
		gap: 15px;
		margin-bottom: 0;
	}

	.sidebar .featured-content .entry-title {
		display: -webkit-box;
		font-size: var(--wp--preset--font-size--x-small);
		font-weight: var(--wp--custom--font-weight--semi-bold);
		line-height: var(--wp--custom--line-height--body);
		margin-bottom: 0;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}

	.sidebar .featured-content article img,
	.sidebar .featured-content article picture {
		display: block;
		min-width: 120px;
		max-width: 120px;
	}

	.sidebar .featured-content .entry-header {
		margin-bottom: 0;
	}

}

@media only screen and (min-width: 1160px) {

	.content {
		max-width: 760px;
	}

	.sidebar {
		max-width: 336px;
	}

}

@media only screen and (min-width: 1200px) {

	.before-footer-widgets .widget {
		margin-bottom: 60px;
	}

}

@media only screen and (min-width: 1400px) {

	.before-footer-widgets .opt-in-container {
		margin-left: 60px;
	}

}

@media only screen and (min-width: 1600px) {



}


/* Print Styles
---------------------------------------------------------------------------- */

@media print {

	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		color: var(--wp--preset--color--foreground) !important;
		text-shadow: none !important;
	}

	a,
	a:visited {
		text-decoration: underline;
	}

	a[href]::after {
		content: " (" attr(href) ")";
	}

	abbr[title]::after {
		content: " (" attr(title) ")";
	}

	a[href^="javascript:"]::after,
	a[href^="#"]::after,
	.site-title > a::after {
		content: "";
	}

	thead {
		display: table-header-group;
	}

	img,
	tr {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 2cm 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	blockquote,
	pre {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	.content,
	.content-sidebar {
		width: 100%;
	}

	button,
	input,
	select,
	textarea,
	.breadcrumb,
	.comment-edit-link,
	.comment-form,
	.comment-list .reply a,
	.comment-reply-title,
	.edit-link,
	.entry-comments-link,
	.entry-footer,
	.genesis-box,
	.header-widget-area,
	.hidden-print,
	.home-top,
	.nav-primary,
	.nav-secondary,
	.post-edit-link,
	.sidebar {
		display: none !important;
	}

	.title-area {
		text-align: center;
		width: 100%;
	}

	.site-title > a {
		margin: 0;
		text-decoration: none;
		text-indent: 0;
	}

	.site-inner {
		padding-top: 0;
		position: relative;
	}

	.author-box {
		margin-bottom: 0;
	}

	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		orphans: 3;
		page-break-after: avoid;
		page-break-inside: avoid;
		widows: 3;
	}


	img {
		page-break-after: avoid;
		page-break-inside: avoid;
	}

	blockquote,
	pre,
	table {
		page-break-inside: avoid;
	}

	dl,
	ol,
	ul {
		page-break-before: avoid;
	}

}