/* Bài viết slug chia sẻ */
.cs-slider {
	position: relative;
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.cs-wrapper {
	position: relative;
}

/* ===== SLIDE ===== */
.cs-item {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.cs-item.active {
	opacity: 1;
	position: relative;
	z-index: 1;
}

/* ===== IMAGE ===== */
.cs-item img {
	width: 100%;
	height: auto;
	object-fit: cover;
	transform: scale(1.05);
	transition: transform 0.6s ease;
}

.cs-item.active img {
	transform: scale(1);
}

/* ===== OVERLAY ===== */
.cs-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px;
	background: #000000bf;
	color: var(--color-white);
	transform: translateY(20px);
	opacity: 0;
	transition: all 0.5s ease;
}

.cs-item.active .cs-overlay {
	transform: translateY(0);
	opacity: 1;
}

.cs-overlay h3 {
	font-size: 16px;
	color: var(--bright-yellow);
}

.cs-overlay p {
	font-size: 13px;
}

/* ===== PAGINATION ===== */
.cs-pagination {
	position: absolute;
	bottom: 10px;
	right: 10px;
	display: flex;
	z-index: 2;
}

.cs-dot {
	background: var(--bright-yellow);
	color: var(--color-black);
	border-radius: 4px;
	padding: 5px 10px;
	margin-left: 5px;
	cursor: pointer;
	font-size: 14px;
	transition: 0.3s;
}

.cs-dot:hover {
	transform: scale(1.1);
}

.cs-dot.active {
	background: var(--color-main);
	color: var(--color-white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
	.cs-overlay h3 { 
		font-size: 14px; 
	}

	.cs-overlay p { 
		font-size: 12px; 
	}

	.cs-dot { 
		font-size: 12px; 
		padding: 4px 8px; 
	}
}

/* Bài viết slug dịch vụ */
.dv-box {
	border: 1px solid #ddd;
    padding: 10px;
	border-radius: 6px;
}

.dv-title {
	padding: 5px;
	background: #f3f3f3;
	font-weight: bold;
	color: var(--color-main);
	border-left: 4px solid var(--color-main);
	margin-bottom: 10px;
	font-size: 18px;
}

.dv-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.dv-list li {
	margin-bottom: 10px;
	margin-left: unset !important;
}

.dv-list a {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	text-decoration: none;
	color: #333;
	font-size: 13px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	transition: color 0.3s;
}

.dv-list i {
	color: var(--color-main);
	font-size: 12px;
	margin-top: 4px;
	transition: 0.3s;
}

.dv-list a:hover {
	color: var(--color-main);
}

.dv-list a:hover i {
	color: var(--color-main);
	transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
	.dv-title {
		font-size: 16px;
	}

	.dv-list a {
		font-size: 13px;
	}
}

/* Bài viết tuyển dụng */
.tuyendung-wrap {
	border-radius: 6px;
	border: 1px solid #ddd;
	padding: 15px;
	background: var(--color-white);
}

/* TIÊU ĐỀ */
.td-title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.td-title a {
	color: var(--color-main);
	text-decoration: none;
}

/* KHỐI TRÊN */
.tuyendung-top {
	display: flex;
	gap: 12px;
	margin-bottom: 12px;
	align-items: flex-start;
}

/* ẢNH NHỎ LẠI */
.td-left img {
	width: 120px;
	height: 80px;
	object-fit: cover;
	border-radius: 4px;
}

/* NỘI DUNG */
.td-right {
	flex: 1;
}

/* GIỚI HẠN 2 DÒNG */
.td-excerpt {
	font-size: 14px;
	color: #333;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* LIST */
.tuyendung-item {
	border-top: 1px solid #eee;
	padding: 8px 0;
}

.tuyendung-item a {
	display: flex;
	align-items: center;
	gap: 8px;
	text-decoration: none;
	color: #333;
	font-size: 14px;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tuyendung-item i {
	color: var(--color-main);
}

/* MOBILE */
@media (max-width: 768px) {
	.tuyendung-top {
		flex-direction: column;
	}

	.td-left img {
		max-width: 100%;
	}
}