/* =========================================================
   SINGLE BLOG PAGE - BASE
========================================================= */

.alston-single-blog {
	width: 100%;
	overflow: hidden;
	background: #ffffff;
	color: #181A1F;
}

.alston-single-blog *,
.alston-single-blog *::before,
.alston-single-blog *::after {
	box-sizing: border-box;
}

.alston-single-blog img {
	max-width: 100%;
	display: block;
}

.alston-single-blog a {
	text-decoration: none;
	color: inherit;
}

.alston-blog-hero__inner,
.alston-blog-body__inner,
.alston-blog-cta__inner {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-left: 5px;
	padding-right: 5px;
}

.alston-heading-gold {
	color: #C9A961;
	font-style: italic;
	font-weight: 500;
}


/* =========================================================
   HERO / BREADCRUMB
========================================================= */

.alston-blog-hero {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #181A1F;
	min-height: 430px;
	padding: 150px 0 70px;
	display: flex;
	align-items: flex-end;
	isolation: isolate;
}

.alston-blog-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transform: scale(1.05);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-blog-hero.is-visible .alston-blog-hero__bg {
	transform: scale(1);
}

.alston-blog-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(
			90deg,
			rgba(0,0,0,0.82) 0%,
			rgba(0,0,0,0.58) 42%,
			rgba(0,0,0,0.22) 100%
		),
		linear-gradient(
			to top,
			rgba(0,0,0,0.82) 0%,
			rgba(0,0,0,0.22) 70%
		);
}

.alston-blog-hero__inner {
	position: relative;
	z-index: 3;
	color: #ffffff;
}

.alston-blog-hero__breadcrumb {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.72);
}

.alston-blog-hero__breadcrumb a,
.alston-blog-hero__breadcrumb span {
	color: inherit;
}

.alston-blog-hero__breadcrumb a {
	transition: opacity 0.3s ease, color 0.3s ease;
}

.alston-blog-hero__breadcrumb a:hover {
	color: #C9A961;
	opacity: 1;
}

.alston-blog-hero__breadcrumb span:last-child {
	color: #C9A961;
}

.alston-blog-hero__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 22px;
	padding: 8px 16px;
	border: 1px solid rgba(201,169,97,0.48);
	color: #C9A961;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.alston-blog-hero__title {
	width: 100%;
	max-width: 1020px;
	margin: 0 0 26px;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 64px;
	line-height: 74px;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #ffffff;
	text-transform: capitalize;
}

.alston-blog-hero__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
}

.alston-blog-hero__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	line-height: 22px;
	font-weight: 400;
	color: rgba(255,255,255,0.75);
}

.alston-blog-hero__meta-item svg {
	width: 14px;
	height: 14px;
	color: rgba(255,255,255,0.7);
}

.alston-blog-hero__meta-divider {
	width: 1px;
	height: 14px;
	background: rgba(255,255,255,0.22);
}


/* =========================================================
   BODY LAYOUT
========================================================= */

.alston-blog-body {
	width: 100%;
	padding: 5rem 0;
	background: #ffffff;
}

.alston-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 400px;
	gap: 60px;
	align-items: start;
}

.alston-blog-article,
.alston-blog-sidebar {
	min-width: 0;
}


/* =========================================================
   ARTICLE CONTENT
========================================================= */

.alston-blog-article__intro {
	margin: 0 0 42px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(0,0,0,0.08);
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 28px;
	line-height: 1.65;
	font-weight: 400;
	font-style: italic;
	color: #181A1F;
}

.alston-blog-article__content {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	color: #444444;
}



.alston-blog-article__content h1,
.alston-blog-article__content h2,
.alston-blog-article__content h3,
.alston-blog-article__content h4,
.alston-blog-article__content h5,
.alston-blog-article__content h6 {
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-weight: 500;
	letter-spacing: -0.02em;
	color: #181A1F;
}

.alston-blog-article__content h2 {
	font-size: 54px;
	line-height: 1;
	margin: 60px 0 24px;
}

.alston-blog-article__content h3 {
	font-size: 40px;
	line-height: 1.1;
	margin: 44px 0 18px;
}

.alston-blog-article__content h4 {
	font-size: 30px;
	line-height: 1.15;
	margin: 34px 0 14px;
}

.alston-blog-article__content ul,
.alston-blog-article__content ol {
	margin: 0 0 28px;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.alston-blog-article__content li {
	position: relative;
	padding-left: 24px;
	font-size: 16px;
	line-height: 30px;
	color: #444444;
}

.alston-blog-article__content ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 1px;
	background: #C9A961;
}

.alston-blog-article__content ol {
	counter-reset: alstonBlogCounter;
}

.alston-blog-article__content ol li {
	counter-increment: alstonBlogCounter;
	padding-left: 34px;
}

.alston-blog-article__content ol li::before {
	content: counter(alstonBlogCounter, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 18px;
	line-height: 30px;
	color: #C9A961;
}

.alston-blog-article__content blockquote {
	position: relative;
	margin: 46px 0;
	padding: 36px 42px 36px 56px;
	background: #f7f7f4;
	border-left: 3px solid #C9A961;
	color: #181A1F;
}

.alston-blog-article__content blockquote::before {
	content: "“";
	position: absolute;
	top: 10px;
	left: 18px;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 90px;
	line-height: 1;
	color: #C9A961;
	opacity: 0.35;
}

.alston-blog-article__content blockquote p {
	margin: 0;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 28px;
	line-height: 1.45;
	font-style: italic;
	color: #181A1F;
}

.alston-blog-article__content cite {
	display: block;
	margin-top: 16px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #777777;
	font-style: normal;
}

.alston-blog-article__content figure {
	margin: 42px 0;
}

.alston-blog-article__content figure img,
.alston-blog-article__content .wp-block-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.alston-blog-article__content figcaption,
.alston-blog-article__content .wp-element-caption {
	margin-top: 12px;
	padding-left: 12px;
	border-left: 2px solid #C9A961;
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	line-height: 22px;
	color: #777777;
}

.alston-blog-article__content a {
	color: #C9A961;
	text-decoration-color: #C9A961;
	text-underline-offset: 3px;
	transition: color 0.3s ease;
}

.alston-blog-article__content a:hover {
	color: #181A1F;
	text-decoration-color: #181A1F;
}

.alston-blog-article__content hr {
	border: 0;
	border-top: 1px solid rgba(0,0,0,0.08);
	margin: 48px 0;
}

.alston-blog-article__content img.alignleft {
	float: left;
	margin: 8px 28px 20px 0;
}

.alston-blog-article__content img.alignright {
	float: right;
	margin: 8px 0 20px 28px;
}

.alston-blog-article__content img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}

/* =========================================================
   ARTICLE TABLES
========================================================= */

.alston-blog-article__content table {
	width: 100%;
	border-collapse: collapse;
	margin: 42px 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #181A1F;
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.12);
}

.alston-blog-article__content table th {
	background: #181A1F;
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	line-height: 18px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-align: left;
	padding: 18px 20px;
	border: 1px solid rgba(255,255,255,0.16);
}

.alston-blog-article__content table td {
	padding: 18px 20px;
	border: 1px solid rgba(0,0,0,0.1);
	color: #444444;
	vertical-align: top;
}

.alston-blog-article__content table tr:nth-child(even) td {
	background: #f7f7f4;
}

.alston-blog-article__content table tr:hover td {
	background: rgba(201,169,97,0.12);
}

.alston-blog-article__content .sqs-block-content,
.alston-blog-article__content .sqs-code-container {
	width: 100%;
	overflow-x: auto;
}

/* =========================================================
   ARTICLE FOOTER / TAGS / SHARE
========================================================= */

.alston-blog-article__footer {
	margin-top: 56px;
	padding-top: 34px;
	border-top: 1px solid rgba(0,0,0,0.08);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 24px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 16px;
	border: 1px solid rgba(0,0,0,0.14);
	background: transparent;
	color: #181A1F;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

.tag:hover {
	background: #181A1F;
	border-color: #181A1F;
	color: #ffffff;
	transform: translateY(-2px);
}

.alston-blog-share {
	display: flex;
	align-items: center;
	gap: 12px;
}

.alston-blog-share span {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #181A1F;
}

.alston-blog-share a,
.alston-blog-share button {
	width: 42px;
	height: 42px;
	border: 1px solid rgba(0,0,0,0.14);
	background: transparent;
	color: #181A1F;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

.alston-blog-share a:hover,
.alston-blog-share button:hover {
	background: #181A1F;
	border-color: #181A1F;
	color: #ffffff;
	transform: translateY(-2px);
}


/* =========================================================
   SIDEBAR
========================================================= */

.alston-blog-sidebar {
	position: sticky;
	top: 110px;
}

.alston-blog-sidebar__title,
.alston-blog-sidebar h3 {
	margin: 0 0 28px;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 32px;
	line-height: 42px;
	font-weight: 500;
	color: #181A1F;
}


/* =========================================================
   RELATED POSTS CAROUSEL
========================================================= */

.alston-blog-carousel {
	width: 100%;
	position: relative;
	margin-bottom: 44px;
}

.alston-blog-carousel__viewport {
	width: 100%;
	overflow: hidden;
}

.alston-blog-carousel__track {
	display: flex;
	will-change: transform;
	transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-blog-card {
	flex: 0 0 100%;
	min-width: 100%;
	background: #ffffff;
	border: 0;
	padding: 0;
	margin: 0;
}

.alston-blog-card__image {
	display: block;
	width: 100%;
	height: 240px;
	overflow: hidden;
	background: #f6f6f6;
	margin-bottom: 20px;
}

.alston-blog-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-blog-card:hover .alston-blog-card__image img {
	transform: scale(1.05);
}

.alston-blog-card__content {
	padding: 0 0 12px;
}

.alston-blog-card__category,
.alston-blog-card__date {
	margin-bottom: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #777777;
}

.alston-blog-card__category {
	color: #C9A961;
}

.alston-blog-card h4 {
	margin: 0;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 22px;
	line-height: 32px;
	font-weight: 500;
	color: #181A1F;
	transition: color 0.3s ease;
}

.alston-blog-card h4 a {
	color: inherit;
}

.alston-blog-card:hover h4 {
	color: #C9A961;
}

.alston-blog-card__excerpt {
	margin: 0 0 18px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 26px;
	color: #555555;
}

.alston-blog-card__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #181A1F;
	transition: color 0.3s ease;
}

.alston-blog-card__link:hover {
	color: #C9A961;
}

.alston-blog-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding-top: 22px;
	border-top: 1px solid rgba(0,0,0,0.08);
}

.alston-blog-carousel__controls .carousel-dots,
.alston-blog-carousel__controls .alston-fleet-gallery__arrows {
	padding-top: 0;
}

/* =========================================================
   ALSTON ARROWS
========================================================= */

.alston-fleet-gallery__arrows {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	padding-top: 20px;
}

.alston-fleet-gallery__arrow {
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.1);
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		transform 0.35s ease;
}

.alston-fleet-gallery__arrow img {
	width: 13px;
	height: 13px;
	object-fit: contain;
	transition: filter 0.35s ease;
}

.alston-fleet-gallery__arrow:hover {
	background: #181A1F;
	border-color: #181A1F;
	transform: translateY(-3px);
}

.alston-fleet-gallery__arrow:hover img {
	filter: brightness(0) invert(1);
}

.alston-fleet-gallery__arrow.is-disabled {
	opacity: 0.35;
	pointer-events: none;
}


/* =========================================================
   DOTS - NO OUTER BACKGROUND / BLACK BORDER
========================================================= */

.carousel-dots {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	padding-top: 22px;
}

.carousel-dot {
	width: 11px;
	height: 11px;
	border-radius: 999px;
	background: transparent;
	border: 1px solid #181A1F;
	cursor: pointer;
	padding: 0;
	transition:
		background 0.3s ease,
		border-color 0.3s ease,
		transform 0.3s ease;
}

.carousel-dot:hover,
.carousel-dot.active {
	background: #181A1F;
	border-color: #181A1F;
	transform: scale(1.08);
}


/* =========================================================
   SIDEBAR CTA
========================================================= */

.alston-blog-sidebar-cta {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #181A1F;
	padding: 34px 30px;
	margin: 44px 0;
	color: #ffffff;
}

.alston-blog-sidebar-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #C9A961, transparent);
}

.alston-blog-sidebar-cta__eyebrow {
	margin-bottom: 12px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #C9A961;
}

.alston-blog-sidebar-cta h3 {
	margin: 0 0 14px;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 34px;
	line-height: 1;
	font-weight: 500;
	color: #ffffff;
}

.alston-blog-sidebar-cta p {
	margin: 0 0 24px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 26px;
	color: rgba(255,255,255,0.72);
}

.alston-blog-sidebar-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	background: #C9A961;
	border: 1px solid #C9A961;
	color: #181A1F;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

.alston-blog-sidebar-cta__button:hover {
	background: #ffffff;
	border-color: #ffffff;
	transform: translateY(-2px);
}


/* =========================================================
   CATEGORIES / SERVICE LIST BLOCK
========================================================= */

.alston-blog-sidebar-list {
	width: 100%;
	margin-top: 44px;
}

.alston-blog-sidebar-list__items {
	list-style: none;
	padding: 0;
	margin: 0;
}

.alston-blog-sidebar-list__items li {
	border-bottom: 1px solid rgba(0,0,0,0.08);
}

.alston-blog-sidebar-list__items li:first-child {
	border-top: 1px solid rgba(0,0,0,0.08);
}

.alston-blog-sidebar-list__items a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 15px 0;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
	line-height: 24px;
	color: #181A1F;
	transition: color 0.3s ease;
}

.alston-blog-sidebar-list__items a:hover {
	color: #C9A961;
}

.alston-blog-share a img,
.alston-blog-share button img{
	width:16px;
	height:16px;
	object-fit:contain;
	filter:brightness(0) invert(0);
	transition:filter 0.35s ease;
}

.alston-blog-share a:hover img,
.alston-blog-share button:hover img{
	filter:brightness(0) invert(1);
}

/* =========================================================
   FULL WIDTH CTA BANNER
========================================================= */

.alston-blog-cta {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: #181A1F;
	padding: 120px 0;
	isolation: isolate;
}

.alston-blog-cta__bg {
	position: absolute;
	inset: 0;
	z-index: 1;
	background-image: url('/wp-content/uploads/2026/05/home-about-image.webp');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0.32;
	transform: scale(1.04);
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-blog-cta.is-visible .alston-blog-cta__bg {
	transform: scale(1);
}

.alston-blog-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(to top, rgb(0 0 0 / 53%), rgba(0, 0, 0, 0.52));
}

.alston-blog-cta__inner {
	position: relative;
	z-index: 3;
	max-width: 920px;
	text-align: center;
	color: #ffffff;
}

.alston-blog-cta__eyebrow {
	margin-bottom: 20px;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #C9A961;
}

.alston-blog-cta h2 {
	margin: 0 0 24px;
	font-family: 'Cormorant Garamond', 'Times New Roman', serif;
	font-size: 72px;
	line-height: 0.95;
	font-weight: 500;
	letter-spacing: -0.03em;
	color: #ffffff;
}

.alston-blog-cta p {
	max-width: 640px;
	margin: 0 auto 34px;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 30px;
	color: rgba(255,255,255,0.75);
}

.alston-blog-cta__button {
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.45);
	padding: 11px 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	white-space: nowrap;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 600;
	line-height: 21px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	background: transparent;
	transition:
		background 0.35s ease,
		border-color 0.35s ease,
		color 0.35s ease;
}


.alston-blog-cta__button:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #111111;
}


/* =========================================================
   READING PROGRESS
========================================================= */

.alston-blog-reading-progress {
	position: fixed;
	top: 0;
	left: 0;
	width: 0%;
	height: 2px;
	background: #C9A961;
	z-index: 9999;
	pointer-events: none;
}


/* =========================================================
   ENTRANCE ANIMATION
========================================================= */

.alston-blog-reveal {
	opacity: 0;
	transform: translateY(42px);
	transition:
		opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.alston-blog-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.alston-blog-sidebar.alston-blog-reveal {
	transition-delay: 0.12s;
}


/* =========================================================
   LAPTOP - 1025px to 1366px
========================================================= */

@media (min-width: 1025px) and (max-width: 1366px) {

	.alston-blog-hero__inner,
	.alston-blog-body__inner,
	.alston-blog-cta__inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.alston-blog-hero {
		min-height: 400px;
		padding: 135px 0 64px;
	}

	.alston-blog-hero__title {
		font-size: 56px;
		line-height:66px;
		max-width: 920px;
	}

	.alston-blog-layout {
		grid-template-columns: minmax(0, 1fr) 360px;
		gap: 44px;
	}

	.alston-blog-article__content h2 {
		font-size: 48px;
	}

	.alston-blog-cta h2 {
		font-size: 58px;
	}
}


/* =========================================================
   TABLET - 768px to 1024px
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

	.alston-blog-hero__inner,
	.alston-blog-body__inner,
	.alston-blog-cta__inner {
		max-width: 100%;
		padding-left: 24px;
		padding-right: 24px;
	}

	.alston-blog-hero {
		min-height: 380px;
		padding: 125px 0 60px;
	}

	.alston-blog-hero__title {
		font-size: 48px;
		line-height: 58px;
		max-width: 760px;
	}

	.alston-blog-body {
		padding: 4.5rem 0;
	}

	.alston-blog-layout {
		grid-template-columns: 1fr;
		gap: 52px;
	}

	.alston-blog-sidebar {
		position: relative;
		top: auto;
	}

	.alston-blog-article__intro {
		font-size: 25px;
	}

	.alston-blog-article__content h2 {
		font-size: 42px;
	}

	.alston-blog-article__content h3 {
		font-size: 34px;
	}

	.alston-blog-card__image {
		height: 320px;
	}

	.alston-blog-cta {
		padding: 90px 0;
	}

	.alston-blog-cta h2 {
		font-size: 52px;
	}
}


/* =========================================================
   MOBILE - 0px to 767px
========================================================= */

@media (min-width: 0px) and (max-width: 767px) {

	.alston-blog-hero__inner,
	.alston-blog-body__inner,
	.alston-blog-cta__inner {
		max-width: 100%;
		padding-left: 18px;
		padding-right: 18px;
	}

	.alston-blog-hero {
		min-height: 350px;
		padding: 120px 0 48px;
	}

	.alston-blog-hero__breadcrumb {
		gap: 9px;
		font-size: 10px;
		line-height: 16px;
		margin-bottom: 16px;
	}

	.alston-blog-hero__category {
		font-size: 10px;
		padding: 7px 12px;
		margin-bottom: 18px;
	}

	.alston-blog-hero__title {
		font-size: 38px;
		line-height: 48px;
		margin-bottom: 22px;
	}

	.alston-blog-hero__meta {
		gap: 12px;
	}

	.alston-blog-hero__meta-divider {
		display: none;
	}

	.alston-blog-hero__meta-item {
		font-size: 12px;
		line-height: 20px;
	}

	.alston-blog-body {
		padding: 4rem 0;
	}

	.alston-blog-layout {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.alston-blog-article__intro {
		font-size: 22px;
		line-height: 1.55;
		margin-bottom: 34px;
		padding-bottom: 34px;
	}

	.alston-blog-article__content {
		font-size: 14px;
		line-height: 28px;
	}

	.alston-blog-article__content h2 {
		font-size: 34px;
		line-height: 1;
		margin: 44px 0 20px;
	}

	.alston-blog-article__content h3 {
		font-size: 28px;
		line-height: 1.08;
	}

	.alston-blog-article__content blockquote {
		padding: 28px 24px 28px 42px;
		margin: 34px 0;
	}

	.alston-blog-article__content blockquote p {
		font-size: 22px;
	}

	.alston-blog-article__content blockquote::before {
		font-size: 68px;
		left: 14px;
	}

	.alston-blog-article__content li {
		font-size: 14px;
		line-height: 26px;
	}

	.alston-blog-article__footer {
		align-items: flex-start;
		flex-direction: column;
	}

	.alston-blog-share {
		flex-wrap: wrap;
	}

	.alston-blog-sidebar {
		position: relative;
		top: auto;
	}

	.alston-blog-sidebar__title,
	.alston-blog-sidebar h3 {
		font-size: 34px;
	}

	.alston-blog-card__image {
		height: 240px;
	}

	.alston-blog-card h4 {
		font-size: 28px;
	}

	.alston-fleet-gallery__arrow {
		width: 32px;
		height: 32px;
		min-width: 32px;
		min-height: 32px;
	}

	.alston-fleet-gallery__arrow img {
		width: 12px;
		height: 12px;
	}

	.carousel-dots {
		padding-top: 20px;
	}

	.alston-blog-cta {
		padding: 75px 0;
	}

	.alston-blog-cta h2 {
		font-size: 38px;
		line-height: 1;
	}

	.alston-blog-cta p {
		font-size: 14px;
		line-height: 28px;
	}

	.alston-blog-cta__button {
		width: 100%;
		min-height: 54px;
	}
	
		.alston-blog-carousel__controls {
		align-items: flex-start;
		display: grid;
        grid-auto-flow: column;
        justify-content: space-between;
	}
	
		.alston-blog-article__content table {
		min-width: 720px;
		font-size: 13px;
	}

	.alston-blog-article__content .sqs-code-container {
		padding-bottom: 10px;
	}
}

/* =========================================================
   FIX HIDDEN THEME CONTENT
========================================================= */

.alston-single-blog .preFlex,
.alston-single-blog .flexIn,
.alston-single-blog .reveal,
.alston-single-blog .fadeIn,
.alston-single-blog .animated {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	animation: none !important;
}

.alston-blog-article__content p,
.alston-blog-article__content div,
.alston-blog-article__content strong,
.alston-blog-article__content span {
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
	animation: none !important;
}

.alston-blog-body,
.alston-blog-body__inner,
.alston-blog-layout {
	overflow: visible;
}

.alston-blog-sidebar {
	position: relative;
	top: auto;
	align-self: start;
}

.alston-blog-sidebar__sticky {
	position: sticky;
	top: 110px;
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

	.alston-blog-reveal,
	.alston-blog-hero__bg,
	.alston-blog-cta__bg,
	.alston-blog-card__image img,
	.alston-fleet-gallery__arrow,
	.tag,
	.alston-blog-share a,
	.alston-blog-share button {
		opacity: 1 !important;
		transform: none !important;
		transition: none !important;
	}
}