/* -----------------------------------------------------------------------
   Blog Archive Styles
   ----------------------------------------------------------------------- */

.blog-archive-wrap {
	padding: 40px 0 60px;
	background: #ffffff;
}

.blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Search Box
----------------------------------------------------------------------- */
.blog-search-row {
	margin-bottom: 20px;
}

.blog-search-input {
	width: 100%;
	max-width: 320px;
	padding: 10px 14px;
	font-size: 14px;
	border: 1px solid #d5d5d5;
	border-radius: 2px;
	background: #fff;
	color: #333;
	outline: none;
	transition: border-color 0.2s ease;
}

.blog-search-input:focus {
	border-color: #b40000;
}

/* Category Filter Buttons
----------------------------------------------------------------------- */
.blog-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}

.blog-filter-btn {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 8px 16px;
	background: #f4f4f4;
	color: #333;
	border: 1px solid #e0e0e0;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-filter-btn:hover {
	background: #e9e9e9;
}

.blog-filter-btn.active {
	background: #b40000;
	color: #ffffff;
	border-color: #b40000;
}

/* Posts Grid
----------------------------------------------------------------------- */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	transition: opacity 0.25s ease;
}

.blog-grid.is-loading {
	opacity: 0.3;
	pointer-events: none;
}

@media (max-width: 991px) {
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Card
----------------------------------------------------------------------- */
.blog-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	background: #ffffff;
	border: 1px solid #e2e2e2;
	border-radius: 2px;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
}

.blog-card-image {
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #eee;
}

.blog-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.blog-card-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 18px 20px 20px;
}

.blog-card-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.blog-card-category {
	font-family: Sofia Sans Condensed;
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 16px;
letter-spacing: 1.44px;
text-transform: uppercase;
color: #A01D17;
}
.blog-card-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-date , .blog-card-author {

	font-family: Sofia Sans Condensed;
font-weight: 400;
font-style: Regular;
font-size: 12px;
leading-trim: NONE;
line-height: 16px;
letter-spacing: 0px;
color: #99A1AF;
}

.blog-card-title {
	font-family: Sofia Sans Extra Condensed;
font-weight: 900;
font-style: Black;
font-size: 30px;
leading-trim: NONE;
line-height: 37px;
letter-spacing: 0%;
text-transform: uppercase;

}

.blog-card-title a {
	color: #1a1a1a;
	text-decoration: none;
}

.blog-card-title a:hover {
	color: #A01D17;
}

.blog-card-excerpt {
font-family: Sofia Sans Condensed;
font-weight: 400;
font-style: Regular;
font-size: 24px;
leading-trim: NONE;
line-height: 34px;
letter-spacing: 0%;
color: #000;
}
.blog-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 12px;
}

.blog-card-readmore {font-family: Sofia Sans Condensed;
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 20px;
letter-spacing: 0.96px;
text-align: center;
text-transform: uppercase;
color: #A01D17;
    text-decoration: none !important;

}

.blog-card-readmore .arrow {
	transition: transform 0.2s ease;
}

.blog-card-readmore:hover .arrow {
	transform: translateX(3px);
}


/* No results
----------------------------------------------------------------------- */
.blog-no-results {
	grid-column: 1 / -1;
	text-align: center;
	padding: 60px 0;
	color: #777;
}

/* Pagination
----------------------------------------------------------------------- */
.blog-pagination-wrap {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}

.blog-pagination {
	display: flex;
	gap: 6px;
}

.page-btn {
	min-width: 34px;
	height: 34px;
	padding: 0 10px;
	font-size: 13px;
	font-weight: 600;
	background: #fff;
	color: #4A5565;
	border: 1px solid #ddd;
	border-radius: 2px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-btn:hover {
	background: #4A5565;
}

.page-btn.active {
	background: #b40000;
	color: #fff;
	border-color: #b40000;
}

/* Fade animation for AJAX swap
----------------------------------------------------------------------- */
.blog-fade-out {
	opacity: 0;
}

.blog-fade-in {
	opacity: 1;
}
.blog-card-body {
    font-family: 'Sofia Sans Extra Condensed';
}
@media (max-width: 767px) {

    .blog-filter-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 10px;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        padding-bottom: 5px;
    }

    .blog-filter-row::-webkit-scrollbar {
        display: none;
    }

    .blog-filter-btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

}




/* -----------------------------------------------------------------------
   Single Blog Post
   ----------------------------------------------------------------------- */
.single-blog {
	background: #ffffff;
font-family: 'Sofia Sans Condensed';
}

.single-blog-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	margin-top: 50px;
	margin-bottom: 50px;
}

/* Header / Meta
----------------------------------------------------------------------- */
.single-blog-header {
	margin-bottom: 28px;
}

.single-blog-meta-top {
font-weight: 400;
font-style: Regular;
font-size: 18px;
leading-trim: NONE;
line-height: 16px;
letter-spacing: 1.44px;
text-transform: uppercase;

}

.single-blog-category {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #b40000;
	text-decoration: none;
}

.single-blog-category:hover {
	text-decoration: underline;
}

.single-blog-author {
	font-size: 12px;
	color: #888;
}

.single-blog-title {
font-weight: 900;
font-style: Black;
font-size: 67px;
leading-trim: NONE;
line-height: 68px;
letter-spacing: 0px;
color: #101828	;
}

.single-blog-byline {
	font-family: Sofia Sans Condensed;
font-weight: 400;
font-style: Regular;
font-size: 27px;
leading-trim: NONE;
line-height: 20.4px;
letter-spacing: 0px;


}

/* Featured Image
----------------------------------------------------------------------- */
.single-blog-image {
	margin: 0 0 32px;
	border-radius: 3px;
	overflow: hidden;
}

.single-blog-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Content
----------------------------------------------------------------------- */
.single-blog-content {
font-family: Sofia Sans Condensed;
font-weight: 400;
font-style: Regular;
font-size: 27px;
leading-trim: NONE;
line-height: 34px;
letter-spacing: 0px;
color: #4B5563;
}

.single-blog-content > *:first-child {
	margin-top: 0;
}

.single-blog-content p {
	margin: 0 0 20px;
}

.single-blog-content h2 {
	margin: 38px 0 14px;
	font-size: 24px;
	line-height: 1.3;
	font-weight: 800;
	color: #1a1a1a;
}

.single-blog-content h3 {
	margin: 30px 0 12px;
	font-size: 19px;
	line-height: 1.35;
	font-weight: 700;
	color: #1a1a1a;
}

.single-blog-content ul,
.single-blog-content ol {
	margin: 0 0 20px;
	padding-left: 22px;
}

.single-blog-content li {
	margin-bottom: 8px;
}

.single-blog-content a {
	color: #b40000;
	text-decoration: underline;
}

.single-blog-content img {
	max-width: 100%;
	height: auto;
	border-radius: 3px;
}

.single-blog-content blockquote {
	margin: 24px 0;
	padding: 4px 0 4px 20px;
	border-left: 3px solid #b40000;
	color: #555;
	font-style: italic;
}

/* Footer / Back link
----------------------------------------------------------------------- */
.single-blog-footer {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.single-blog-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #b40000;
	text-decoration: none;
}

.single-blog-back .arrow {
	display: inline-flex;
	transition: transform 0.2s ease;
}

.single-blog-back:hover .arrow {
	transform: translateX(-3px);
}

/* Responsive
----------------------------------------------------------------------- */
@media (max-width: 600px) {
	.single-blog-title {
		font-size: 26px;
		line-height: 100%;
	}

.single-blog-byline {

    font-size: 16px;
}
	.single-blog-content {
		font-size: 15px;
		line-height: 100%;
	}

	.single-blog-content h2 {
		font-size: 21px;
		line-height: 100%;
	}
}