/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.01
*/

@font-face {
	font-family: "Oswald";
	src: url("./fonts/Oswald.woff2") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Oswald";
	src: url("./fonts/Oswald-ru.woff2") format("woff");
	font-weight: normal;
	font-style: normal;
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: "Nunito";
	src: url("./fonts/Nunito.woff2") format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Roboto";
	src: url("./fonts/Roboto.woff2") format("woff");
	font-weight: normal;
	font-style: normal;
}

/**
 * Blog sections.
*/

.blog-section {
	padding: 40px 0;
}

.blog-section .column {
	margin-bottom: 0;
}

.blog-section__heading {
	color: #003a5d;
	font-family: "Oswald", sans-serif;
	font-style: normal;
	font-size: 1.25em;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.5;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
}

.blog-section__heading span {
	color: #d74b00;
}

.blog-section .facetwp-template.is-loading {
	opacity: 0.5;
}

.blog-section img {
	max-width: 100%;
	height: auto;
}

/**
 * Cards grid.
 */
.cards-grid {
	display: flex;
	flex-wrap: wrap;
	margin-left: -1rem;
	margin-right: -1rem;
}

.cards-grid__column {
	box-sizing: border-box;
	padding: 1rem;
	width: 100%;
}

@media ( min-width: 540px ) {
	.cards-grid__column {
		width: 50%;
	}
}

@media ( min-width: 960px ) {
	.cards-grid__column {
		width: 33.333%;
	}
}

@media ( min-width: 540px ) {
	.cards-grid--featured {
		display: grid;
		grid-gap: 1em;
		grid-template:
			'a a'
			'b c'
			'd e'
			/ 1fr 1fr;
		margin: 0;
	}

	.cards-grid--featured .cards-grid__column {
		padding: 0;
		width: 100%;
	}

	.cards-grid--featured .cards-grid__column:first-child {
		grid-area: a;
	}
}

@media ( min-width: 960px ) {
	.cards-grid--featured {
		grid-column-gap: 2em;
		grid-template:
			'a b' 1fr
			'a c' 1fr
			'a d' 1fr
			'a e' 1fr
			/ 1fr 1fr;
	}
}

.cards__no_result {
	text-align: center;
}

/**
 * Card.
 */
.card {
	background-color: #ffffff;
	box-shadow: 0px 0px 17px 0px rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.card__image {
	background: #eeeeee center center / cover no-repeat;
	display: block;
}

.card__title {
	color: #646464;
	font-family: 'Oswald', sans-serif;
	font-size: 1em;
	font-weight: 500;
	line-height: 1.25;
}

.card__title a:not(:hover) {
	color: inherit;
}

.card__contents {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1em;
}

.card__excerpt {
	display: none;
}

.card__resources .card__excerpt {
	display: block;
	margin-bottom: 0.875em;
}

.card__resources.cards-grid--featured .card__excerpt {
	display: none;
}

@media ( min-width: 540px ) {
	.card--primary-featured .card__excerpt, .card__resources.card--primary-featured .card__excerpt {
		display: block;
	}
}

@media ( min-width: 960px ) {
	.card--secondary-featured {
		flex-direction: row;
	}

	.card--secondary-featured .card__image-link {
		flex-shrink: 0;
		width: calc(50% - 1em);
	}

	.card--secondary-featured .card__image {
		width: 100%;
	}
}

.card__resources .card__image {
	height: auto;
	max-width: 100%;
	width: 100%;
}

.card__footer {
	align-items: center;
	display: flex;
	font-size: 0.875em;
	justify-content: space-between;
	margin-top: auto;
}

.card__footer a {
	color: inherit;
}

/**
 * Tags.
 */
.tags {
	list-style-type: none;
	margin-bottom: 0.75em;
}

.tags__tag {
	display: inline-block;
	margin-bottom: 0.5em;
	margin-right: 0.5em;
	vertical-align: top;
}

.tags__tag a,
.tags__tag span {
	background-color: var(--color-getac-ultra-light-grey);
	border-left: 0.25em solid #d74b00;
	color: #646464;
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 0.75em;
	font-weight: 500;
	line-height: 1;
	padding: 0.5em;
	text-transform: uppercase;
}

.tags__tag--category a {
	border-left-color: #646464;
}

@media ( min-width: 960px ) {
	.post-banner .tags {
		margin-bottom: 1.5em;
	}
}

/**
* Card author.
*/
.byline {
	align-items: center;
	display: flex;
}

.byline__avatar {
	background: #f1f1f1 url('../images/avatar.png') center center / contain no-repeat;
	border-radius: 50%;
	display: block;
	height: 2em;
	margin-right: 0.5em;
	width: 2em;
}

.byline__name {
	font-weight: 600;
}

.post-banner .byline__name {
	font-weight: bold;
}

@media ( min-width: 960px ) {
	.post-banner .byline__avatar {
		height: 3em;
		width: 3em;
	}
}

@media ( min-width: 540px ) {
	.card--secondary-featured .byline__avatar {
		height: 1.25em;
		width: 1.25em;
	}
}

.author-bio .byline__name {
	font-weight: bold;
}

.author-bio .byline__avatar {
	height: 3em;
	width: 3em;
}

@media ( min-width: 540px ) {
	.author-bio .byline__avatar {
		height: 5em;
		margin-right: 1em;
		width: 5em;
	}
}

/**
 * Author bio.
 */
.author-bio__description {
	margin-top: 1em;
}

/**
 * Blog pagination.
 */
.nav-links {
	font-weight: 600;
	margin-top: calc(40px - 1em);
	text-align: center;
}

.nav-links .page-numbers {
	color: inherit;
	display: inline-block;
	margin: 0.25em;
}

.nav-links .page-numbers.current {
	color: #d74b00;
}

/**
 * Screen reader text.
 */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

/**
 * Post banner.
 */
.post-banner {
}

.post-banner__image {
	background: #eeeeee center center / cover no-repeat;
	display: block;
}

.post-banner__heading {
	font-size: 2em;
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 1rem 0;
	text-transform: none;
}

.post-banner__date {
	color: var(--color-getac-grey);
	font-size: 0.875em;
}

.post-banner__content {
	align-items: start;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1em;
}

@media ( min-width: 960px ) {
	.post-banner {
		display: flex;
		flex-direction: row-reverse;
	}

	.post-banner__image,
	.post-banner__content {
		box-sizing: border-box;
		flex-grow: 1;
		width: 50%;
	}

	.post-banner__heading {
		font-size: 4vw;
		margin-bottom: 2rem;
	}

	.post-banner__content {
		padding-left: 6.25vw;
		padding-right: 6.25vw;
	}
}

/**
 * Article.
 */
.single-post #Wrapper,
.single-post #Content {
	background: #ffffff;
}

.article__content {
	box-sizing: border-box;
	font-size: 1.0625em;
	line-height: 1.6;
	margin: 1rem auto;
	padding: 0 1rem;
}

.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4 {
	color: #d74b00;
	font-family: 'Oswald', sans-serif;
	font-weight: normal;
	line-height: 1.1;
}

.article__content h2 {
	font-size: 1.5625em;
}

.article__content h3 {
	font-size: 1.25em;
}

.article__content h4 {
	font-size: 1.1em;
}

.article__content h5,
.article__content h6 {
	font-family: inherit;
	font-size: 1em;
	font-weight: 600;
}

.article__footer,
.article__footer .share-simple-wrapper {
	border-top: 1px solid var(--color-getac-grey);
	margin-bottom: 40px;
	margin-top: 40px;
	padding-top: 40px;
}

.article__footer .share-label {
	color: #003A5D;
	font-family: 'Oswald', sans-serif;
	font-size: 1.125em;
	text-transform: uppercase;
}

@media ( min-width: 960px ) {
	.article__content {
		margin-bottom: 60px;
		margin-top: 60px;
		min-width: 36em;
		width: 42vw;
	}
}

.filters {
	display: flex;
	margin: 0 -1em;
}

.filters__filter {
	--filters-min-width: 240px;

	box-sizing: border-box;
	padding: 0 1em;
	position: relative;
	min-width: var(--filters-min-width);
	width: 100%;
}

.filters__filter select {
	width: 100%;
}

@media ( min-width: 540px ) {
	.filters__filter {
		width: 50%;
	}
}

@media ( min-width: 960px ) {
	.filters__filter {
		width: 25%;
	}
}

.filters__filter-icon {
	position: absolute;
	inset-inline-end: 2rem;
	inset-block-start: 50%;
	transform: translateY(-50%);

}

.call-to-action {
	background: #003A5D;
	color: #ffffff;
	padding: 2em 1em 1em 1em;
	text-align: center;
}

.call-to-action__content {
	margin: 0 auto;
	max-width: 38em;
}

.call-to-action__heading {
	color: inherit;
	font-family: 'Oswald', sans-serif;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.call-to-action__button {
	display: block;
}

@media ( min-width: 540px ) {
	.call-to-action__button {
		display: inline-block;
		vertical-align: top;
	}
}

/**
 * Subscribe.
 */
.subscribe {
	background: var(--color-getac-orange);
	color: #ffffff;
	padding: 40px 0 calc(40px - 1em) 0;
}

.subscribe .column {
	margin-bottom: 0;
}

.subscribe__heading {
	color: inherit;
	font-family: 'Oswald', sans-serif;
	font-size: 1.2em;
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.subscribe__description {
	font-size: 0.875em;
}

/*
 * Resources Hub Variations.
 */

.page-template-page-resource-center #Content {
	background-color: #ffffff;
}

:root {
	/* **************** COLORS **************** */

	/* COMMON COLOR */
	--c-black:          #000000;
	--color-getac-grey: #8b8d8d;
	--color-getac-light-grey:       #efefef;

	/* CREATIVE PALETTE */
	--color-getac-medium-grey:      #646464;

	--color-getac-orange:           #d74b00;

	--color-getac-orange-dark:      #a53617;

	--color-getac-ultra-dark-grey:  #1a1a1a;

	--color-getac-ultra-light-grey: #f1f1f1;

	--c-white:          #ffffff;
}

.background-color-light {
	background-color: var(--c-white);
}

.background-color-dark {
	background-color: var(--color-getac-light-grey);
}

.background-color-extra-dark {
	background-color: var(--c-black);
}

/* Hide empty breadcrumb container on mobile */
@media only screen and (max-width: 960px) {
	.page-template-page-resource-center #Subheader {
		display: none;
	}
}

.resources-section {
	padding: 10px 0;
}

@media ( min-width: 540px ) {
	.resources-section {
		padding: 20px 0;
	}
}

@media ( min-width: 768px ) {
	.resources-section {
		padding: 40px 0 40px;
	}
}

/* Container - Override/match the main site container */
@media only screen and (max-width: 769px) {
	.container.card__resources {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
}

@media only screen and (min-width: 1240px) {
	.container.card__resources {
		max-width: 1125px;
	}
}

@media ( min-width: 960px ) {
	.card__resources.cards-grid--featured {
		grid-gap: 2em;
		grid-template:
			'a b' 1fr
			'a c' 1fr
			'a d' 1fr
			/ 1fr 1fr;
	}
}

.resources__section {
	padding-top: 0;
}

@media ( min-width: 540px ) {
	.resources__section {
		margin-bottom: 40px;
		margin-top: 40px;
	}
}

.resources__section + .resources__section {
	margin-bottom: 2rem;
}

.background-color-dark + .background-color-dark.resources__section {
	padding-top: 0;
}

.card__resources.card {
	box-shadow: none;
}

.card__resources .card__contents {
	padding: 1.5em 1.5em 1em;
}

.card__resources .card__title a {
	color: var(--color-getac-ultra-dark-grey);
	transition: color 0.25s ease-out;
}

.card__resources .card__title a:hover {
	color: var(--color-getac-medium-grey);
}

.card__resources .tags {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0.5em;
}

.card__resources .byline__date {
	align-items: center;
	display: flex;
	line-height: 1.2;
}

.card__resources .date__icon {
	display: block;
	height: 15px;
	margin-right: 0.5em;
	margin-top: 0.1em;
	width: 15px;
}

.card__resources .card__footer {
	font-size: 0.75rem;
	gap: 0.5em;
	justify-content: normal;
}

.card__resources .byline {
	flex: 1;
}

.card__resources .byline__name {
	line-height: 1;
	overflow-wrap: anywhere;
}

/**
 * Featured Section.
 */

/* Add a full bleed to featured post on mobile */
.card__resources.card--primary-featured {
	margin-left: -20px;
	margin-right: -20px;
	position: relative;
}

@media ( min-width: 768px ) {
	.card__resources.card--primary-featured {
		margin-left: 0px;
		margin-right: 0px;
	}
}

.card__resources.card--primary-featured .card__resources .card__contents {
	padding: 1.5em 2.5em 1em;
}

@media ( min-width: 768px ) {
	.card__resources.card--primary-featured .card__resources .card__contents {
		padding: 1.5em 1.5em 1em;
	}
}

.card__resources.card--primary-featured .card__contents {
	flex-grow: 0;
}

.card__resources.card--primary-featured .card__meta {
	left: 0;
	position: absolute;
	top: 0;
	z-index: 2;
}

.card__resources.card--primary-featured .card__kicker {
	background-color: var(--color-getac-orange);
	color: var(--c-white);
	display: block;
	font-family: 'Oswald', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.25rem 1rem;
	position: relative;
	text-transform: uppercase;
}

.card__resources.card--secondary-featured .byline__avatar {
	height: 2em;
	width: 2em;
}

.card__resources.card--secondary-featured {
	border: 0.125em solid var(--color-getac-light-grey);
	box-shadow: none;
}

@media only screen and (min-width: 1240px) {
	.card__resources.card--secondary-featured .card__contents {
		padding: 0.75em 1em;
	}

	.card__resources.card--secondary-featured .card__image-link {
		flex-shrink: 0;
		width: 300px;
	}

	.card__resources.card--secondary-featured .card__title {
		max-width: 200px;
	}
}

.card__resources.card--secondary-featured .card__image {
	aspect-ratio: 16/9;
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

@media only screen and (min-width: 768px) {
	.card__resources.card--secondary-featured .card__image {
		height: 100% !important;
	}
}

.card__resources.card--secondary-featured .tags {
	display: flex;
}

.card__resources .card__resources__heading__container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.resources__section .call-to-action__button {
	background: transparent;
	border: 1px solid var(--color-getac-medium-grey);
	color: var(--color-getac-medium-grey);
	display: inline-block;
	font-size: 0.85em;
	font-weight: 800;
	padding: 0.25em 0.5em;
	transition: color 0.25s ease-in;
}

.resources__section .call-to-action__button:hover,
.resources__section .call-to-action__button:focus {
	color: var(--color-getac-ultra-dark-grey);
}

/**
 * Lightweight Layout Variation.
 */
.card__resources .card__lightweight .card__contents {
	padding: 0;
}

@media only screen and (min-width: 768px) {
	.card__resources .card__lightweight .card__contents {
		padding: 0 0 0 1.5em;
	}
}
.card__resources .card__lightweight .tags {
	border-top: 0.125em solid var(--color-getac-light-grey);
	padding-top: 1.5em;
}

/**
 * Card White Paper Variation.
 */
.card__resources.card__white__paper {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border: 0.5em solid var(--c-white);
	min-height: 28em;
}

.card__resources.card__white__paper .card__contents {
	flex-grow: 0;
	padding: 1em;
}

.card__resources.card__white__paper .button {
	background-color: var(--color-getac-orange);
    border: 0;
    color: white;
	font-size: 0.875rem;
	font-weight: 500;
	padding: 0.5em;
}


/**
 * Card Quick Links Variation.
 */

.card__resources.card__quick__link {
	align-items: center;
	color: white;
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: 2em;
	text-align: center;
}


@media only screen and ( min-width: 540px ) {
	.card__resources.card__quick__link {
		padding: 3em;
	}
}

.card__resources.card__quick__link .card__icon__container {
	align-items: center;
	border-radius: 20px;
	display: flex;
	height: 100px;
	justify-content: center;
	width: 100px;
}

.card__resources.card__quick__link .card__contents {
	align-items: center;
}

.card__resources.card__quick__link .card__title {
	color: var(--color-getac-orange);
	font-weight: 700;
	text-align: center;
}

.card__resources.card__quick__link .card__title a {
	color: var(--color-getac-orange);
	display: block;
	position: relative;
	text-transform: uppercase;
	transition: color 0.25s ease-in;
}

.card__resources.card__quick__link .card__title a:hover,
.card__resources.card__quick__link .card__title a:focus {
	color: var(--color-getac-orange-dark);
}

.card__resources.card__quick__link .card__title a::after {
	background: var(--color-getac-orange);
	bottom: -0.5em;
	content: "";
	display: inline-block;
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.card__resources.card__quick__link .card__contents span {
	color: var(--color-getac-orange);
}

/**
 * Card template headings.
 */
.card__resources__heading {
	color: var(--c-black);
	font-family: 'Oswald', serif;
	font-size: 0.9375em;
	font-style: normal;
	font-weight: 100;
	line-height: 1.5;
	margin: 0.5rem 0;
	text-transform: uppercase;
}

@media ( min-width: 769px ) {
	.card__resources__heading {
		font-size: 1.25em;
	}
}

.card__resources__heading span {
	color: var(--c-black);
	font-weight: 700;
}

.card__resources__heading__search {
	margin: 1.5em 0;
}

/* card__resources__title class added manually to core heading */
.card__resources__title {
	color: var(--c-black);
	font-family: 'Oswald', serif;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1;
	margin: 0 auto;
	padding-top: 1em;
	text-transform: uppercase;
}

@media ( min-width: 769px ) {
	.card__resources__title {
		font-size: 1.875em;
	}
}

/* Match/replicate the container settings for core heading */
@media only screen and (max-width: 767px) {
	.card__resources__title {
		max-width: 650px !important;
		padding-left: 20px!important;
		padding-right: 20px!important;
	}
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
	.card__resources__title {
		max-width: 708px;
	}
}
@media only screen and (min-width: 960px) and (max-width: 1239px) {
	.card__resources__title {
		max-width: 940px;
		padding-left: 1%;
	}
}

@media only screen and (min-width: 1240px) {
	.card__resources__title {
		max-width: 1125px;
		padding-left: 1%;
	}
}

/**
 * Card Filters.
 */
.card__resources .filters-desktop {
	display: none;
	margin-bottom: -40px;
	margin-top: 40px;
}

@media ( min-width: 769px ) {
	.card__resources .filters-desktop {
		display: block;
	}
}

.card__resources .filters,
.search-results .filters {
	flex-flow: column;
	gap: 1.5em;
	margin-bottom: 2em;
}

@media ( min-width: 540px ) {
	.card__resources .filters__filter,
	.search-results .filters__filter {
		width: 100%;
	}
}

@media ( min-width: 769px ) {
	.card__resources .filters__filter {
		width: 25%;
	}
}

@media ( min-width: 769px ) {
	.card__resources .filters__filter--actions,
	.search-results .filters__filter--actions {
		display: flex;
		flex-wrap: nowrap;
		gap: 1em;
	}
}

@media ( min-width: 769px ) {
	.card__resources .filters,
	.search-results .filters {
		flex-flow: row;
		gap: 0;
	}
}

.card__resources .filters__filter .filter__dropdown__container,
.search-results .filters__filter .filter__dropdown__container {
	position: relative;
}

.search-results .filters__filter .filter__dropdown__container .facetwp-facet {
	margin-bottom: 0;
}

.card__resources .filters__filter select,
.search-results .filters__filter select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--c-white);
	background-image: none;
	border: 1px solid var(--color-getac-grey);
	color: var(--color-getac-medium-grey);
	display: block;
	float: right;
	font-family: 'Oswald', serif;
	font-size: 14px;
	font-weight: 800;
	height: 40px;
	line-height: 1.5;
	margin-bottom: 0;
	max-width: 100%;
	padding: 0 24px;
	text-transform: uppercase;
	width: 100%;
	word-break: normal;
}

@media ( min-width: 769px ) {
	.card__resources .filters__filter select,
	.search-results .filters__filter select {
		height: 50px;
		line-height: 1.75;
		max-width: 261px;
	}
}

.card__resources .filters__filter .filter__dropdown__container::after,
.search-results .filters__filter .filter__dropdown__container::after {
	color: var(--color-getac-orange);
	content: ">";
	font-family: 'Oswald', serif;
	font-size: 1.1em;
	padding: 0 0 2px;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 5px;
	transform: rotate(90deg);
}

@media ( min-width: 769px ) {
	.card__resources .filters__filter .filter__dropdown__container::after,
	.search-results .filters__filter .filter__dropdown__container::after {
		top: 11px;
	}
}

.card__resources .filters__filter .button,
.search-results .filters__filter .button {
	align-items: center;
	background-color: var(--color-getac-orange);
	border: 0;
	color: white;
	display: inline-flex;
	flex-grow: 1;
	font-size: 0.875rem;
	font-weight: 500;
	height: auto;
	padding: 0.5em 0.75em;
}

@media ( min-width: 769px ) {
	.card__resources .filters__filter .button,
	.search-results .filters__filter .button {
		font-size: 20px;
		height: 100%;
		justify-content: center;
	}
}

/* Resources Hero */
.resources__hero * {
	box-sizing: border-box;
}

@media only screen and (max-width: 769px) {
	.resources__hero .card__resources {
		max-width: none !important;
	}
}

@media ( min-width: 769px ) {
	.resources__hero {
		padding-bottom: 40px;
		padding-top: 40px;
	}
}

.resources__hero__wrap {
	background: var(--c-black);
	display: flex;
	flex-flow: column;
	gap: 2em;
}

@media ( min-width: 769px ) {
	.resources__hero__wrap {
		flex-flow: row;
	}
}

.resources__hero__intro {
	display: flex;
	flex-flow: column nowrap;
	margin-top: 1em;
	width: 100%;
}

@media ( min-width: 769px ) {
	.resources__hero__intro {
		margin-top: 0;
	}
}

.resources__hero__intro__content {
	color: var(--c-white);
	max-width: 530px;
}

.resources__hero__intro__content__heading {
	color: var(--c-white);
	font-size: 35px;
	font-weight: 500;
	line-height: 1.2;
}

@media ( min-width: 769px ) {
	.resources__hero__intro__content__heading {
		font-size: 65px;
		line-height: 65px;
	}
}

.resources__hero__intro__content__desc {
	display: none;
	font-size: 17px;
	line-height: 25px;
}

@media ( min-width: 769px ) {
	.resources__hero__intro__content__desc {
		display: block;
	}
}

.resources__hero__search {
	align-items: center;
	background: var(--color-getac-light-grey);
	display: flex;
	flex: 0 0 auto;
	flex-flow: column nowrap;
	margin: 0 calc(20px * -1) 0;
}

@media ( min-width: 769px ) {
	.resources__hero__search {
		flex: auto;
		margin: 0 auto 40px;
		width: 100%;
	}
}

@media ( min-width: 960px ) {
	.resources__hero__search {
		flex: 0 0 435px;
	}
}

.resources__hero__search form input {
	appearance: none;
	background-color: var(--c-white);
	border: solid 1px;
	border-right-style: none;
	color: #000;
	font-family: Nunito, serif;
	margin: 0;
	outline: 0;
	padding: 0 1em;
	width: 100%;
}

@media ( min-width: 769px ) {
	.resources__hero__search form input {
		padding: 1em 1.5em;
	}
}

.resources__hero__search form input ::placeholder {
	color: #444444;
	font-style: normal;
	opacity: 1;
}

.resources__hero__fields-wrap input[type="search" i]:focus::-webkit-search-cancel-button,
.resources__hero__fields-wrap input[type="search" i]::-webkit-search-cancel-button {
	-webkit-appearance: none;
	background-image: url("./images/search-clear.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	display: block;
	height: 11px;
	pointer-events: all;
	position: relative;
	right: 0;
	visibility: visible;
	width: 0.75em;
}

.resources__hero__fields-wrap input[type="search" i]:placeholder-shown {
	background-image: none;
}

.resources__hero__search form input:focus,
.resources__hero__search form input:focus-within {
	background-color: #ffffff !important;
	border-color: var(--color-getac-grey);
	color: var(--c-black);
}

.resources__hero__search form button,
[role="button"],
[type="button"],
[type="reset"],
[type="submit"] {
	cursor: pointer;
}

.resources__hero__search .resources__hero__form__wrap {
	font-family: Nunito, serif;
	padding: 1em;
	width: 100%;
}

@media ( min-width: 769px ) {
	.resources__hero__search .resources__hero__form__wrap {
		padding: 2em;
	}
}

.resources__hero__search .resources__hero__fields-wrap {
	display: flex;
	flex: 1 0 48px;
	margin-bottom: 0;
	position: relative;
}

@media ( min-width: 769px ) {
	.resources__hero__search .resources__hero__fields-wrap {
		margin-bottom: 1em;
	}
}

.resources__hero__search .resources__hero__input-term {
	display: flex;
}

.resources__hero__search .resources__hero__submit {
	align-items: center;
	background-color: var(--color-getac-orange);
	border: 0;
	border-radius: 0;
	box-shadow: none;
	display: flex;
	height: 35px;
	justify-content: center;
	padding: 1em;
	width: 35px;
}

@media ( min-width: 769px ) {
	.resources__hero__search .resources__hero__submit {
		height: 100%;
		width: 48px;
	}
}

.resources__hero__search .resources__hero__tags__heading {
	color: var(--color-getac-medium-grey);
	display: block;
	font-size: 17px;
	font-weight: 700;
	padding-bottom: 0.4em;
}

.resources__hero__search .resources__hero__tags {
	display: none;
}

@media ( min-width: 768px ) {
	.resources__hero__search .resources__hero__tags {
		display: block;
	}
}

.resources__hero__search .resources__hero__tags ul {
	display: flex;
	flex-flow: row wrap;
	font-size: 14px;
	gap: 0.5em;
}

.resources__hero__search .resources__hero__tags ul li {
	align-items: center;
	background: var(--color-getac-medium-grey);
	color: var(--c-white);
	display: flex;
	font-size: 14px;
	line-height: 1;
}

.resources__hero__search .resources__hero__tags ul li a {
	color: var(--c-white);
	padding: 0.5em;
	transition: background-color 0.25s ease-in;
}

.resources__hero__search .resources__hero__tags ul li a:hover,
.resources__hero__search .resources__hero__tags ul li a:focus {
	background-color: var(--c-black);
	text-decoration: none;
}

/* Toggle Filter Content Wrap */
.filters-toggle__filters-container .filters-toggle__flexible-tools {
	align-items: center;
	display: flex;
	flex-flow: row wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Add odd 1% margin-left to match existing site */
@media ( min-width: 768px ) {
	.filters-toggle__filters-container .filters-toggle__flexible-tools {
		display: block;
		margin-bottom: -40px;
		margin-left: 1%;
		margin-top: 40px;
	}
}

.filters-toggle__filters-container .filters-toggle__flexible-tool[aria-hidden="true"] {
	display: none;
}

.filters-toggle__filters-container .filters-toggle__flexible-tool--cta a {
	padding: 1em;
}

.filters-toggle__filters-container .filters-toggle__flexible-tool--filter {
	align-items: center;
	display: flex;
	flex-flow: column;
	inset: 1em 0 auto 0;
	justify-content: stretch;
	opacity: 0;
	padding: 1em 1em 2em;
	position: fixed;
	transform: translateX(-100%);
	transition: opacity 0.25s ease-in;
	visibility: hidden;
	z-index: 100;
}

@media ( min-width: 769px ) {
	.filters-toggle__filters-container .filters-toggle__flexible-tool--filter {
		inset: auto;
		opacity: 1;
		padding: 0;
		position: relative;
		transform: translateX(0);
		transition: opacity 0.2s ease-in;
		visibility: visible;
	}
}

.filters-toggle__filters-container .filters-toggle__flexible-tool--filter  > * {
	gap: 2em;
	position: relative;
	width: 100%;
	z-index: 102;
}

.filters-toggle__filters-container .filters-toggle__flexible-tool--filter .filters__filter {
	padding: 0;
}

/* Visible state */
.filters-toggle__filters-container .filters-toggle__flexible-tool--filter[aria-hidden="false"] {
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.2s ease-in;
	visibility: visible;
}

/* Toggle Filter Trigger */
a.filters-toggle__filters-toggle {
	position: relative;
	text-decoration: none;
}

a.filters-toggle__filters-toggle:active,
a.filters-toggle__filters-toggle:focus,
a.filters-toggle__filters-toggle:hover {
	text-decoration: none;
}

a.filters-toggle__filters-toggle[aria-hidden="true"] {
	display: none;
	visibility: hidden;
}

a.filters-toggle__filters-toggle[aria-hidden="false"] {
	display: block;
	visibility: visible;
}

a.filters-toggle__filters-toggle .filters-toggle__filters-toggle-icon {
	display: block;
	height: 35px;
	margin-left: 1.25rem;
	width: 35px;
}

a.filters-toggle__filters-toggle[aria-expanded="true"]::before {
	height: 16px;
	opacity: 1;
}

.filters__reset {
	color: var(--color-getac-orange);
	display: none;
	font-size: 14px;
	visibility: hidden;
}

.filters__reset:hover {
	color: var(--color-getac-orange);
	text-decoration: none;
}

.card__resources .filters__reset.button {
    background-color: transparent;
	border: 2px solid var(--color-getac-orange);
	color: var(--color-getac-orange);
    font-size: 14px;
    line-height: 1.2;
	margin: 0;
	text-align: center;
}

.resources_search__reset {
	text-align: right;
}

@media ( min-width: 769px ) {
	a.filters-toggle__filters-toggle {
		display: none;
		visibility: hidden;
	}

	.filters .filters__reset{
		display: inline-block;
		line-height: 0.75em;
		margin-left: 10px;
		vertical-align: bottom;
		visibility: visible;
	}
}

@media ( max-width: 769px ) {
	.resources__hero__form .filters__reset {
		display: inline-block;
		margin-top: 10px;
		visibility: visible;
	}
}

/* Hide page overflow when toggled filter is active */
.js-hide-overflow {
	overflow: hidden;
}

/* Toggle Overlay BG */
.filters-toggle__shim {
	background: #ffffff;
	inset: 0 0 0 0;
	opacity: 0;
	position: fixed;
	transform: translateX(-100%);
	visibility: hidden;
	z-index: 99;
}

.js-filters-is-visible .filters-toggle__shim {
	opacity: 1;
	transform: translateX(0);
	visibility: visible;
}

.filters-toggle__heading__wrap {
	align-items: center;
	display: flex;
	gap: 1em;
	justify-content: space-between;
	margin-bottom: 1em;
}

@media ( min-width: 769px ) {
	.filters-toggle__heading__wrap {
		display: none;
	}
}

.filters-toggle__heading {
	color: #000000;
	font-family: Oswald, serif;
	font-size: 20px;
	font-weight: 700;
	margin: 0;
	text-transform: uppercase;
}

button.filters-toggle__filters-close-icon {
	align-items: center;
	background-color: transparent;
	border: 0;
	box-shadow: none;
	display: flex;
	padding-right: 0;
}

.resources__no_result {
    margin: 0;
    padding-top: 20px;
    text-align: center;
}

/**
 * Product Card Update.
 */

.product__card {
	--getac-dark-grey: #646464;
	--getac-orange: #d3461e;
}

.product__card .product-filter-items {
	height: auto !important;
	margin: 0 auto;
	max-width: 80%;
	text-align: center;
}

.product__card .product-filter-title {
	font-size: 20px !important;
	text-align: center;
}

.product__card .filter-learn-more {
	text-align: center;
}

.product__card .product-filter-title-container {
	font-family: 'Oswald', sans-serif;
	height: auto !important;
}

.product__card .product__category {
	color: #d3461e;
	font-size: 0.75em;
}

.product__card p {
	color: var(--getac-dark-grey);
	font-size: 0.75em;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 0;
	margin-top: 0.25em;
}

.product__card.fwpl-result {
	padding: 1.5em 0.75em !important;
	border: 1px solid #ccc;
	font-size: 16px;
}

.product__card .filter-learn-more {
	padding: 0.75em 0 0.5em 0 !important;
}

.product__card .product__link {
	text-align: center;
}

.fwpl-layout.products-filter-layout {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
}

/* Product Cards with Label, eg 'New' */
.product__card-has-label{
	overflow: hidden;

	position: relative;
	--angle-size: 75px;
}

.product__card-has-label.--new-product::after {
	border-color: #d3461e transparent;
	border-style: solid;
	border-width: var(--angle-size) var(--angle-size) 0 var(--angle-size);
	content: "";
	display: block;
	height: 0;
	inset: 0 calc(var(--angle-size) * -1) auto auto;
	position: absolute;
	right: calc(var(--angle-size) * -1);
	width: 0;
	z-index: 4;
}

.product__card .product__card-label {
	color: white;
	display: flex;
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.1;
	max-width: 35px;
	position: absolute;
	right: 0.3rem;
	text-align: center;
	text-transform: uppercase;
	top: 0.5rem;
	word-break: break-word;
	z-index: 5;
}

.product__card .filter-learn-more button {
	align-items: center;
	border: 0;
	color: white;
	display: inline-flex;
	flex-grow: 1;
	font-family: 'Oswald', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	height: auto;
	line-height: 1;
	padding: 0.75em;
	text-transform: uppercase;
}

.product__card .filter-learn-more button:hover::after {
	width: 0;
}

.product__card .filter-learn-more a:hover {
	text-decoration: none;
}
/* END Resources updates */

/* Homepage - latest news component update 2022 */

/**
 *  Homepage - latest news component update 2022.
 *  Design taken from PDF Mockup
 *  Using class defined in cms via muffin builder
 */

.latest-posts-section .card__contents {
	padding: 1.25rem 0 0;
}

.latest-posts-section .card__resources .card__title a {
	color: #59595a;
	font-weight: 700;
	font-size: 20px;
}

.latest-posts-section .card__resources__heading {
    font-family: Oswald;
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    line-height: 65px;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 40px;
}

.latest-posts-section .call-to-action__button {
	color: #D3461E;
	font-family: "Nunito",Helvetica,Arial,sans-serif;
    font-size: 20px;
	font-weight: 700;
}

.latest-posts-section .byline__date{
	margin-bottom: 8px;
}

@media only screen and (min-width: 1240px) {
	.latest-posts-section .container.card__resources {
		max-width: inherit;
	}
}

/* Badges on product cards */
.product__card .badges__container {
	display: grid;
	grid-template-columns: auto;
}

@media ( min-width: 480px ) {
	.product__card .badges__container {
		display: grid;
		grid-template-columns: 1fr 5fr 1fr;
	}
}

.product__card .badges__wrap__desktop {
	display: none;
}

@media ( min-width: 480px ) {
	.product__card .badges__wrap__desktop {
		display: block;
	}
}

.product__card .badges__wrap__mobile {
	display: block;
}

@media ( min-width: 480px ) {
	.product__card .badges__wrap__mobile {
		display: none;
	}
}

.product__card .badges__list {
	align-items: flex-start;
	display: flex;
	flex-flow: column;
	flex-wrap: wrap;
	gap: 0.125em;
	list-style: none;
	margin: 0;
}

.product__card .badges__wrap__mobile .badges__list {
	flex-flow: row;
	justify-content: center;
	margin: 1em auto;
}

.product__card button.badges__list__item-badge {
	--icon-size: 45px;

	background-color: transparent;
	background-image: url("./images/badge-1.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border: 0;
	box-shadow: none;
	cursor: pointer;
	display: block;
	height: var(--icon-size);
	overflow: visible;
	padding: 0;
	pointer-events: all;
	position: relative;
	visibility: visible;
	width: var(--icon-size);
}

.product__card button.badges__list__item-badge:hover::after {
	width: 0;
}

.product__card .badges__list__item-tooltip {
	display: block;
	height: 0.75em;
	position: absolute;
	right: -0.75em;
	top: 0;
	width: 0.75em;
}

.product__card .filter-product-image {
	height: auto !important;
}

.product__card .filter-product-image img {
	aspect-ratio: 1;
	max-width: 100%;
	object-fit: contain;
}

.product__card .badges__container-tooltip {
	align-items: center;
	background: white;
	border: 0.001em solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 0.25em 0.375em rgba(0, 0, 0, 0.2);
	display: flex;
	flex-flow: column;
	justify-content: center;
	left: 50%;
	margin: 0 auto;
	opacity: 0;
	padding: 1.5em;
	position: absolute;
	top: 1em;
	transform: translate(-50%, -100%);
	visibility: hidden;
	width: 66%;
	z-index: 10;
}

.product__card .badges__container-tooltip.tooltip-show {
	opacity: 1;
	transform: translate(-50%, 0%);
	visibility: visible;
}

.product__card .tooltip-open {
	display: block;
}

.product__card .tooltip-open:hover,
.product__card .tooltip-open:focus {
	text-decoration: none !important;
}

.product__card .badges__wrap__tooltip-badges .badges__list {
	flex-flow: row;
	justify-content: center;
	margin: 0 auto 1em;
}


.product__card .badges__tooltip-list {
	font-family: "Nunito", sans-serif;
	font-size: 0.75em;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	text-align: left;
	list-style: none;
	margin: 0;
}

.product__card .badges__tooltip-list-item-heading {
	color: var(--color-getac-orange);
	font-size: 1.25em;
}

.product__card .badges__tooltip-list-item-desc {
	font-size: 1em;
	line-height: 1.2;
}

.product__card .cta button {
	align-items: center;
	border: 0;
	color: white;
	display: inline-flex;
	flex-grow: 1;
	font-family: 'Oswald', sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	height: auto;
	line-height: 1;
	padding: 0.75em;
	text-transform: uppercase;
}

/* Product Card Latest Resources */
.card__resources__title.product__card__title {
	color: var(--color-getac-orange);
	text-align: center;
}

@media ( min-width: 769px ) {

	.card__resources__title.product__card__title {
		font-size: 2.875em;
	}
}

.card__resources.product__card {
	border-color: #cccccc;
	border-style: solid;
	border-width: 0.125em;
	padding: 2em 2em 1em;
}

.card__resources.product__card .card__image {
	aspect-ratio: 1;
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

.card__resources.product__card .card__title {
	font-family: 'Nunito', Helvetica, Arial, sans-serif;
}

.card__resources.product__card .card__contents {
	padding: 1.5em 0 1em;
	text-align: center;
}

.card__resources.product__card .card__excerpt {
	color: var(--getac-dark-grey);
	font-size: 0.75em;
	font-weight: 600;
	line-height: 1.4;
	margin-bottom: 1.5em;
	margin-top: 0.25em;
}

.listing-filters .column_attr {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
}

.listing-filters .column_attr > p:first-child:not(:empty) {
	display: inline-block;
	margin: 0 1em 0 0;
	text-transform: uppercase;
	white-space: nowrap;
}

.listing-filters .facetwp-facet {
	display: flex;
	flex: 0 1 230px;
	margin: 0 1em 0 0;
}

.listing-filters .facetwp-facet input,
.listing-filters .facetwp-facet select {
	border-color: #e2e2e2;
	border-radius: 5px;
	flex: 0 1 100%;
	min-width: auto;
	width: 100%;
}

.listing-filters .facetwp-facet select {
	background-position: right 10px top 55%;
	background-size: 1em;
	margin: 0;
	padding: 10px 25px 10px 15px;
}

.listing-filters .facetwp-facet-search {
	flex: 1 1 auto;
	min-width: auto;
	margin-left: auto;
	margin-right: 0;
	max-width: 32%;
	width: 100%;
}

.listing-filters .facetwp-facet-search .facetwp-icon {
	left: 5px;
	right: auto;
}

.listing-filters .facetwp-facet-search .facetwp-icon:before {
	background-position: 8px 50%;
    background-size: 0.75em;
}

.listing-filters .facetwp-facet-search .facetwp-icon.f-loading:before {
	background-position: 5px 50%;
    background-size: 20px;
}


.listing-filters .facetwp-facet input.facetwp-search {
	min-width: auto !important;
	padding: 10px 15px 10px 35px;
}

.listing-filters .facetwp-facet-search .facetwp-input-wrap {
	width: 100%;
}

/**
 * Success Stories.
 */

.success-stories {

	--success-story-color-bg: var(--global--pal--white);
	--success-story-color-accent: var(--global--pal--red--m);
	--success-story-color-accent-over: var(--global--pal--white);
	--success-story-content-z-index: 10;
	--success-story-content-width: 1230px;
	--success-story-padding-h: 10%;
	--success-story-padding-v: 75px;

	background: var(--success-story-color-bg);
	padding: var(--success-story-padding-v) 0;
}

.success-stories__story {
	display: grid;
	grid-template-columns: minmax(var(--success-story-padding-h), 1fr) minmax(auto, var(--success-story-content-width)) minmax(var(--success-story-padding-h), 1fr);
	grid-template-rows: auto;
}

.success-stories__story-media {
	aspect-ratio: 1 / 1;
	background: rgba(0, 0, 0, 0.1);
	grid-column: 1 / span 3;
	grid-row: 1;
	object-fit: cover;
	width: 100%;
	z-index: calc(var(--success-story-content-z-index) - 1);
}

@media ( min-width: 768px ) {

	.success-stories__story-media {
		aspect-ratio: 1440 / 680;
		max-height: min(680px, 70vh);
	}
}

.success-stories__story-content {
	align-self: end;
	box-sizing: border-box;
	color: var(--success-story-color-accent-over);
	font-weight: bold;
	grid-column: 2 / span 1;
	grid-row: 1;
	justify-self: stretch;
	padding: 64px 50px 34px 50px;
	position: relative;
	transform: translateY(var(--success-story-padding-v));
	z-index: var(--success-story-content-z-index);
}

@media ( min-width: 768px ) {

	.success-stories__story-content {
		justify-self: center;
		max-width: 490px;
	}
}

@media ( min-width: 960px ) {

	.success-stories__story-content {
		justify-self: end;
		margin-right: 80px;
	}
}

/* Background colour */
.success-stories__story-content:before {
	background: var(--success-story-color-accent);
	content: "";
	display: block;
	inset: 0;
	position: absolute;
	z-index: calc(var(--success-story-content-z-index) + 2);
}

/* Shadow */
.success-stories__story-content:after {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10%;
	content: "";
	display: block;
	filter: blur(1.5rem);
	inset: 10% 10% -2% 10%;
    opacity: 0.4;
	position: absolute;
	z-index: calc(var(--success-story-content-z-index) + 1);
}

.success-stories__story-content > * {
	margin: 0;
}

.success-stories__story-content > * + * {
	margin-top: 20px;
}

.success-stories__content-link {
	display: inline-block;
	font-size: 18px;
}

.success-stories__content-link:hover,
.success-stories__content-link:focus {
	color: inherit;
}

.success-stories__quote {
	background: none;
	color: inherit;
	font-size: 24px;
	line-height: normal;
	position: relative;
	top: auto;
	z-index: calc(var(--success-story-content-z-index) + 3);
}

.success-stories__quote:after {
	color: var(--success-story-color-accent-over);
	left: 20px;
	top: -64px;
	transform: rotate(180deg) translateY(50%);
}

.success-stories__content-link {
	color: inherit;
	display: inline-block;
	margin-left: 0.5em;
}

.success-stories__content-link .icon {
	display: inline-block;
	transition: transform .2s ease-in-out;
}

.success-stories__content-link:hover .icon,
.success-stories__content-link:focus .icon {
	transform: translateX(15%);
}


.success-stories__author {
	align-items: center;
	display: flex;
	flex-flow: row nowrap;
	position: relative;
	z-index: calc(var(--success-story-content-z-index) + 3);
}

.success-stories__author-image {
	aspect-ratio: 1 / 1;
	border-radius: 100%;
	display: block;
	flex: 0 0 auto;
	margin: 0 1.25em 0 0;
	object-fit: scale-down;
	width: 65px;
}

.success-stories__author-citation {
	flex: 0 1 auto;
	font-size: 16px;
}

.success-stories__author-citation > * {
	display: block;
	margin: 0;
}

.success-stories__author-citation > * + * {
	margin-top: 0.05em;
}

.success-stories__cta {
	background-color: var(--success-story-color-accent-over);
	background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 0 100%;
	border-radius: 5px;
	color: var(--success-story-color-accent);
	display: inline-block;
    position: relative;
    padding: 10px 20px;
    font-size: inherit;
    overflow: hidden;
    text-decoration: none!important;
    cursor: pointer;
    border-style: solid;
    transition: color .1s ease-in-out, background-color .1s ease-in-out, background-size .2s ease-in-out;
	z-index: calc(var(--success-story-content-z-index) + 3);
}

.success-stories__cta:hover,
.success-stories__cta:focus {
	background-color: var(--success-story-color-accent-over);
	background-size: 100% 100%;
	color: var(--success-story-color-accent);
}

/* Blog Psuedo Heading
* Styles necessary from the blog page theme and settings
*/

.heading-psuedo-container {
	background: rgba(26, 26, 26, 1);
	display: block;
	width: 100%;
}

.heading-psuedo {
	align-items: flex-start;
	display: flex;
	flex-wrap: wrap;
	margin: -30px auto 0;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.heading-psuedo {
		max-width: 700px!important;
		padding-left: 33px!important;
		padding-right: 33px!important;
	}
}

@media only screen and (min-width: 960px) and (max-width: 1239px) {
	.heading-psuedo {
		max-width: 940px;
	}
}

@media only screen and (min-width: 1240px) {
	.heading-psuedo {
		max-width: 1240px;
	}
}

.heading-psuedo .new-style-headline {
	font-size: 36px;
	line-height: 48px;
	font-weight: 300;
	color: white;
}

/**
 * Search Archive Update 2023.
 */

 .search-results .posts_group {
	display: grid;
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

@media only screen and (min-width: 767px) {

	.search-results .posts_group {
		grid-template-columns: 1fr 1fr;
	}
}

.search-results .search-item {
	margin-bottom: 0;
}

.search-results .search-item p {
	margin-bottom: 0;
}

.search-results .search-item .post-featured-image {
	margin-right: 1.5rem;
}

.search-results .posts_group .post-title h4 {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 5px;
}

.search-results .posts_group .search-footer {
	display: none;
}

.search-results .pager {
	margin-bottom: 2rem;
}

.search-results .filters {
	margin: 2rem -1rem 0;
	width: 100%;
}

@media only screen and (min-width: 540px) {
	.search-results .filters {
		width: 60%;
	}
}

@media only screen and (min-width: 768px) {
	.search-results .filters {
		margin-left: auto;
		width: 50%;
	}
}

.search-results .facetwp-pager {
	text-align: center;
}

.hidden {
	display: none;
	visibility: hidden;
}
