@media (prefers-reduced-motion: no-preference) {
	:root {
		interpolate-size: allow-keywords;
	}

	html {
		scroll-behavior: smooth;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
		transition-duration: 0s !important;
	}
}

.screen-reader-text:not(:focus):not(:active) {
	clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap; 
	width: 1px;
}

img,
picture,
video,
canvas,
svg {
	max-width: 100%;
	display: block;
	height: auto;
}

a {
	transition: color 0.2s;
	color: inherit;
	text-decoration: none;
	outline-offset: 2px;
}

:target {
	scroll-margin-block: 75px;
}

.sr-only:not(:focus):not(:active) {
	clip: rect(0 0 0 0); 
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap; 
	width: 1px;
}

[hidden] {
	display: none !important;
}

.post-content figure,
blockquote,
p {
	margin: 0 0 1.5em;

	&:last-child {
		margin: 0;
	}
}

b,
strong {
	font-weight: bold;
}

[role="list"] {
	list-style: none;
	padding: 0;
	margin: 0;
}

input::placeholder {
	opacity: 1;
	color: inherit;
}

/***** GLOBAL *****/

h1, .h1 {
	font-family: var(--font-heading);
	font-size: 6rem;
	line-height: 1em;
	margin: 0 0 0.3em;
	font-weight: 600;
	color: #000;
}

h2, .h2 {
	font-family: var(--font-heading);
	font-size: 5rem;
	line-height: 1em;
	margin: 0 0 0.5em;
	font-weight: 600;
	color: #000;
}

h3, .h3 {
	font-family: var(--font-heading);
	font-size: 3.6rem;
	line-height: 1.1em;
	margin: 0 0 0.5em;
	font-weight: 650;
	color: #000;
}

h4, .h4 {
	font-family: var(--font-body);
	font-size: 2.4rem;
	line-height: 1.2em;
	margin: 0 0 0.5em;
	font-weight: 650;
	color: #000;
}

h5, .h5 {
	font-family: var(--font-body);
	font-size: 2rem;
	line-height: 1.2em;
	margin: 0 0 0.5em;
	font-weight: bold;
	color: #000;
}

h6, .h6 {
	font-family: var(--font-body);
	font-size: 1.8rem;
	line-height: 1.2em;
	margin: 0 0 0.5em;
	font-weight: bold;
}

.heading {
	text-wrap: balance;
}

body h1:first-child,
body h2:first-child,
body h3:first-child,
body h4:first-child {
	margin-top: 0;
}

body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child {
	margin-bottom: 0;
}

.page-section {
	margin: var(--section-space) 0;
}

.page-section p:empty {
	display: none;
}

.page-section--background-off-white {
	margin: 0;
	padding: var(--section-space) 0;
	background: var(--color-off-white);
}

.page-section--background-accent {
	margin: 0;
	padding: var(--section-space) 0;
	background: var(--color-accent);
	color: #fff;
}

.page-section--background-accent .heading {
	color: inherit;
}

.page-section__header {
	text-align: center;
	margin: 0 0 4rem;
}

.page-section__header:last-child {
	margin-bottom: 0;
}

.page-section__footer {
	display: flex;
	justify-content: center;
	margin: 3.5rem 0 0;
}

ul, ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.richtext-content {
	h1, h2, h3, h4, h5, h6 {
		color: #000;
	}
}

.richtext-content a:not(.button) {
	color: var(--color-accent);
	text-decoration: underline;
}

.richtext-content ol,
.richtext-content ul {
	margin: 0 0 1.5em;
	list-style-type: disc;
	padding: 0 0 0 1.5em;

	&:last-child {
		margin: 0;
	}
}

.richtext-content ol {
	list-style-type: decimal;
}

.richtext-content table {
	margin: 1.5em 0;
}

ul.list-with-checks {
	list-style-type: none;
	padding: 0;

	li {
		padding: 0 0 0 1.7em;
		position: relative;

		&::before {
			content: '';
			position: absolute;
			top: 0.35em;
			left: 0;
			width: 1em;
			height: 0.6em;
			border-style: solid;
			border-color: currentColor;
			border-width: 0 0 2px 2px;
			rotate: -45deg;
			translate: 0 -20%;
		}
	}
}

.big-red-text {
	font-size: 3.2rem;
	line-height: 1.3em;
	color: var(--color-accent);
	font-weight: 500;
}

.medium-weight {
	font-weight: 500;
}

.aligncenter {
	display: block;
	margin: 0 auto;
}

@media (max-width: 768px) {
	.big-red-text {
		font-size: 2rem;
		word-wrap: break-word;
	}

	.richtext-content {
		word-wrap: break-word;
	}

	h1, .h1 {
		font-size: 3.2rem;
		line-height: 1.2em;
	}

	h2, .h2 {
		font-size: 3.2rem;
		line-height: 1.2em;
	}
	
	h3, .h3 {
		font-size: 2.2rem;
		line-height: 1.2em;
	}

	h4, .h4 {
		font-size: 1.8rem;
		line-height: 1.4em;
	}

	h5, .h5 {
		font-size: 1.6rem;
	}

	h6, .h6 {
		font-size: 1.6rem;
	}

	.page-section__header {
		margin-bottom: 2rem;
	}
}

.ratio-container {
	--ratio: 4/3;
	aspect-ratio: var(--ratio);
	position: relative;
	overflow: hidden;
}

.ratio-container > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.arrow-link {
	color: var(--color-accent);
	display: inline-flex;
	gap: 7px;
	align-items: center;
}

.arrow-link::after {
	content: '';
	width: 6px;
	height: 6px;
	border-style: solid;
	border-color: currentColor;
	border-width: 1px 1px 0 0;
	rotate: 45deg;
	translate: 0 0.08em;
}
/***** END GLOBAL *****/

/**** SLIDER ****/
.slider {
	--slides-per-page: 3;
	--gap: 10px;
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	gap: var(--gap);
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scroll-snap-stop: always;
}

.slider--full {
	.slider__slide {
		scroll-margin-left: var(--side-offset);

		&:first-child {
			margin-left: var(--side-offset);
		}

		&:last-child {
			margin-right: var(--side-offset);
			scroll-margin-right: var(--side-offset);
		}
	}
}

.slider {
	display: flex;
	--slides-per-page: 3;
	--gap: 0px;
	overflow-x: auto;
}

.slider__slide {
	--gap_per_item: var(--gap) * ( var(--slides-per-page) - 1 ) / var(--slides-per-page);
	flex: 0 0 calc(100% / var(--slides-per-page) - var(--gap_per_item));
}

.slider__control {
	opacity: 0;
	position: absolute;
}

/**** END SLIDER ****/

/***** FORMS *****/
input
button,
textarea,
select,
button {
	font: inherit;
	accent-color: var(--color-accent);
	outline-offset: 2px;
	font-size: 1.6rem;
}

button {
	color: inherit;
	border: 0;
	background: transparent;
	padding: 0;
	cursor: pointer;
}

.select-wrapper {
	color: #000;
	display: block;
}

.select-wrapper:has(select[inert]) {
	color: var(--color-gray-medium);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="number"],
button,
textarea,
select {
	width: 100%;
	color: #000;
	border-radius: 0.4rem;
	display: block;
	background: transparent;
	border: 1px solid currentColor;
	height: 4.8rem;
	padding: 0 2.5rem;
	font-family: inherit;
	outline-offset: 2px;
}

input[type="checkbox"] {
	margin: 0 0.4rem 0 0;
	width: 1.6rem;
	height: 1.6rem;
}

select {
	appearance: none;
	color: inherit;
}

input[type="submit"],
.wp-element-button,
.button {
	width: auto;
	height: 4.8rem;
	padding: 0 1.25em;
	min-width: 14.5rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	gap: 0.7rem;
	border-radius: 0.3em;
	border: 1px solid rgba(0, 0, 0, 0.1);
	background: var(--color-accent);
	color: #FFF;
	font-style: normal;
	font-weight: 600;
	text-decoration: none;
	outline-offset: 2px;
}

.page-section--background-accent .button {
	color: var(--color-accent);
	background: #fff;
}

.button--big {
	height: 6rem;
	font-size: 2.4rem;
	font-weight: 650;
	min-width: 23rem;
}

.button--outline {
	background: transparent;
	color: inherit;
}

.view-courses__form {
	max-width: 41rem;
	display: flex;
	width: 100%;
	margin: 0 auto;
	flex-direction: column;
	gap: 0.7rem;
}

.view-courses__form input, .view-courses__form select {
	background: #fff;
}

.form-line {
	display: flex;
	flex-wrap: wrap;
}

.form-line > *:not(.button),
.form-line .select-wrapper select {
	flex: 1;
	border-right: 0;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.form-line > .button {
	width: auto;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

@media (max-width: 768px) {
	input[type="submit"],
	.button:not(.button--big) {
		min-width: 11rem;
	}

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="date"],
	input[type="password"],
	input[type="number"],
	button,
	textarea,
	select {
		padding: 0 2rem;
	}

	.select-wrapper::after {
		right: 1em;
	}
}

fieldset {
	background: var(--color-off-white);
	border: 0;
	padding: 2.5rem;
	margin: 0 0 3rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}


fieldset p.form-row {
	margin: 0;
}

.form-row-fit {
	display: flex;
	gap: 1.5rem;
}

.form-row-fit .form-row {
	flex: 1;
}

legend {
	float: left;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 1.5rem;
	line-height: 1.5em;
	color: var(--color-gray-medium);
	margin: 0 0 1em;
	padding: 0;
}

p.woocommerce-form-row {
	margin-bottom: 1.5rem;

	& + fieldset {
		margin-top: 3rem;
	}
}

.woocommerce-form-row em,
.form-row__tip {
	font-size: 1.4rem;
	font-style: normal;
	color: var(--color-gray-medium);
	display: block;
	margin-top: 0.5rem;
}

#billing_country_field:has([name="billing_country"][type="hidden"]) {
	display: none;
}

.woocommerce-address-fields .required,
.woocommerce-form-row .required {
	color: var(--color-accent);
}

.errors-list {
	color: var(--color-accent);
	list-style-type: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.password-strength-indicator {
	position: relative;

	&::after {
		content: '';
		background: var(--color-gray-light);
		height: 0.4rem;
		border-radius: 1rem;
		display: block;
	}
	
	&::before {
		content: '';
		position: absolute;
		transition: width 0.2s ease-in-out, color 0.2s ease-in-out;
		bottom: 0;
		left: 0;
		width: 100%;
		background: #1c1;
		height: 0.4rem;
		border-radius: 1rem;
	}
}

.password-input:invalid ~ .password-strength-indicator::before {
	width: 0;
	background: #a00;
}

.password-input:invalid:focus ~ .password-strength-indicator::before,
.password-input:user-invalid ~ .password-strength-indicator::before {
	width: 20%;
}

.form-row--required > label::after {
	content: ' *';
	color: var(--color-accent);
}

/***** END FORMS *****/

/***** LOGIN FORMS *****/

.page-section--account .page-section__header {
	text-align: left;
	margin: 0 0 2.5rem;
}

.woocommerce-form .button,
.lost_reset_password .button,
.page-section--account .button {
	width: 100%;
}

.page-section--account form {
	margin: 0 0 2rem;
}

.woocommerce-form label,
.lost_reset_password label,
.page-section--account label {
	font-size: 1.8rem;
	margin-bottom: 0.35em;
	display: inline-block;
}

.edit-account fieldset .clear {
	display: none;
}

.select2-container--default .select2-selection--single,
.woocommerce-form-login input:not([type="checkbox"]),
.lost_reset_password input:not([type="checkbox"]),
.page-section--account select,
.page-section--account input:not(.button):not([type="checkbox"]):not([type="radio"]) {
	height: 6rem;
	font-size: 1.6rem;
	border-color: currentColor;

	&::placeholder {
		color: var(--color-gray-medium);
	}
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 6rem;
	height: 6rem;
	padding-left: 2.5rem;
	color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 100%;
	width: 4rem;
}

.form-row #password,
.form-row #username,
#user_pass,
#user_login,
#user_forgot_email {
	padding-left: 6.5rem;
}

.lost_password,
.login-form-link {
	text-decoration: underline;
	color: var(--color-accent);
	padding: 0;
	height: auto;
	border: 0;
	width: auto;
}

.content-tabs [aria-selected="true"] {
	display: none;
}

.content-tab[aria-selected="false"] {
	display: none;
}

.page-section--register {
	border-top: 1px solid var(--color-gray-light);
	margin: 0;
	padding: var(--section-space) 0;
}

.password-input {
	position: relative;
	display: block;
}

.password-input #password {
	padding-right: 6rem;
}

.show-password-input {
	position: absolute;
	top: 0;
	right: 0;
	border: 0;
	width: 6rem;
	height: 6rem;
	background: url("../img/icon-eye.svg") no-repeat center / 30px auto;
	opacity: 0.3;
}

.show-password-input:focus,
.show-password-input.display-password {
	opacity: 1;
}

.show-password-input.display-password::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3rem;
	border-top: 2px solid #000;
	rotate: -45deg;
	translate: -50% -50%;
}

.page-section--content:has(.woocommerce-form-login) .page-section__header {
	display: none;
}

.page-section--login > .container {
	max-width: calc(50rem + 2 * var(--container-padding));
}
/***** END LOGIN FORMS *****/

/***** WOOCOMMERCE *****/
.woocommerce-notices-wrapper {
	margin-bottom: 2.5rem;
	color: var(--color-accent);

	.woocommerce-message {
		outline: none;
	}

	a {
		text-decoration: underline;
	}
}

.woocommerce-notices-wrapper:empty {
	display: none;
}

.page-section--account > .container > .woocommerce {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
	position: relative;
	
	&::before {
		content: '';
		border-top: 1px solid var(--color-gray-light);
		position: absolute;
		top: calc(var(--section-space) / -2);
		left: 0;
		width: 100%;
	}
}

.woocommerce-MyAccount-navigation {
	flex: 0 0 20rem;
	min-width: 20rem;
}

.woocommerce-MyAccount-navigation ul a {
	display: inline-block;
	padding: 0.5rem 0;
	margin: 0.5rem 0;
	font-weight: 600;
	border-bottom: 2px solid transparent;
}

.woocommerce-MyAccount-paymentMethods {
	margin: 0 0 2rem;

	& + .button {
		width: auto;
	}
}

.woocommerce-MyAccount-navigation ul a[aria-current] {
	color: var(--color-accent);
	border-bottom: 2px solid var(--color-accent);
}

.woocommerce-MyAccount-content form,
.woocommerce-EditAccountForm {
	max-width: 80rem;

	.woocommerce-address-fields__field-wrapper,
	fieldset {
		gap: 1.5rem;
		display: grid;
		grid-template-columns: repeat(2, 1fr);

		p {
			margin: 0;
		}
	}

	.form-row-wide,
	legend {
		grid-column: 1 / -1;
	}
}

.woocommerce-MyAccount-content {
	flex: 1;
	min-width: 30rem;
}

.form-row a,
a.edit,
.woocommerce-MyAccount-content a:not(.button) {
	color: var(--color-accent);
	text-decoration: underline;
}

.woocommerce-MyAccount-content h2 {
	font-size: 3.6rem;
}

.woocommerce-info .button {
	margin-top: 1.5rem;
	max-width: 30rem;
	display: flex;
}

.woocommerce-address-fields__field-wrapper {
	margin: 0 0 1.5rem;
}

.wc-block-cart__submit-button {
	width: 100%;
}

.shop_table,
.woocommerce-orders-table,
.woocommerce-table {
	width: 100%;
	border-spacing: 0;

	.woocommerce-Price-amount {
		font-size: inherit;
		font-weight: inherit;
		color: inherit;
	}
}

.woocommerce-PaymentMethod,
.payment-method {
	text-align: left;
}

.woocommerce-table__product-total {
	text-align: right;
}

.woocommerce-order-overview__total .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
}

.woocommerce-thankyou-order-details {
	columns: 2 30rem;
}

.woocommerce-MyAccount-paymentMethods,
.woocommerce-orders-table {
	background: var(--color-off-white);
	padding: 0.5rem 3rem;
	border-spacing: 0;
	text-align: center;

	thead th {
		border-bottom: 1px solid var(--color-gray);
		color: var(--color-accent);
		padding: 1.5rem 0;
		font-weight: 650;
	}

	a:not(.button) {
		text-decoration: none;
		color: inherit;
	}

	.button:hover,
	.button {
		background: transparent;
		color: var(--color-accent);
		border: 0;
		height: auto;
		min-width: 0;
		width: auto;
		padding: 0;
	}
}

.woocommerce-table thead th {
	text-align: left;
	font-weight: normal;
	border-bottom: 1px solid var(--color-gray-light);
	padding: 0 0 1rem;

	&:last-child {
		text-align: right;
	}
}

.woocommerce-table tfoot {
	th {
		text-align: left;
		font-weight: normal;
	}

	td {
		font-weight: 650;
		text-align: right;
	}

	tr:first-child {
		td, th {
			padding-top: 2rem;
			border-top: 1px solid var(--color-gray-light);
		}
	}
}

.woocommerce-MyAccount-content tbody th {
	font-weight: inherit;
}

.woocommerce-table--order-details tbody td,
.woocommerce-table--order-details tbody th {
	padding: 2.5rem 0;
}

mark {
	background: transparent;
	text-decoration: underline;
}

.woocommerce-MyAccount-content tbody td {
	padding: 1.5rem 0;
}

.woocommerce-MyAccount-content tbody tr:not(:last-child) {
	td, th {
		border-bottom: 1px solid var(--color-gray-light);
	}
}

.woocommerce-Address {
	padding: 3rem;
	background: var(--color-off-white);

	address {
		font-style: normal;
	}
}

.woocommerce-MyAccount-navigation-link--downloads {
	display: none;
}

.woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--color-gray-light);
	font-size: 1.6rem;
	margin: 0 0 1.5rem;
	padding: 0 0 1.5rem;
}

.woocommerce-Address-title h2 {
	color: var(--color-accent);
	font-size: 1.8rem;
	margin: 0;
	font-weight: 600;
}

.woocommerce-order-details,
.woocommerce-customer-details {
	padding: 5rem;
	margin: 5rem 0;
	box-shadow: 0 0 0.7rem rgba(0, 0, 0, 0.25);
	border-radius: 1rem;

	address {
		font-style: normal;
	}

	.woocommerce-order-details__title,
	.woocommerce-column__title {
		font-size: 2.6rem;
		margin-bottom: 4rem;
	}
}

@media (max-width: 768px) {
	.woocommerce-order-details,
	.woocommerce-customer-details {
		padding: 4rem;
	}
}
/***** END WOOCOMMERCE *****/

/***** HEADER *****/

.header-bar {
	color: #fff;
	background: var(--color-accent);
	font-weight: 650;
	font-family: var(--font-heading);
	font-size: 1.4rem;
	line-height: 1.4em;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.02em;
	height: 3.5rem;
	padding: 0 var(--container-padding);
}

.main-header {
	position: sticky;
	top: 0;
	background: var(--color-off-white);
	z-index: 10;
	padding: 1rem 0;
}

.main_header_wrapper {
	gap: 1rem 0;
	display: flex;
	align-items: center;
}

.site-branding {
	flex: 0 0 calc(240px + var(--container-padding) * 2);
	display: flex;
	height: 6rem;
	align-items: center;

	img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

.header-cart__summary {
	display: flex;
	position: relative;
	width: 45px;
	height: 45px;
	justify-content: center;
	align-items: center;
}

.cart-count {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	translate: 0 -50%;
	font-weight: 500;
}

.cart-count[data-count="0"] {
	display: none;
}

a.main-header__box-link,
.main-header__box-link summary {
	display: flex;
	gap: 0.8rem;
}

#main-navigation {
	font-size: 1.6rem;
}

@media (min-width: 901px) {
	.header-bar > a {
		display: flex;
		width: 100%;
		height: 100%;
		align-items: center;
		justify-content: center;
		text-align: center;
		text-decoration: underline;
	}

	.main-header__box-link {
		position: relative;
	}

	a.main-header__box-link,
	.main-header__box-link summary {
		list-style-type: none;
		height: 100%;
		position: relative;
		align-items: center;
		padding: 1rem 1.5rem;
		transition: color 0.2s;
	}

	a.main-header__box-link::after,
	.main-header__box-link summary::after {
		content: '';
		width: 0.6rem;
		height: 0.6rem;
		border-style: solid;
		border-color: currentColor;
		border-width: 0 1px 1px 0;
		transform: translate(0, 0) rotate(45deg);
	}

	a.main-header__box-link::after {
		transform: translate(-50%, 30%) rotate(-45deg);
	}

	.site-branding__img-desktop {
		translate: 0 -10%;
	}

	#main-navigation {
		display: flex;
		gap: 2rem;
		flex: 1;
	}

	#main-navigation .menu {
		color: #000;
		display: flex;
		align-items: center;
		margin-left: auto;
	}

	#main-navigation .menu a {
		height: 6rem;
		padding: 0 1.5rem;
		display: flex;
		align-items: center;
	}

	.current-menu-item a {
		color: var(--color-accent);
	}

	.main-header__account {
		display: flex;
		gap: 0.8rem;
		align-items: center;
		align-self: stretch;
	}

	.mobile-menu-activator {
		display: none;
	}

	.site-branding {
		margin: 0 0 0 calc(-1 * var(--container-padding));
		padding: 0 var(--container-padding);
	}

	.site-branding__img-mobile {
		display: none;
	}
}

@media (max-width: 900px) {
	.main-header {
		padding: 0.75rem 0;
		transition: background 0.3s;
	}

	.site-branding__img-desktop {
		display: none;
	}

	.site-branding {
		height: 3.5rem;
		flex: 1;
	}

	#main-navigation {
		display: none;
	}

	.mobile-menu-activator {
		display: block;
		margin-left: -1rem;
		background: transparent;
		color: var(--color-accent);
		position: relative;
		text-indent: -300px;
		overflow: hidden;
		width: 4.5rem;
		height: 4.5rem;
		padding: 0;
		border: 0;
	}

	.mobile-menu-activator::before,
	.mobile-menu-activator::after {
		content: '';
		width: 2rem;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		border-style: solid;
		border-color: currentColor;
		border-width: 2px 0 0;
	}

	.mobile-menu-activator::before {
		height: 1.6rem;
    	border-width: 2px 0;
		transition: height 0.35s ease-in-out, border-color 0.35s ease-in-out, transform 0.35s ease-in-out;
	}

	.mobile-menu-activator::after {
		transition: transform 0.35s ease-in-out;
	}

	.main_header_wrapper {
		justify-content: space-between;
	}
}

/***** END HEADER *****/



/***** HERO *****/

.page-section--hero {
	margin: 0;
	display: flex;
}

.hero__images {
	flex: 0 0 100%;
	display: flex;
	position: relative;
}

.hero__images::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	pointer-events: none;
}

.hero__images > * {
	flex: 1;
	min-width: 0;
}

.hero__content {
	flex: 0 0 100%;
	translate: -100% 0;
	position: relative;
	color: #fff;
	text-align: center;
	padding: 4rem 0;
	align-self: center;

	.page-section__header {
		margin: 0;
	}

	.heading {
		color: inherit;
		text-shadow: 0.01em 0.01em 0.12em rgba(0,0,0,0.7);
	}
}

.hero__content-inner {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;

	.view-courses__form {
		margin-top: 1.5rem;
	}
}

.hero__content-description {
	font-family: var(--font-heading);
	font-weight: 500;
	text-shadow: 0.05em 0.05em 0.52em rgba(0,0,0,0.7);

	p {
		font-size: 1.8em;
		margin: 0 0 1em;
	}

	.list-with-checks {
		display: flex;
		gap: 2em;
		justify-content: center;
	}
}

/***** END HERO *****/

/***** END IMAGE AND TEXT *****/
.image-and-text__container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10rem;
}

.image-and-text__container--contained {
	gap: 5rem;
	background: var(--color-off-white);
	padding: 6.4rem;
}

.image-and-text__container--text-image {
	flex-direction: row-reverse;
	flex-wrap: wrap-reverse;
}

.image-and-text__content,
.image-and-text__image {
	flex: 1;
	min-width: 300px;
}

.image-and-text__container--contained .image-and-text__content {
	flex: 2;
}

@media (max-width: 768px) {
	.page-section--image-and-text:has(.image-and-text__container--contained) {
		margin: 0;
	}

	.image-and-text__container {
		gap: 2rem;
	}

	.image-and-text__container--contained {
		gap: 3rem;
		padding: var(--section-space) 3rem;
		margin: 0 calc(-1 * var(--container-padding));
	}
}
/***** END IMAGE AND TEXT *****/


/***** HEADING *****/
.page-section--heading {
	text-align: center;
}
/***** END HEADING *****/

/***** FEATURED POSTS *****/

.featured-posts__grid {
	display: flex;
	--slider-per-page: 3;
	--gap: 2.4rem;
	gap: var(--gap);
}

.product-card {
	background: var(--color-off-white);
	display: flex;
	flex-direction: column;
}

.product-card__title a {
	display: block;
	color: #000;
}

.product-card__image {
	border-radius: 0.5rem 0.5rem 0 0;
	overflow: hidden;
}

.product-card__image .ratio-container {
	aspect-ratio: 2/1;
}

.product-card__info {
	background: var(--color-off-white);
	margin: 2.4rem;
}

.product-card__description {
	font-size: 1.4rem;
}

.product-card__meta {
	border-top: 1px solid var(--color-gray-light);
	margin: auto 2.4rem 2.4rem;
	padding-top: 2.4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media (max-width: 900px) {
	.featured-posts__grid {
		--slides-per-page: 1.2;
		--gap: var(--container-padding);
		margin: 0 calc(-1 * var(--container-padding));
		padding: 0 var(--container-padding);
	}

	.featured-posts__grid .slider__slide {
		scroll-margin: var(--container-padding);
	}
}

/***** END FEATURED POSTS *****/

/***** ICONS AND TEXT *****/
.icons-and-text__wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 3rem clamp(3rem, 7vw, 10rem);
}

.icons-and-text__wrapper--image-left {
	flex-direction: row-reverse;
}

.icons-and-text__list {
	/* columns: 25rem 2; */
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0 5.5rem;
	max-width: 1120px;
	margin: -1.5rem auto;
	flex: 1;
	min-width: 350px;
	align-items: flex-start;
}

.icons-and-text__list:not(:only-child) {
	grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
}

.icons-and-text__side {
	flex: 1;
	min-width: 300px;
}

.icons-and-text__side--rounded {
	border-radius: 1.6rem;
	overflow: hidden;
}

.icons-and-text__list li {
	display: flex;
	gap: 1.5rem 2.5rem;
	align-items: flex-start;
	/* break-inside: avoid-column; */
	padding: 1.5rem 0;
	flex-wrap: wrap;
}

.icons-and-text__list--cards {
	display: flex;
	flex-wrap: wrap;
	max-width: none;
}

.icons-and-text__list--lines {
	display: flex;
	flex-direction: column;
}

.icons-and-text__list--cards li {
	flex-direction: column;
	align-items: center;
	min-width: 200px;
	text-align: center;
	gap: 2rem;
	flex: 1;
}

.icons-and-text__list--cards .icons-and-text__icon {
	max-width: 100px;
	flex: auto;
}

.icons-and-text__content {
	min-width: 230px;
	flex: 5;
}

.icons-and-text__content .h4 {
	color: var(--color-accent);
}

.icons-and-text__list--cards .icons-and-text__content {
	font-size: 1.7rem;
	letter-spacing: -0.01em;
	font-weight: 300;
}

.icons-and-text__icon {
	flex: 1 0 60px;
	max-width: 75px;
	align-self: center;
}

@media (max-width: 900px) {
	.icons-and-text__list {
		grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
		min-width: 250px;
	}

	.icons-and-text__icon {
		flex: 0 0 60px;
	}

	.icons-and-text__content {
		font-size: 1.4rem;
		line-height: 1.4em;
		min-width: 0;
	}
}

@media (max-width: 768px) {
	.icons-and-text__list--cards li {
		flex-direction: row;
		text-align: left;
	}

	.icons-and-text__list--cards .icons-and-text__icon {
		max-width: 75px;
		align-self: flex-start;
	}
}
/***** END ICONS AND TEXT *****/

/***** STEPS *****/
.steps__list {
	display: flex;
	--gap: 5rem;
	gap: var(--gap);
	margin: 0;
	counter-reset: steps-counter;
}

.steps__list li {
	display: flex;
	flex-direction: column;
	counter-increment: steps-counter;
	flex: 1;
	gap: 2rem;
	position: relative;
	font-weight: 300;
	line-height: 1.5em;
}

.steps__list li::before {
	content: counter(steps-counter);
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	background: var(--color-accent);
	position: relative;
	z-index: 2;
	flex-shrink: 0;
}

.steps__list li::after {
	content: '';
	border-style: solid;
	border-color: var(--color-accent);
	border-width: 2px 0 0;
	position: absolute;
	top: calc(2.5rem - 1px);
	left: calc(var(--gap) * -0.5);
	right: calc(var(--gap) * -0.5);
}

@media (min-width: 769px) {
	.steps__list li {
		align-items: center;
		text-align: center;
		font-size: 1.8rem;
	}

	.steps__list li:first-child::after {
		left: 50%;
	}

	.steps__list li:last-child::after {
		right: 50%;
	}
}

@media (max-width: 768px) {
	.steps__list {
		--gap: 3rem;
		flex-direction: column;
	}

	.steps__list li {
		flex-direction: row;
		gap: 1.5rem;
	}

	.steps__list li::before {
		width: 3.8rem;
		height: 3.8rem;
		font-size: 1.8rem;
	}

	.steps__list li::after {
		border-width: 0 2px 0 0;
		top: 0;
		left: calc(1.9rem - 1px);
		right: auto;
		bottom: calc(var(--gap) * -1);
	}

	.steps__list li:last-child::after {
		display: none;
	}
}
/***** END STEPS *****/

/***** FAQ *****/
.faq-list {
	font-size: 1.8rem;
	line-height: 1.5em;
	/* columns: 40rem 2; */
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.7rem 2rem;
}

.faq__category .faq-list {
	grid-template-columns: 1fr;
}

.faq__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem clamp(2rem, 5.5vw, 8rem);
}

.faq__sidebar {
	flex: 1;
	min-width: 350px;
}

.faq__main {
	display: flex;
	flex-direction: column;
	gap: 6rem;
	flex: 2;
	min-width: 350px;
}

.accordion {
	break-inside: avoid-column;
}

.accordion summary {
	list-style-type: none;
	line-height: 1.5em;
	padding: 1rem 0 1rem 5.5rem;
}

.accordion-content {
	font-size: 1.6rem;
	font-weight: 300;
	padding: 0.5rem 0 1.5rem;
}

@media (max-width: 900px) {
	.faq-list {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.faq-list {
		font-size: 1.6rem;
		gap: 0 2rem;
	}
	
	.faq__main {
		min-width: 0;
	}
}
/***** END FAQ *****/

/***** BLOG *****/
.latest-posts {
	/* display: grid; */
	/* grid-template-columns: repeat(3, 1fr); */
	--gap: 5rem;
	--slides-per-page: 3;
	gap: 2rem var(--gap);
}

.post-card__info,
.post-card {
	display: flex;
	flex-direction: column;
}

.post-card__info {
	gap: 1.5rem;
}

.post-card__image img {
	border-radius: 0.8rem 0.8rem 0 0;
}

.post-card__image .ratio-container {
	aspect-ratio: 5/3.5;
}

.post-card__title {
	margin: 0;
	color: #000;

	a {
		display: block;
	}
}

.post-card__date,
.post-card__tags {
	color: var(--color-gray-medium);
}

.post-card__tags {
	font-size: 1.8rem;
	display: flex;
	margin: -0.5rem;
	flex-wrap: wrap;
}

.post-card__tag {
	display: block;
	padding: 0.5rem;
	font-weight: 500;
}

.blog__wrapper {
	display: flex;
	gap: 4.5rem;
}

.post-card--featured {
	flex-direction: row;
	gap: 0;
}

.post-card--featured .post-card__image {
	flex: 0 0 100%;
	position: relative;

	&::after {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.2);
		border-radius: 0.8rem;
		pointer-events: none;
		transition: background 0.3s ease-in-out;
	}

	.ratio-container {
		aspect-ratio: 5/2;
		position: static;
	}
	
	img {
		border-radius: 0.8rem;
	}
}

.post-card--featured .post-card__info {
	flex: 0 0 100%;
	translate: -100% 0;
	padding: 3rem 8rem;
	color: #fff;
	pointer-events: none;
	margin-top: 7rem;
	align-self: center;
}

.post-card--featured .post-card__title {
	text-wrap: balance;
}

.post-card--featured .post-card__title,
.post-card--featured .post-card__tags,
.post-card--featured .post-card__date {
	color: #fff;
	max-width: 80rem;
}

.blog__grid-wrapepr {
	flex: 2;
}

.blog__grid {
	gap: 2.5rem 4.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.blog__grid-pagination {
	margin-top: 5rem;
	text-align: center;
}

.blog__sidebar {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
	min-width: 350px;
}

.blog__sidebar-widget--courses {
	padding: 3.5rem 4rem 4rem;
	background: var(--color-off-white);
}

.blog__sidebar-widget--courses .form-line {
	flex-direction: column;
	gap: 0.7rem;
}

.blog__sidebar-widget--courses .form-line .button {
	border-radius: 0.25rem;
}

.blog__sidebar-widget--courses .form-line select {
	border-right: 1px solid #000;
	border-radius: 0.4rem;
}

.blog__sidebar-widget--tags ul {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;

	a {
		font-size: 1.4rem;
		background: var(--color-off-white);
		color: var(--color-accent);
		font-weight: 600;
		line-height: 1.4em;
		border-radius: 0.5rem;
		padding: 0.25em 0.6em;
	}
}

.blog__sidebar-widget--categories ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;

	a {
		font-size: 1.4rem;
		font-weight: 600;
		color: var(--color-accent);
	}
}

.blog__sidebar-widget--tags .blog__sidebar-current-term {
	background: var(--color-accent);
	color: var(--color-off-white);
}

.blog__sidebar-widget--categories .blog__sidebar-current-term {
	color: var(--color-gray);
	text-decoration: underline;
}

.blog-single__content {
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: 300;
}

.blog-post__categories {
	display: flex;
	gap: 1rem;
	margin: 0 0 2rem;
}

.blog-post__category {
	padding: 0 0.6em;
	font-size: 1.8rem;
	display: flex;
	align-items: center;
	border-radius: 0.4rem;
	height: 3.8rem;
	background: var(--color-off-white);
}

.blog-post__image {
	margin: 4rem 0 2rem;
}

.blog-post__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 7rem;
}

.blog-post__meta-value {
	font-weight: 550;
	color: var(--color-accent);
	font-size: 1.5rem;
}

.blog-post__share {
	margin-left: auto;

}

.blog-post__share ul {
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0 0 0 -1rem;
}

.blog-post__share li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.5rem;
	height: 3.5rem;

	transition: color 0.2s;
	
	&:hover {
		color: var(--color-accent);
	}
}

.blog-post__header {
	margin-bottom: 4rem;
}

.blog-categories__dropdown {
	display: none;
}

@media (min-width: 901px) {
	.post-card--featured ~ .blog__wrapper {
		border-top: 1px solid var(--color-gray-light);
		padding-top: 6rem;
		margin-top: 6rem;
	}
}

@media (max-width: 900px) {
	.blog-categories__dropdown {
		display: flex;
		align-items: center;
		gap: 1.5rem;
		max-width: 40rem;
		color: #000;
		margin: 4rem 0;
	}

	.blog-categories__dropdown .select-wrapper {
		flex: 1;
	}

	.latest-posts {
		--slides-per-page: 1.2;
		--gap: var(--container-padding);
		margin: 0 calc(-1 * var(--container-padding));
		padding: 0 var(--container-padding);
	}

	.latest-posts .slider__slide {
		scroll-margin: var(--container-padding);
	}

	.post-card--featured + .blog__wrapper {
		margin-top: var(--section-space);
	}

	.blog__wrapper {
		flex-direction: column;
	}

	.post-card--featured .post-card__info {
		padding: 3rem var(--container-padding);
	}

	.post-card--featured {
		margin: 0 calc(-1 * var(--container-padding));
	}

	.post-card--featured .post-card__image::after,
	.post-card--featured .post-card__image img {
		border-radius: 0;
	}
}

@media (max-width: 768px) {
	.blog__grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}

	.post-card__info {
		gap: 1rem;
	}

	.post-card__tag {
		font-size: 1.6rem;
	}

	.post-card__date {
		font-size: 1.4rem;
	}

	.blog__sidebar-widget--courses {
		padding: 2.5rem 3rem 3rem;
	}
}
/***** END BLOG *****/

/***** SHOP *****/

ul.products {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(27rem, 1fr));
	gap: 5rem 3rem;
	padding: 0;
}

.woocommerce-loop-product__title {
	font-size: 2.4rem;
}

ul.products .product {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto 1fr auto;

	img {
		flex: 0 0 100%;
		border-radius: 0.8rem;
		display: block;
		width: 100%;
		aspect-ratio: 1;
		object-fit: cover;
		margin-bottom: 1.5rem;
		grid-column: 1 / -1;
	}

	.post-card__tags {
		margin-bottom: 1.5rem;
		grid-column: 1 / -1;
	}
}

.woocommerce-loop-product__title {
	grid-column: 1 / -1;
}

.products .product .price {
	align-self: center;
}

.products .product > .woocommerce-loop-product__link {
	display: contents;
}

.single-product__container {
	display: flex;
	gap: 3rem clamp(3rem, 7vw, 10rem);
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.single-product__add {
	display: flex;
	gap: 1.5rem 2.5rem;
	align-items: center;
	flex-wrap: wrap-reverse;
}

.single-produt__sale-label {
	margin: 0 0 0.3em;
	font-size: 1.6rem;
}

.ajax_add_to_cart.loading {
	opacity: 0.5;
}

.ajax_add_to_cart.added {
	position: relative;

	&::before {
		content: "Added!";
		position: absolute;
		top: 50%;
		left: 0;
		translate: 0 -50%;
		width: 100%;
		background: var(--color-accent);
		text-align: center;
	}
}

a.added_to_cart {
	display: none;
}

.licensing-info {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem;
	align-items: center;
	margin-top: 3rem;
}

.licensing-badge {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2.5rem;
	min-width: 125px;
}

.licensing-icon,
.licensing-badge > img {
	flex: 0 0 125px;
	min-width: 100px;
}

.licensing-description {
	flex: 1;
	min-width: 12rem;
	max-width: 28rem;
}

.woocommerce-Price-amount {
	font-weight: bold;
	color: var(--color-accent);
	font-size: 2.8rem;

	ins:has(&) {
		text-decoration: none;
	}

	del:has(&) {
		text-decoration: none;
	}

	del & {
		color: var(--color-gray-medium);
		text-decoration: line-through;
	}
}

.products .woocommerce-Price-amount,
.product-card__price .woocommerce-Price-amount {
	font-size: 2.1rem;
}

.single-product__form {
	flex: 1;
	min-width: 300px;
	max-width: 600px;
}

.single-product__gallery {
	flex: 1;
	min-width: 300px;
	border-radius: 1rem;
	overflow: hidden;

	img {
		width: 100%;
	}
}

.product .button {
	min-width: 13rem;
	height: 3.8rem;
	align-self: center;
	margin-top: auto;
}

.onsale {
	position: absolute;
	display: none;
}

.main-header__cart-container {
	position: relative;
	display: flex;
}

.cart-preview {
	display: none;
}

.product-list__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

.product-list__filters {
	flex: 0 0 31rem;
	align-self: flex-start;
	background: var(--color-accent);
	color: #fff;
	padding: 1rem 3rem;
	border-radius: 0.8rem;
	display: flex;
	flex-direction: column;
}

.product-list__filter-title {
	font-size: 2.6rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-gray-light) 30%, transparent);
	margin-bottom: 0;
	padding: 1rem 0;
	color: inherit;
	list-style-type: none;
	position: relative;
}

.product-list__filter:last-child:not([open]) .product-list__filter-title {
	border-bottom-color: transparent;
}

.product-list__filter ul {
	display: flex;
	flex-direction: column;
	margin: 1.2rem 0;
}

.product-list__filter label {
	position: relative;
	overflow: hidden;
	padding-left: 2.5rem;
	display: block;
	text-transform: uppercase;
	line-height: 1.4em;
	font-size: 1.4rem;
	padding: 0.3rem 0 0.3rem 2.5rem;
}

.product-list__filter label strong {
	font-weight: 600;
}

.product-list__filter label::before {
	content: '';
	width: 1.3rem;
	height: 1.3rem;
	border-radius: 2px;
	border: 1px solid #fff;
	position: absolute;
	top: 0.44em;
	left: 0;
}

.product-list__filter label:has(:checked)::before {
	background: #fff;
}

.product-list__filter label:has(:checked)::after {
	content: '';
	position: absolute;
	top: 0.6em;
	left: 0.4rem;
	width: 0.5rem;
	height: 0.7rem;
	border-style: solid;
	border-width: 0 2px 2px 0;
	border-color: var(--color-accent);
	rotate: 45deg;
}

.product-list__filter input[type="checkbox"] {
	position: absolute;
	left: -300px;
}

.product-list__main {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 5rem;
}

.woocommerce-result-count {
	text-align: center;
	color: var(--color-gray-medium);
}

@media (max-width: 900px) {
	.product-list__filters {
		flex: 1;
	}
}

@media (max-width: 768px) {
	.single-product__add .button {
		flex: 1;
		min-width: 320px;
	}
}
/***** END SHOP *****/

/***** REVIEWS *****/
body .kl_reviews__carousel__header {
	display: none;
}

#klaviyo-reviews-carousel-wrapper {
	padding: 5rem 0 0;
	max-width: none;
}

.kl_reviews__carousel__prev_button,
.kl_reviews__carousel__next_button {
	padding: 0;
	width: 4rem !important;
	height: 4rem !important;
	background: transparent !important;
	border: 2px solid #fff !important;
	box-shadow: none !important;
	transform: none !important;

	svg {
		display: none;
	}

	&::before {
		content: '';
		width: 15px;
		height: 14px;
		background: url("../img/icon-arrow.svg") no-repeat center / contain;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
	}
}

.kl_reviews__carousel__prev_button {
	top: 0 !important;
	left: auto !important;
	right: 5.5rem;

	&::before {
		rotate: 180deg;
	}
}

#klaviyo-reviews-carousel-wrapper .swiper-button-disabled {
	opacity: 0.5;
}

.kl_reviews__carousel__next_button {
	top: 0 !important;
	right: 0 !important;
}

body .kl_reviews__carousel__slide--shadow {
	margin: 0;
}

.page-section--reviews .page-section__header {
	text-align: left;
	margin-bottom: 1.5rem;
}

body .kl_reviews__carousel__review {
	padding: 4rem;
}

.reviews-description {
	max-width: 680px;
	margin: 0 0 1rem;
	font-size: 1.8rem;
	line-height: 1.5em;
}

@media (max-width: 900px) {
	body .kl_reviews__carousel__review {
		padding: 3rem 2rem;
	}

	.reviews-description {
		font-size: 1.4rem;
	}

	#klaviyo-reviews-carousel-wrapper {
		padding: 0 0 5rem;
	}

	.kl_reviews__carousel__prev_button {
		bottom: 0 !important;
		top: auto !important;
		right: 50%;
		margin-right: 0.8rem;
	}
	
	.kl_reviews__carousel__next_button {
		top: auto !important;
		bottom: 0 !important;
		right: auto;
		left: 50%;
		margin-left: 0.8rem;
	}
}
/***** END REVIEWS *****/

/***** COLUMNS *****/
.columns__container {
	display: flex;
	flex-wrap: wrap;
}

.columns__column {
	--base: auto;
	flex: 1 0 var(--base);
	min-width: 350px;
}

.columns__column .heading {
	text-align: left;
}

@media (max-width: 768px) {
	.columns__column {
		min-width: 300px;
	}
}
/***** END COLUMNS *****/

/***** INFO CARDS *****/
.info-cards {
	display: flex;
	--gap: 3rem;
	gap: var(--gap);
	justify-content: space-evenly;
}

.info-card {
	max-width: 40rem;
	background: #000;
	color: #fff;
	border-radius: 1rem;
	padding: 3.5rem 1.5rem;
	text-align: center;
	font-weight: 250;
	font-size: 1.7rem;
	line-height: 1.5em;
}

.info-card__title {
	color: inherit;
}

.info-card__image {
	aspect-ratio: 4/3;
	margin-bottom: 1.5rem;

	img {
		border-radius: 1rem;
	}
}

@media (max-width: 900px) {
	.info-cards {
		--gap: var(--container-padding);
		--slides-per-page: 2.5;
		margin: 0 calc(-1 * var(--container-padding));
		padding: 0 var(--container-padding);
	}

	.info-card {
		scroll-margin: var(--container-padding);
	}
}

@media (max-width: 768px) {
	.info-cards {
		--slides-per-page: 1.25;
	}
}
/***** END INFO CARDS *****/

/***** PRODUCT CARD *****/
.page-section--product-card .page-section__header {
	margin-bottom: 5rem;
	
	.heading {
		text-wrap: auto;
		max-width: 80rem;
		margin: 0 auto;
		font-weight: 600;
		color: inherit;
	}
}

.product-card-promo__container {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.product-card-promo {
	background: var(--color-off-white);
	max-width: 58rem;
	border-radius: 3rem;
	padding: 4rem 5.5rem;
	display: flex;
	flex-direction: column;
	text-align: center;
	font-size: 2rem;
}

.product-card-promo__container .product-card-promo .heading {
	color: inherit;
	font-size: 3.2rem;
	font-weight: 600;
	margin-bottom: 0.3em;
}

.product-card-promo .page-section__header {
	text-wrap: balance;
	border-bottom: 2px solid var(--color-gray-light);
	padding-bottom: 1.5rem;
}

.product-card-promo ul {
	text-align: left;
	padding: 0;
	margin: 0 0 2em;
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.product-card-promo ul li {
	display: flex;
	position: relative;
	gap: 1rem;
	font-size: 2.1rem;

	&::before {
		content: '';
		width: 2.5rem;
		height: 2.5rem;
		border-radius: 50%;
		background: var(--color-accent);
	}

	&::after {
		content: '';
		position: absolute;
		top: 0.6rem;
		left: 0.9rem;
		width: 0.6rem;
		height: 1.1rem;
		border-style: solid;
		border-width: 0 2px 2px 0;
		border-color: #fff;
		rotate: 45deg;
	}
}

.product-card-promo__price {
	margin-top: 2rem;
}

.product-card-promo__footer {
	margin: 6rem auto 0;
	font-size: 1.7rem;
	line-height: 1.5em;
	font-weight: 300;
	max-width: 80rem;
}

@media (max-width: 768px) {
	.product-card-promo {
		padding: 3rem var(--container-padding);
		font-size: 1.7rem;
	}

	.page-section--product-card .page-section__header {
		margin-bottom: 2rem;
	}

	.product-card-promo ul li {
		font-size: 1.8rem;
	}

	.product-card-promo__footer {
		margin-top: 3rem;
	}
}
/***** END PRODUCT CARD *****/


/***** COURSE DETAILS *****/
.course-details__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem 8rem;
}

.course-outline {
	flex: 0 0 40rem;
}

.course-details {
	flex: 1;
}

.course-details ul {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 0 3rem;
	overflow: hidden;
	font-size: 1.7rem;
	line-height: 1.6em;
	font-weight: 300;
}

.course-details li {
	padding: 1rem 0 1rem 5rem;
	border-bottom: 1px solid var(--color-gray-light);
	background: url("../img/icon-big-check.svg") no-repeat left center / 3.2rem auto;
	margin-bottom: -1px;
	break-inside: avoid-column;
}

.course-details__item-heading {
	text-transform: uppercase;
}

.course-outline ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.course-outline li {
	position: relative;
	padding: 1rem 0 1rem 4.5rem;
	background: url("../img/icon-book.svg") no-repeat left center / 3.1rem auto;
}

.course-details .woocommerce-Price-amount {
	color: inherit;
	font-size: inherit;
}

@media (max-width: 768px) {
	.course-outline {
		flex: 1;
	}
}
/***** END COURSE DETAILS *****/

/***** END COURSE DETAILS *****/
.no-risk__container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 7rem;
	align-items: center;
	justify-content: center;
}

.no-risk__container .page-section__header {
	text-align: left;
	flex: 1;
	min-width: 300px;
	max-width: 800px;
}
/***** END COURSE DETAILS *****/

/***** TESTIMONIALS *****/
.testimonials__item {
	border-radius: .5rem;
	background: var(--color-accent);
	text-align: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4rem;
	padding: 5rem var(--container-padding);
}

.testimonials__item-title {
	color: inherit;
	font-size: 3.3rem;
	font-weight: 600;
	margin: 0;
	max-width: 900px;
}

.testimonials__item-author {
	font-size: 1.8rem;
}
/***** END TESTIMONIALS *****/

/***** FOOTER *****/
.site-footer {
	background: #000;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.5em;
	padding: 6rem 0 3rem;
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

.footer__widgets {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem 5rem;
}

.footer__widget {
	flex: 1;
	min-width: 300px;
}

.footer__widget-title {
	color: var(--color-accent);
	text-align: center;
}

.footer__widget--info {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.footer__widget--menus {
	display: flex;
	gap: 3rem;
	justify-content: flex-end;

	.menu {
		display: flex;
		flex-direction: column;
		margin: -0.5rem;
		flex: 1;
		max-width: 17rem;

		a {
			display: block;
			padding: 0.5rem;
		}
	}
}

.footer__subscribe {
	max-width: 340px;
	margin: 0 auto;
	font-size: 1.6rem;
	text-align: center;
}

.footer__copyright {
	border-top: 1px solid var(--color-accent);
	padding-top: 2rem;
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.3rem;
}

.footer__copyright .menu {
	display: flex;
	margin: -0.8em;
}

.footer__copyright .menu a {
	display: block;
	padding: 0.8em;
}

.footer__bottom .menu {
	font-size: 1.3rem;
	display: flex;
	justify-content: center;
	gap: 0 3em;
	flex-wrap: wrap;
	margin: -0.8em;

	a {
		color: var(--color-gray-medium);
		display: block;
		padding: 0.6em 0.8em;
	}
}

.billing-options {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.social-links {
	display: flex;
	margin: 0 -1.2rem;
}

.social-links a {
	display: flex;
	width: 4.5rem;
	height: 4.5rem;
	justify-content: center;
	align-items: center;
}

.social-links svg {
	width: 2.2rem;
	height: auto;
	pointer-events: none;
}

@media (max-width: 768px) {
	.footer__bottom {
		margin-top: 1rem;
	}
}
/***** END FOOTER *****/