/* ===== Blog / Category / Single templates ===== */

.az-hero {
	background: linear-gradient(135deg, #0F2742 0%, #1B3A5C 100%);
	padding: 100px 24px 80px;
	text-align: center;
}
.az-hero-inner {
	max-width: 1000px;
	margin: 0 auto;
}
.az-eyebrow {
	display: inline-block;
	background: #C9A227;
	color: #0F2742;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 30px;
	padding: 7px 18px;
	margin-bottom: 18px;
}
.az-hero h1 {
	color: #ffffff;
	font-family: "Montserrat", Sans-serif;
	font-size: 46px;
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 16px;
}
.az-sub {
	color: #C9D6EA;
	font-size: 18px;
	line-height: 1.6;
	max-width: 760px;
	margin: 0 auto 6px;
	font-weight: 400;
}
.az-chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 28px;
}
.az-chip {
	display: inline-block;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(201, 162, 39, 0.55);
	color: #ffffff;
	font-size: 14px;
	font-weight: 600;
	padding: 9px 18px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
.az-chip:hover {
	background: #C9A227;
	color: #0F2742;
	border-color: #C9A227;
}
.az-chip-active {
	background: #C9A227;
	color: #0F2742;
	border-color: #C9A227;
}

/* Blog index main */
.az-main {
	background: #ffffff;
	padding: 60px 24px;
}

/* Two-column layout: sidebar (1/3) + posts (2/3) */
.az-layout {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 44px;
	align-items: start;
}
.az-side {
	position: sticky;
	top: 24px;
	background: linear-gradient(135deg, #0F2742 0%, #1B3A5C 100%);
	border-radius: 18px;
	padding: 38px 30px;
	box-shadow: 0 14px 34px rgba(15, 39, 66, 0.18);
	text-align: left;
}
.az-side .az-eyebrow {
	margin-bottom: 14px;
}
.az-side h1 {
	color: #ffffff;
	font-family: "Montserrat", Sans-serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 14px;
}
.az-side .az-sub {
	margin: 0 0 6px;
	text-align: left;
}
.az-side .az-chips {
	justify-content: flex-start;
	margin-top: 24px;
}
.az-posts {
	min-width: 0;
}

.az-featured {
	display: flex;
	gap: 0;
	align-items: stretch;
	max-width: none;
	margin: 0 0 44px;
	background: #ffffff;
	border: 1px solid #E9EDF3;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 39, 66, 0.08);
}
.az-featured-media {
	flex: 1 1 52%;
}
.az-featured-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.az-featured-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	min-height: 320px;
	background: linear-gradient(135deg, #0F2742, #1B3A5C);
	color: #C9A227;
	font-size: 64px;
}
.az-featured-body {
	flex: 1 1 48%;
	padding: 42px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.az-featured-title {
	font-family: "Montserrat", Sans-serif;
	font-size: 30px;
	font-weight: 800;
	color: #0F2742;
	line-height: 1.25;
	margin: 0 0 14px;
}
.az-featured-title a {
	color: #0F2742;
	text-decoration: none;
}
.az-featured-title a:hover {
	color: #8A6F1C;
}
.az-featured-excerpt {
	color: #5A6B85;
	font-size: 16px;
	line-height: 1.7;
	margin: 0 0 20px;
}
.az-readmore {
	display: inline-block;
	color: #C9A227;
	font-weight: 700;
	text-decoration: none;
	font-size: 15px;
}
.az-readmore:hover {
	color: #8A6F1C;
}
.az-readmore::after {
	content: " \2192";
}
.az-meta-row {
	display: flex;
	gap: 14px;
	align-items: center;
	color: #8A6F1C;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}

/* Card grid */
.az-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
	max-width: 1150px;
	margin: 0 auto;
}
/* Main blog grid: two posts per row inside the 2/3 posts column */
.az-grid-main {
	grid-template-columns: repeat(2, 1fr);
	max-width: none;
	margin: 0;
}
.az-card {
	background: #ffffff;
	border: 1px solid #E9EDF3;
	border-radius: 14px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 6px 18px rgba(15, 39, 66, 0.06);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.az-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(15, 39, 66, 0.12);
}
.az-card-media {
	display: block;
	height: 210px;
	overflow: hidden;
}
.az-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease-in-out;
}
.az-card:hover .az-card-media img {
	transform: scale(1.05);
}
.az-card-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: linear-gradient(135deg, #0F2742, #1B3A5C);
	color: #C9A227;
	font-size: 48px;
}
.az-card-body {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex: 1;
}
.az-tag {
	display: inline-block;
	background: #0F2742;
	color: #C9A227;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 20px;
	text-decoration: none;
	margin-bottom: 14px;
	width: max-content;
}
.az-card-title {
	font-family: "Montserrat", Sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #0F2742;
	line-height: 1.35;
	margin: 0 0 10px;
}
.az-card-title a {
	color: #0F2742;
	text-decoration: none;
}
.az-card-title a:hover {
	color: #8A6F1C;
}
.az-card-excerpt {
	color: #5A6B85;
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 12px;
	flex: 1;
}
.az-card-more {
	display: inline-block;
	color: #C9A227;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	margin-bottom: 16px;
}
.az-card-more:hover {
	color: #8A6F1C;
}
.az-card-more::after {
	content: " \2192";
}
.az-card-meta {
	display: flex;
	gap: 8px;
	align-items: center;
	color: #8A6F1C;
	font-size: 13px;
	font-weight: 600;
	border-top: 1px solid #F0F3F8;
	padding-top: 14px;
}
.az-meta-dot {
	opacity: 0.5;
}

/* Pagination */
.az-pagination {
	max-width: 1150px;
	margin: 50px auto 0;
	text-align: center;
}
.az-posts .az-pagination {
	max-width: none;
	margin: 40px 0 0;
}
.az-posts .az-pagination .navigation {
	margin: 0;
}
.az-pagination .page-numbers {
	display: inline-block;
	min-width: 42px;
	padding: 10px 14px;
	margin: 0 4px;
	border: 1px solid #E9EDF3;
	border-radius: 8px;
	color: #0F2742;
	font-weight: 600;
	text-decoration: none;
}
.az-pagination .page-numbers.current {
	background: #C9A227;
	color: #0F2742;
	border-color: #C9A227;
}
.az-pagination .page-numbers:hover {
	border-color: #C9A227;
}

/* Category */
.az-cat-bar {
	max-width: 1150px;
	margin: 0 auto 34px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.az-posts .az-cat-bar {
	max-width: none;
	margin: 0 0 30px;
}
.az-cat-count {
	color: #5A6B85;
	font-size: 15px;
	font-weight: 600;
}

/* Single post */
.az-post-meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 18px;
	margin-top: 22px;
	color: #C9D6EA;
	font-size: 14px;
	font-weight: 600;
}
.az-post-meta span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
}
.az-post-meta i {
	color: #C9A227;
}
.az-post-wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: 56px 24px 10px;
}
.az-post-thumb {
	margin: 0 0 34px;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 39, 66, 0.12);
}
.az-post-thumb img {
	width: 100%;
	height: auto;
	display: block;
}
.az-post-content {
	font-size: 17px;
	line-height: 1.8;
	color: #1A2B45;
}
.az-post-content h1,
.az-post-content h2,
.az-post-content h3,
.az-post-content h4 {
	font-family: "Montserrat", Sans-serif;
	color: #0F2742;
	font-weight: 800;
	margin: 32px 0 14px;
}
.az-post-content h2 {
	font-size: 28px;
}
.az-post-content h3 {
	font-size: 22px;
}
.az-post-content p {
	margin: 0 0 20px;
}
.az-post-content a {
	color: #C9A227;
	font-weight: 600;
}
.az-post-content a:hover {
	color: #8A6F1C;
}
.az-post-content img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}
.az-post-content blockquote {
	border-left: 4px solid #C9A227;
	background: #F7F8FB;
	margin: 24px 0;
	padding: 18px 24px;
	border-radius: 0 10px 10px 0;
	font-style: italic;
	color: #1A2B45;
}
.az-post-content ul,
.az-post-content ol {
	margin: 0 0 20px 22px;
}
.az-post-content li {
	margin-bottom: 8px;
}
.az-tags {
	margin: 30px 0 0;
}
.az-tag-item {
	display: inline-block;
	background: #F4F6FA;
	color: #0F2742;
	font-size: 13px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	margin: 0 6px 8px 0;
	text-decoration: none;
}
.az-tag-item:hover {
	background: #C9A227;
	color: #0F2742;
}
.az-author {
	display: flex;
	gap: 20px;
	align-items: center;
	background: #F4F6FA;
	border-radius: 14px;
	padding: 26px;
	margin: 40px 0 0;
}
.az-author-avatar img {
	border-radius: 50%;
	width: 72px;
	height: 72px;
}
.az-author-avatar-fallback {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0F2742, #1B3A5C);
	color: #C9A227;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
}
.az-author-name {
	color: #0F2742;
	font-size: 18px;
	font-weight: 800;
	font-family: "Montserrat", Sans-serif;
	margin: 0 0 6px;
}
.az-author-bio {
	color: #5A6B85;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}
.az-post-nav {
	max-width: 860px;
	margin: 40px auto 0;
	padding: 0 24px;
	display: flex;
	gap: 18px;
}
.az-post-nav .az-nav {
	flex: 1;
	display: block;
	border: 1px solid #E9EDF3;
	border-radius: 12px;
	padding: 18px 20px;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}
.az-post-nav .az-nav:hover {
	border-color: #C9A227;
}
.az-nav-next {
	text-align: right;
}
.az-nav .az-nav-label {
	color: #8A6F1C;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: block;
	margin-bottom: 6px;
}
.az-nav .az-nav-title {
	color: #0F2742;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.4;
}
.az-related {
	max-width: 1150px;
	margin: 60px auto 0;
	padding: 0 24px;
}
.az-sec-title {
	font-family: "Montserrat", Sans-serif;
	color: #0F2742;
	font-size: 30px;
	font-weight: 800;
	text-align: center;
	margin: 0 0 34px;
}
.az-related .az-grid {
	max-width: none;
}

/* CTA section (sp-cta / btn4 / sp-btn-outline live on the homepage only,
   so they are bundled here for the blog CTA) */
.sp-sec-cta {
	padding: 46px 20px;
	text-align: center;
}
.sp-cta {
	background: linear-gradient(135deg, #0F2742 0%, #1B3A5C 100%);
	border-radius: 28px;
	padding: 40px 44px;
	max-width: 1150px;
	margin: 0 auto;
	box-shadow: 0 16px 38px rgba(15, 39, 66, 0.28);
}
.sp-cta .cta-flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	text-align: left;
}
.sp-cta .cta-left {
	flex: 1 1 420px;
	min-width: 0;
}
.sp-cta .cta-right {
	flex: 0 1 auto;
	text-align: right;
}
.btn4 {
	background-color: #C9A227 !important;
	font-family: "Montserrat", Sans-serif !important;
	padding: 15px 30px !important;
	border-radius: 6px !important;
	font-size: 16px !important;
	font-weight: 600 !important;
	color: #0F2742 !important;
	transition: all 0.3s ease-in-out;
}
.btn4:hover {
	background-color: #0F2742 !important;
	color: #FFFFFF !important;
}
.sp-btn-outline {
	display: inline-block;
	background: transparent;
	border: 2px solid #C9A227;
	color: #C9A227;
	font-family: "Montserrat", Sans-serif;
	padding: 15px 30px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	margin: 6px;
	transition: all 0.3s ease-in-out;
}
.sp-btn-outline:hover {
	background: #C9A227;
	color: #0F2742;
}
.color1 {
	color: white !important;
}
.color6 {
	color: #5A5A5A !important;
}
.fs-36 {
	font-size: 36px;
}
.fw-600 {
	font-weight: 600 !important;
}
.mb-0 {
	margin-bottom: 0px !important;
}

/* Responsive */
@media (max-width: 900px) {
	.az-layout {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.az-side {
		position: static;
		padding: 30px 24px;
	}
	.az-side h1 {
		font-size: 28px;
	}
	.az-featured {
		flex-direction: column;
	}
	.az-featured-fallback {
		min-height: 220px;
	}
	.az-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.az-hero h1 {
		font-size: 34px;
	}
	.az-featured-title {
		font-size: 24px;
	}
	.az-post-nav {
		flex-direction: column;
	}
}
@media (max-width: 767px) {
	.sp-cta {
		padding: 30px 22px;
	}
	.sp-cta .cta-right {
		text-align: center;
	}
	.sp-cta .cta-left {
		text-align: center;
	}
}
@media (max-width: 600px) {
	.az-grid {
		grid-template-columns: 1fr;
	}
	.az-grid-main {
		grid-template-columns: 1fr;
	}
	.az-hero {
		padding-top: 70px;
		padding-bottom: 56px;
	}
	.az-main {
		padding: 40px 16px;
	}
	.az-featured-body {
		padding: 28px 22px;
	}
	.az-post-wrap {
		padding: 36px 16px 0;
	}
	.az-post-nav {
		padding: 0 16px;
	}
	.az-related {
		padding: 0 16px;
	}
	.az-author {
		flex-direction: column;
		text-align: center;
	}
}
