.blog-section {
	position: relative;
	margin-bottom: 100px;
	padding: 42px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 30px;
	background:
		radial-gradient(circle at 10% 15%, rgba(198, 164, 59, 0.16), transparent 32%),
		radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.06), transparent 30%),
		linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
	overflow: hidden;
}

.blog-section::before {
	content: "";
	position: absolute;
	inset: 24px 24px auto auto;
	width: 120px;
	height: 120px;
	border-top: 1px solid rgba(198, 164, 59, 0.22);
	border-right: 1px solid rgba(198, 164, 59, 0.22);
	border-radius: 0 24px 0 0;
}

.blog-head {
	position: relative;
	z-index: 1;
	margin-bottom: 28px;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
}

.blog-head span {
	display: inline-grid;
	place-items: center;
	margin-bottom: 12px;
	padding: 7px 15px;
	border: 1px solid rgba(198, 164, 59, 0.34);
	border-radius: 999px;
	background: rgba(198, 164, 59, 0.08);
	color: #f6d875;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1.5px;
}

.blog-head h2 {
	margin: 0 0 10px;
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 900;
	letter-spacing: -0.8px;
	background: linear-gradient(135deg, #fff 20%, #C6A43B 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.blog-head p {
	max-width: 620px;
	margin: 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 15px;
	line-height: 2;
}

.blog-all {
	min-width: 130px;
	min-height: 46px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(198, 164, 59, 0.38);
	border-radius: 999px;
	background: rgba(198, 164, 59, 0.08);
	color: #f6d875;
	font-size: 14px;
	font-weight: 900;
	transition: transform 0.3s ease, background 0.3s ease;
}

.blog-all:hover {
	transform: translateY(-3px);
	background: rgba(198, 164, 59, 0.16);
}

.blog-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.25fr 1fr 1fr;
	gap: 18px;
}

.blog-card {
	position: relative;
	min-height: 430px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	background: linear-gradient(160deg, rgba(36, 38, 62, 0.9), rgba(23, 25, 45, 0.82));
	box-shadow: 0 20px 54px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.07);
	overflow: hidden;
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
	transform: translateY(-9px);
	border-color: rgba(198, 164, 59, 0.3);
	box-shadow: 0 30px 78px rgba(0, 0, 0, 0.32), 0 0 42px rgba(198, 164, 59, 0.08);
}

.blog-thumb {
	position: relative;
	height: 170px;
	padding: 18px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	background:
		linear-gradient(135deg, rgba(198, 164, 59, 0.24), rgba(255, 255, 255, 0.04)),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 14px);
	overflow: hidden;
}

.blog-thumb::after {
	content: "";
	position: absolute;
	right: 50%;
	bottom: -42px;
	width: 140px;
	height: 140px;
	border: 1px solid rgba(255, 229, 107, 0.22);
	border-radius: 40px;
	transform: translateX(50%) rotate(18deg);
	background: rgba(198, 164, 59, 0.07);
}

.blog-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
}

.blog-thumb:has(img)::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(10, 12, 26, 0.18), rgba(10, 12, 26, 0.72));
}

.blog-thumb span {
	position: relative;
	z-index: 2;
	padding: 7px 12px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.22);
	color: #fff6ce;
	font-size: 12px;
	font-weight: 900;
}

.blog-thumb b {
	position: relative;
	z-index: 2;
	color: rgba(255, 255, 255, 0.18);
	font-size: 52px;
	font-weight: 900;
	line-height: 1;
}

.blog-content {
	padding: 24px;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.blog-content small {
	color: rgba(198, 164, 59, 0.9);
	font-size: 12px;
	font-weight: 800;
}

.blog-content h3 {
	margin: 12px 0;
	color: #fff;
	font-size: 21px;
	font-weight: 900;
	line-height: 1.6;
}

.blog-content p {
	margin: 0 0 22px;
	color: rgba(255, 255, 255, 0.62);
	font-size: 14px;
	line-height: 2;
}

.blog-content a {
	width: max-content;
	margin-top: auto;
	color: #f6d875;
	font-size: 14px;
	font-weight: 900;
}

.blog-card--featured .blog-thumb {
	height: 210px;
	background:
		radial-gradient(circle at 20% 15%, rgba(255, 229, 107, 0.32), transparent 34%),
		linear-gradient(135deg, rgba(198, 164, 59, 0.32), rgba(255, 255, 255, 0.05)),
		repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 16px);
}

@media (max-width: 980px) {
	.blog-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 620px) {
	.blog-section {
		padding: 28px 18px;
		border-radius: 24px;
	}

	.blog-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.blog-all {
		width: 100%;
	}

	.blog-card {
		min-height: auto;
	}
}
