/** 
 * Theme Name: Pegasus Equine
 * Author: Central States Marketing
 * Author URI: https://www.centralstatesmarketing.com/
 * Description: This site was built by Central States Marketing. For more information about the site or this custom WordPress theme, you can contact Central States Marketing at: info@csm.marketing or call us at: 309-693-2345.
 * Version: 1.0.0
 *
 * @package pegasus
 * @charset "UTF-8"
 */



/* ----- CUSTOM CSS PROPERTIES ----- */
:root {
	--blue: 0, 0, 57;
	--yellow: 212, 175, 54;
	--light-grey: 217, 224, 227;

	--page-width: 80vw;
	--gutter: 2rem;
	--max-w-content: 85rem;
	--small: 4rem;
	--large: 10rem;
	--row-spacing: 4rem;
}
@media screen and (max-width: 1200px) {
	:root {
		--small: 2rem;
		--large: 4rem;
	}
}
@media screen and (max-width: 800px) {
	:root {
		--page-width: 90vw;
	}
}



/* ----- GENERAL ----- */
html.no-scroll {
	overflow-y: hidden;
}
html,
body {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
body {
	margin: 0;
	font-family: futura-pt, sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 10px;
	margin-bottom: 20px;
	line-height: 1.2em;
	font-family: arno-pro, serif;
	text-transform: uppercase;
	color: rgb(var(--blue));
	text-wrap: balance;
}
h1 {
	font-size: 5rem;
	letter-spacing: 0.04em;
}
h2 {
	font-size: 2.5rem;
	letter-spacing: 0.1em;
}
h3 {
	font-size: 2rem;
	letter-spacing: 0.1em;
}
h4 {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}
h5 {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
}
h6 {
	font-size: 1.4rem;
	letter-spacing: 0.1em;
}
p {
	font-size: 1.25rem;
}
img,
iframe {
	max-width: 100%;
}
iframe {
	aspect-ratio: 16 / 9;
	height: 100%;
	width: 100%;
}
:where(.menu, .sub-menu) {
	margin: 0;
	padding: 0;
	list-style: none;
}
main ul,
main ol {
	list-style-position: outside;
}
main ul li,
main ol li {
	margin-bottom: 0.5rem;
}
main a {
	text-decoration: none;
	color: rgb(var(--blue));
	transition: all 0.2s ease-in;
}
main a:hover {
	color: rgb(var(--yellow));
	transition: all 0.15s ease-out;
}
.intro-slider .center-align,
.intro-title .center-align,
main .center-align {
	text-align: center;
}
main .right-align {
	text-align: right;
}
@media screen and (max-width: 800px) {
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin-top: 5px;
		margin-bottom: 10px;
	}
	h1 {
		font-size: 2.6rem;
	}
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.2rem;
	}
}



/* ----- BUTTONS ----- */
a.btn, input.gform_button {
	text-decoration: none;
	color: #fff;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.4rem 1.5rem;
	cursor: pointer;
	border-radius: 0.5rem;
	margin: 1rem 1rem 1rem 0;
	width: fit-content;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	border: none;
	transition: all 0.2s ease-in;
}
a.btn:hover, input.gform_button:hover {
	transition: all 0.15s ease-out;
}
.center-align a.btn {
	margin: 2rem 1rem 1rem 1rem;
}
.right-align a.btn {
	margin: 2rem 1rem 1rem 0;
}
a.btn-primary, input.gform_button {
	color: #fff;
	background: rgb(var(--blue));
}
a.btn-primary:hover, input.gform_button:hover {
	color: rgb(var(--blue));
	background: rgb(var(--yellow));
}
.yellow-fill a.btn-primary:hover {
	background: #fff;
}
a.btn-secondary {
	color: rgb(var(--blue));
	background: rgb(var(--yellow));
}
a.btn-secondary:hover {
	color: #fff;
	background: rgb(var(--blue));
}
.intro-slider a.btn-outline {
	color: #fff;
	outline: 3px solid #fff;
	outline-offset: -3px;
}
.intro-slider a.btn-outline:hover {
	background: #fff;
	color: rgb(var(--blue));
}
.intro-slider a.btn-fill {
	color: #000;
	background: #fff;
}
.intro-slider a.btn-fill:hover {
	color: rgb(var(--blue));
}



/* === Navigation === */
.site-header {
	position: relative;
	z-index: 1000;
}
.site-header {
	background-color: rgb(var(--blue));
}
.site-header__wrapper {
	padding: 1rem var(--gutter);
	background-color: rgb(var(--blue));
	position: relative;
	z-index: 1000;
}
.site-branding img {
	max-width: 180px;
	height: auto;
}
.main-navigation {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	.menu {
		display: flex;
		gap: 2rem;
	}
	.menu-item a {
		color: #fff;
		text-decoration: none;
		text-transform: uppercase;
		font-weight: 700;
		font-size: 1.1rem;
	}
}
.site-header .menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.menu-item {
	position: relative;
}
.sub-menu {
	display: none;
	position: absolute;
	align-items: center;
}
.site-header .menu-item:has(.sub-menu):hover .sub-menu {
	display: flex;
	flex-direction: column;
}
.right-menu {
	justify-self: end;
}
.right-menu .menu {
	justify-content: end;
}
@media (width > 950px) {
	.menu-toggle {
		display: none;
	}
}
@media (width <= 950px) {
	.site-branding img {
		max-width: 100px;
	}
	.main-navigation {
		grid-template-columns: 1fr auto;
	}
	.menu-container {
		display: none;
	}
}



/* ----- Drawer ----- */
.drawer {
	position: absolute;
	top: calc(100% - 1px);
	right: 0;
	width: 100%;
	background-color: rgb(var(--blue));
	z-index: 999;
	transform: translateY(-150%);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
	transition: transform 0.25s ease;
}
:is(.drawer, .menu-toggle) svg {
	width: 2rem;
	height: 2rem;
	fill: #fff;
}
.drawer.is-open {
	transform: translateY(0px);
}
.drawer__wrapper {
	display: flex;
	flex-direction: column;
	align-items: end;
	justify-content: space-between;
	height: 100%;
	padding: 2rem var(--gutter) 4rem;
}
.drawer__nav {
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.drawer .menu-main-menu-container {
	height: 100%;
}
.drawer .menu {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.drawer .menu-item a {
	display: block;
	font-size: var(--fs-lg);
	padding-block: 1rem;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}
.drawer .sub-menu .menu-item a {
	padding: 0.5rem 0;
}
.drawer .sub-menu {
	display: none;
}
.drawer .sub-menu .menu-item a {
	font-size: var(--fs-md);
}
.menu-toggle {
	background: none;
	border: none;
}
.menu-toggle svg {
	color: #fff;
}



/* ----- INTRO SLIDER ----- */
.intro-slider {
	position: relative;
}
.intro-slider .metaslider .ms-image {
	border-image: fill 0 linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)) !important;
	z-index: unset !important;
}
.intro-slider .metaslider .ms-image img {
	position: relative;
	z-index: -1;
}
.intro-slider .metaslider .caption-wrap {
	position: unset;
	bottom: unset;
	background: unset;
	color: unset;
	opacity: unset;
	margin: unset;
	display: unset;
	width: unset;
	line-height: unset;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: calc((100% - var(--page-width)) / 2);
	max-width: var(--page-width);
	margin-inline: auto;
}
.intro-slider .caption-wrap .caption__title {
	color: #fff;
}
@media screen and (max-width: 951px) {
	.intro-slider .metaslider .caption-wrap {
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.intro-slider .caption-wrap .caption .caption__title {
		text-align: center;
		font-size: 4rem;
	}
	.intro-slider .caption-wrap .caption div {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}
@media screen and (max-width: 768px) {
	.intro-slider .metaslider .flexslider .ms-image {
		min-height: 40vh;
		border-image: fill 0 linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4)) !important;
	}
	.intro-slider .metaslider .ms-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		position: absolute;
	}
}
@media screen and (max-width: 600px) {
	.intro-slider .caption-wrap .caption .caption__title {
		font-size: 3rem;
	}
	a.btn {
		font-size: 1.1rem;
	}
}



/* ----- TITLE HEADER ----- */
.title-header {
	width: 100%;
	height: 50vh;
	position: relative;
	display: grid;
	transition: all 0.25s ease;
}
.title-header .page-title {
	text-transform: uppercase;
	color: #fff;
	position: absolute;
	left: 10vw;
	align-self: center;
	z-index: 3;
	transition: all 0.25s ease;
}
.title-header .featured-image {
	width: 100%;
	background-image: url('images/horse-riding-sunset.jpg');
	background-size: cover;
	background-position: top;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: all 0.25s ease;
}
.title-header .featured-image:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	height: 50vh;
	width: 100%;
	background: rgb(0, 0, 0);
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 135, 0) 82%);
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 135, 0) 82%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 34%, rgba(0, 0, 135, 0) 82%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000087",GradientType=1);
	opacity: 0.7;
	z-index: 2;
}
@media screen and (max-width: 800px) {
	.title-header {
		height: 25vh;
	}
	.title-header .page-title {
		left: 10vw;
	}
	.title-header .featured-image {
		height: 25vh;
	}
}



/* ----- CONTENT ----- */
.content .row {
	display: grid;
	padding-top: var(--row-spacing);
	padding-bottom: var(--row-spacing);
	margin-top: var(--row-spacing);
	margin-bottom: var(--row-spacing);
}
.content .row.no-btm-padding {
	padding-bottom: 0;
}
.content .row-inner {
	max-width: var(--page-width);
	padding-inline: var(--gutter);
	justify-self: center;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 4rem;
	position: relative;
}
.content .row .center-v-align {
	align-self: center;
}
.content .row .center-h-align h2,
.content .row .center-h-align h3,
.content .row .center-h-align h4,
.content .row .center-h-align h5,
.content .row .center-h-align h6 {
	justify-self: center;
	text-align: center;
}
.content .row .center-h-align p {
	margin: 0 auto;
	text-align: left;
}
.content .row .two-col {
	grid-template-columns: 1fr 1fr;
}
.content .three-col {
	grid-template-columns: 1fr 1fr 1fr;
}
.content .four-col {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}
.content .five-col {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
.content .six-col {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}
.content .seven-col {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.content .eight-col {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}
.content .row .img-round-corners {
	border-radius: 3rem;
}
.content .row.yellow-fill {
	overflow: hidden;
	position: relative;
	background-color: rgb(var(--yellow));
	padding-top: var(--row-spacing);
	padding-bottom: var(--row-spacing);
	margin-top: var(--row-spacing);
	margin-bottom: var(--row-spacing);
}
.hide-on-dsktp {
	display: none;
}
.content p {
	max-width: 770px;
}
.content p.large {
	font-size: 1.3rem;
}
.content p.justify {
	text-align: justify;
}
.content p.margin-auto {
	margin: auto;
}
.content a:not(.btn),
.post-edit-link {
	text-decoration: underline;
	text-decoration-thickness: 2px;
}
@media screen and (max-width: 800px) {
	.content .row,
	.content .row.yellow-fill {
		margin-top: 0;
		margin-bottom: 0;
	}
	.content .hide-on-mbl {
		display: none;
	}
	.content .hide-on-dsktp {
		display: block;
	}
	.content .row .row-inner {
		grid-gap: 2rem;
	}
	.content .row .two-col,
	.content .row .three-col {
		grid-template-columns: 1fr;
	}
	.content .row .row-inner .center-justify-mbl {
		text-align: center;
	}
	.content .row .row-inner .center-justify-mbl h2,
	.content .row .row-inner .center-justify-mbl h3,
	.content .row .row-inner .center-justify-mbl p {
		text-align: center;
	}
	.content .row .row-inner .center-justify-mbl a.btn {
		margin: 1rem;
	}
	.content p.large {
		font-size: 1.1rem;
	}
}



/* ----- FRONT PAGE ----- */

/* ABOUT */
.content .row.about h2 {
	margin-bottom: 3rem;
}
.content .row.about p {
	margin-bottom: 2rem;
}

/* SERVICES */
.content .services .row-inner {
	grid-gap: var(--large);
}
.services .service-section {
	display: grid;
	grid-gap: 1.5rem;
}
.services .service-description h3 {
	margin-top: 0;
}
.services .service-description p {
	font-size: 1.2rem;
	line-height: 1.6rem;
	margin-bottom: 0;
}
.content .services .service-section .service-icon {
	max-width: 5rem;
	justify-self: center;
}
.content .services .service-section .service-icon img {
	width: 100%;
}
@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 800px) {
	.services .service-description p {
		font-size: 1rem;
		line-height: 1.2rem;
	}
}

/* SALES FAQ */
.content .sales-faq .row-inner {
	grid-gap: var(--large);
}
.content .sales-faq .section-img {
	position: relative;
	z-index: 1;
	transform-style: preserve-3d;
	margin: 1rem;
	height: fit-content;
}
.content .offset-border {
	position: relative;
	z-index: 1;
	transform-style: preserve-3d;
	margin: 1rem;
}
.content .sales-faq .section-img:before, 
.content .offset-border:before  {
	content: '';
	position: absolute;
	top: -1rem;
	right: -1rem;
	display: block;
	height: 80%;
	width: 95%;
	background: rgb(var(--blue));
	transform: translateZ(-1px);
}
.content .sales-faq .section-img:after, 
.content .offset-border:after {
	content: '';
	position: absolute;
	bottom: -1rem;
	left: -1rem;
	display: block;
	height: 70%;
	width: 90%;
	background: rgb(var(--yellow));
	transform: translateZ(-1px);
}
.content .sales-faq .faq-list {
	margin-top: 3rem;
}
.content .sales-faq .faq-list .faq-listing .faq-title {
	letter-spacing: 0;
	font-family: futura-pt, sans-serif;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	color: #000;
}
.content .sales-faq .faq-list .faq-listing .faq-description {
	margin-top: 0;
	font-size: 1.25rem;
}
@media screen and (max-width: 800px) {
	.content .sales-faq .section-img {
		margin: 0.75rem;
	}
	.content .sales-faq .section-img:before {
		top: -0.75rem;
		right: -0.75rem;
	}
	.content .sales-faq .section-img:after {
		bottom: -0.75rem;
		left: -0.75rem;
	}
	.content .sales-faq .faq-list .faq-listing {
		margin-bottom: 2rem;
	}
	.content .sales-faq .faq-list .faq-listing .faq-title {
		font-size: 1.2rem;
	}
	.content .sales-faq .faq-list .faq-listing .faq-description {
		font-size: 1.2rem;
	}
}



/* ----- FOOTER ----- */
footer.site-footer {
	background: rgb(var(--blue));
	padding: 5rem 5rem 1rem 5rem;
	text-transform: uppercase;
}
.site-footer a {
	color: #fff;
}
.site-footer__wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 2rem;
	margin-inline: auto;
	padding-block-end: 3rem;
	color: #fff;
	max-width: var(--max-w-content);
	align-items: center;
}
.site-footer__nav .menu {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.site-footer__nav a {
	text-decoration: none;
	display: inline-block;
}
.site-footer__nav .menu-item {
	display: block;
}
.site-footer__nav,
.site-footer__info,
.site-footer__hours {
	justify-self: center;
	align-self: start;
}
:is(.site-footer__nav, .site-footer__info, .site-footer__hours) p:first-of-type {
	margin: 0;
}
.site-footer__hours {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.site-footer__info {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
:is(.site-footer__hours, .site-footer__info) p {
	margin: 0;
}
.site-footer__contact a {
	text-decoration: none;
}
.site-footer__copyright {
	text-align: center;
	color: #fff;
	font-size: 0.8rem;
}
@media screen and (max-width: 950px) {
	.site-footer__wrapper {
		grid-template-columns: 1fr;
		padding-block-end: 0;
		justify-items: center;
	}
	.site-footer__logo,
	.site-footer__nav,
	.site-footer__info,
	.site-footer__hours {
		justify-self: center;
		text-align: center;
	}
	.site-footer__copyright {
		margin-top: 3rem;
	}
	.site-footer__logo {
		margin-bottom: 2rem;
	}
}



/* ----- UTILITIES ----- */
.post-edit-link {
	display: block;
	width: fit-content;
	color: limegreen;
	text-transform: uppercase;
	border: 3px solid limegreen;
	padding: 0.5em 1em;
	border-radius: 0.5em;
	margin: 1em;
	text-decoration: none;
	&:hover {
		color: white;
		background-color: limegreen;
	}
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}



/* ----- NAVIGATION ----- */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding-inline: var(--gutter);
}
.header.is-locked {
	box-shadow: var(--shadow);
}
.header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.header__logo {
	max-height: 140px;

	.header.is-locked & {
		max-height: 100px;
	}
}
.header__nav {
	justify-self: end;
}
.header__nav .menu {
	display: flex;
	align-items: center;
}
:where(.menu, .sub-menu) {
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-item {
	position: relative;
}
.sub-menu {
	display: none;
	position: absolute;
	align-items: center;
}
.header__nav .menu-item:has(.sub-menu):hover .sub-menu {
	display: flex;
	flex-direction: column;
}

@media (width > 1024px) {
	.header__btn-menu {
		display: none;
	}
}

@media (width <= 1024px) {
	.header__nav {
		display: none;
	}
}



/* ----- FOOTER ----- */
.footer {
	padding: 2rem var(--gutter);
}
.footer__wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 1rem;
	width: 100%;
}
.footer__socials {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}
.footer__socials a {
	display: flex;
	align-items: center;
	color: var(--primary);
}
.footer p {
	margin: 0;
}


/* ----- INSIDE PAGES ----- */
.content .post {
	margin-block: 2rem;
	max-width: var(--max-w-text);
	margin-inline: auto;
}
.content .wp-block-kadence-column .wp-block-kadence-column {
	width: fit-content;
}

/* AUCTION CALENDAR */
.content .auction-calendar {
	margin-top: 0;
	margin-bottom: 0;
	padding-block: var(--row-spacing);
}
.content .auction-calendar .auction-calendar-header {
	padding-top: 3rem;
	margin-bottom: 3rem;
	width: 100%;
}
.content .auction-calendar .auction-calendar-header a {
	font-size: 1.4rem;
}
.content .auction-calendar .auction-calendar-header .left {
	float: left;
}
.content .auction-calendar .auction-calendar-header .right {
	float: right;
}
.content .auction-calendar .auction-calendar-list {
	width: 100%;
}
.content .auction-calendar .auction-event {
	width: 100%;
	padding: 2rem 0;
	border-bottom: 2px solid rgb(var(--blue));
}
.content .auction-calendar .auction-event:last-of-type {
	border-bottom: none;
}
.content .auction-calendar .auction-event > .row-inner {
	display: grid;
	grid-gap: 2rem;
	grid-template-columns: 1fr 470px;
	padding-inline: 0;
}
.content .auction-calendar .auction-event > .row-inner > div {
	align-self: center;
}
.content .auction-calendar .auction-event .btn {
	margin-right: 1rem;
	margin-top: 0;
	width: calc(41% - 1rem);
}
.content .auction-calendar .auction-event .btn:nth-of-type(2),
.content .auction-calendar .auction-event .btn:nth-of-type(4) {
	margin-right: 0;
}
.content .auction-calendar .row-inner .auction-calendar-list .auction-event .row-inner > div:first-child {
	display: grid;
	grid-template-columns: 383px 1fr;
	grid-gap: 2rem;
}
.content .auction-calendar .event-date,
.content .auction-calendar .event-info {
	align-self: center;
}
.content .auction-calendar .event-date .date {
	float: left;
	display: block;
	width: 90px;
	height: 192px;
	background: rgb(var(--yellow));
	border-radius: 200px 0 0 200px;
	font-family: futura-pt, sans-serif;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.8rem;
	text-align: center;
	text-transform: uppercase;
	display: grid;
	align-items: center;
	padding-left: 10px;
}
.content .auction-calendar .event-date .featured-image {
	display: block;
	float: right;
	border: 4px solid rgb(var(--blue));
	width: 276px;
	margin-left: -1px;
}
.content .auction-calendar .event-info .event-title,
.content .auction-calendar .event-info .event-location {
	font-family: futura-pt, sans-serif;
	letter-spacing: 0;
	font-size: 1.4rem;
	margin-bottom: 0;
}
.content .auction-calendar .event-info .event-location {
	text-transform: capitalize;
	font-weight: 400;
}
.content .auction-calendar .event-info .description {
	line-height: 1rem;
}
.content .auction-calendar .auction-calendar-footer {
	padding-top: 3rem;
	margin-bottom: 3rem;
	width: 100%;
	text-align: center;
}
.content .auction-calendar .auction-calendar-footer a {
	font-size: 1.4rem;
	text-align: center;
}
@media screen and (max-width: 1500px) {
	.content .auction-calendar .auction-event > .row-inner {
		grid-template-columns: 1fr 205px;
	}
	.content .auction-calendar .auction-event .btn {
		width: calc(85% - 1rem);
	}
}
@media screen and (max-width: 1200px) {
	.content .auction-calendar .auction-event > .row-inner {
		grid-template-columns: 1fr;
	}
	.content .auction-calendar .auction-event .btn {
		width: calc(50% - 4rem);
	}
}
@media screen and (max-width: 800px) {
	.content .auction-calendar .auction-event > .row-inner {
		grid-template-columns: 1fr;
	}
	.content .auction-calendar .auction-event .btn {
		width: fit-content;
		margin: 0 0.5rem 1rem 0.5rem !important;
	}
	.content
		.auction-calendar
		.row-inner
		.auction-calendar-list
		.auction-event
		.row-inner
		> div:first-child {
		grid-template-columns: 1fr;
	}
	.content .auction-calendar .event-date {
		display: grid;
		grid-template-columns: 1fr;
		align-items: center;
		justify-items: center;
	}
	.content .auction-calendar .event-date .date {
		padding: 1.5rem 1rem 0.5rem 1rem;
		width: 156px;
		border-radius: 200px 200px 0 0;
		height: 60px;
	}
	.content .auction-calendar .event-info {
		text-align: center;
	}
	.content .auction-calendar .event-date .featured-image {
		width: 100%;
	}
	.content .auction-calendar .auction-calendar-header a {
		font-size: 1.2rem;
	}
	.content .auction-calendar .auction-event > .row-inner > div:last-of-type {
		display: grid;
		justify-content: center;
	}
	.content .auction-calendar .auction-event > .row-inner > div:last-of-type .btn {
		justify-self: center;
	}
}


/* ----- 404 ERROR PAGE ----- */


/* ----- KEYFRAMES ----- */


/* ----- LIVE FIXES ----- */
