/* Breadcrumb */
.docs-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	font-size: 14px;
	position: absolute;
	top: 150px;
	left: 20px;
	z-index: 100;
}

.banner-section {
	display: flex;
	justify-content: center;
}

.docs-breadcrumb-link {
	color: #6B7280;
	text-decoration: none;
	transition: color 0.2s ease;
}

.docs-breadcrumb-link:hover {
	color: var(--sec-color);
}

.docs-breadcrumb-separator {
	color: #9CA3AF;
}

.docs-breadcrumb-current {
	color: #6B7280;
}


/* Search Bar */
.docs-search-wrapper {
	margin-bottom: 48px;
	display: flex;
	justify-content: center;
}

.docs-search-bar {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 800px;
	border-radius: 8px;
	padding: 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.docs-search-bar:focus-within {
	border-color: var(--sec-color);
	box-shadow: 0 0 0 3px rgba(50, 151, 219, 0.1);
}

.docs-search-icon {
	flex-shrink: 0;
	margin-right: 12px;
	color: #9CA3AF;
}

.docs-search-input {
	flex: 1;
	width: 570px;
	padding: 10px 16px;
	border: none;
	background: transparent;
	font-size: 16px;
	color: #1F2937;
	outline: none;
	border: 1px solid #D1D5DB;
}

.docs-search-input::placeholder {
	color: #9CA3AF;
}

.docs-search-btn {
	padding: 12px 24px;
	background-color: var(--sec-color);
	color: #ffffff;
	border: none;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s ease;
	margin-left: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.docs-search-btn:hover {
	background-color: var(--main-color);
}

.docs-search-btn svg path {
	stroke: #ffffff;
}

/* Blog Page Section */
.blog-page-section {
	padding: 40px 0 80px 0;
	background-color: #ffffff;
	min-height: calc(100vh - 200px);
}

.blog-container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Blog Header */
.blog-header {
	text-align: center;
	margin-bottom: 40px;
}

.blog-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--sec-color);
	margin: 0 0 16px 0;
	line-height: 1.2;
}

.blog-description {
	font-size: 18px;
	font-weight: 400;
	color: #6B7280;
	margin: 0;
	line-height: 1.6;
}

/* Search Bar */
.blog-search-wrapper {
	margin-bottom: 48px;
	display: flex;
	justify-content: center;
}

.blog-search-bar {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 600px;
	background-color: #E8F4FD;
	border: 1px solid transparent;
	border-radius: 8px;
	padding: 0 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-bar:focus-within {
	border-color: var(--sec-color);
	box-shadow: 0 0 0 3px rgba(50, 151, 219, 0.1);
	background-color: #D1E9F8;
}

.blog-search-icon {
	flex-shrink: 0;
	margin-right: 12px;
	color: #9CA3AF;
}

.blog-search-input {
	flex: 1;
	padding: 16px 0;
	border: none;
	background: transparent;
	font-size: 16px;
	color: #1F2937;
	outline: none;
}

.blog-search-input::placeholder {
	color: #9CA3AF;
}

/* Blog Article Grid */
.blog-article-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}

.blog-article-card {
	background-color: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-article-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-article-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.blog-article-image {
	width: 100%;
	height: 250px;
	overflow: hidden;
	background-color: #F3F4F6;
}

.blog-article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.blog-article-card:hover .blog-article-image img {
	transform: scale(1.05);
}

.blog-article-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.blog-article-category {
	display: inline-block;
	padding: 4px 12px;
	background-color: #E8F4FD;
	color: var(--sec-color);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	width: fit-content;
}

.blog-article-title {
	font-size: 20px;
	font-weight: 600;
	color: #1F2937;
	margin: 0;
	line-height: 1.4;
	transition: color 0.2s ease;
}

.blog-article-link:hover .blog-article-title {
	color: var(--sec-color);
}

.blog-article-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6B7280;
	margin-top: auto;
}

.blog-article-author {
	font-weight: 500;
}

.blog-article-separator {
	color: #9CA3AF;
}

.blog-article-date {
	color: #6B7280;
}

/* Blog Nav Links */
.blog-nav-links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.blog-nav-links .nav-link {
	font-size: 15px;
	font-weight: 500;
	color: #374151;
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-nav-links .nav-link:hover,
.blog-nav-links .nav-link.active {
	color: var(--sec-color);
}

@keyframes blog-skeleton-loading {
	0% {
		background-position: 200% 0;
	}
	100% {
		background-position: -200% 0;
	}
}

.blog-skeleton-block {
	display: inline-block;
	background: linear-gradient(90deg, #eef2f7 25%, #f7f9fc 37%, #eef2f7 63%);
	background-size: 400% 100%;
	animation: blog-skeleton-loading 1.2s ease infinite;
}

.blog-type-skeleton {
	gap: 14px;
}

.blog-skeleton-nav-pill {
	width: 78px;
	height: 18px;
	border-radius: 999px;
}

.blog-skeleton-card {
	pointer-events: none;
}

.blog-skeleton-card:hover {
	transform: none;
	box-shadow: none;
}

.blog-skeleton-image {
	height: 250px;
}

.blog-skeleton-category {
	width: 88px;
	height: 24px;
	border-radius: 999px;
}

.blog-skeleton-title {
	width: 100%;
	height: 20px;
	border-radius: 6px;
}

.blog-skeleton-title.short {
	width: 72%;
}

.blog-skeleton-meta {
	width: 160px;
	height: 16px;
	border-radius: 6px;
}

.blog-detail-skeleton-breadcrumb {
	width: 260px;
	height: 16px;
	border-radius: 6px;
}

.blog-detail-skeleton-title {
	width: 72%;
	max-width: 620px;
	height: 52px;
	border-radius: 10px;
}

.blog-detail-skeleton-hero {
	width: 100%;
	height: 420px;
}

.blog-detail-skeleton-author {
	width: 140px;
	height: 18px;
	border-radius: 6px;
}

.blog-detail-skeleton-meta {
	width: 120px;
	height: 14px;
	border-radius: 6px;
}

.blog-detail-skeleton-meta.short {
	width: 92px;
}

.blog-detail-skeleton-category {
	width: 92px;
	height: 24px;
	border-radius: 999px;
}

.blog-detail-skeleton-line {
	width: 100%;
	height: 16px;
	border-radius: 6px;
}

.blog-detail-skeleton-line.mid {
	width: 86%;
}

.blog-detail-skeleton-line.short {
	width: 66%;
}

/* Detail Page Styles */
.blog-detail-section {
	padding: 40px 0 200px 0;
	background-color: #ffffff;
	min-height: calc(100vh - 200px);
}

.blog-detail-container {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 40px;
}

/* Breadcrumb */
.blog-breadcrumb {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 32px;
	font-size: 14px;
}

.blog-breadcrumb-link {
	color: var(--sec-color);
	text-decoration: none;
	transition: color 0.2s ease;
}

.blog-breadcrumb-link:hover {
	color: var(--main-color);
	text-decoration: underline;
}

.blog-breadcrumb-separator {
	color: #9CA3AF;
}

.blog-breadcrumb-current {
	color: #6B7280;
}

/* Detail Header */
.blog-detail-header {
	margin-bottom: 32px;
	position: relative;
	z-index: 5;
}

.blog-detail-title {
	font-size: 42px;
	font-weight: 700;
	color: #1F2937;
	margin: 0 0 16px 0;
	line-height: 1.3;
}

.blog-detail-category {
	display: inline-block;
	padding: 6px 16px;
	background-color: #E8F4FD;
	color: var(--sec-color);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease;
	position: relative;
	z-index: 6;
	pointer-events: auto;
}

.blog-detail-category:hover {
	background-color: #D9EBFA;
}

/* Hero Image */
.blog-detail-hero-image {
	width: 100%;
	margin-bottom: 32px;
	border-radius: 8px;
	overflow: hidden;
	background-color: #F3F4F6;
}

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

/* Author Info */
.blog-detail-author {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 48px;
	padding-bottom: 32px;
	border-bottom: 1px solid #E5E7EB;
}

.blog-detail-author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background-color: #E5E7EB;
}

.blog-detail-author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-detail-author-info {
	flex: 1;
}

.blog-detail-author-name {
	font-size: 16px;
	font-weight: 600;
	color: #1F2937;
	margin-bottom: 4px;
}

.blog-detail-author-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #6B7280;
}

.blog-detail-author-separator {
	color: #9CA3AF;
}

/* Content */
.blog-detail-content {
	font-size: 18px;
	line-height: 1.8;
	color: #374151;
}

.blog-detail-content p {
	margin: 0 0 24px 0;
}

.blog-detail-content img {
	max-width: 100% !important;
	height: auto !important;
	display: block;
}

.blog-detail-content h2 {
	font-size: 32px;
	font-weight: 700;
	color: #1F2937;
	margin: 48px 0 24px 0;
	line-height: 1.3;
}

.blog-detail-content h2:first-of-type {
	margin-top: 0;
}

.blog-detail-content ul {
	margin: 24px 0;
	padding-left: 24px;
}

.blog-detail-content ul li {
	margin-bottom: 12px;
	line-height: 1.7;
}

.blog-detail-content ul li strong {
	color: #1F2937;
	font-weight: 600;
}

