.gioithieupage h1{
	color: var(--color-main);
	margin-bottom:30px;
}
.gioithieupage p,
.gioithieupage h3{
	color: var(--color-black);
}
.gioithieupage p{
	font-size:17px;
	line-height: 1.8;
}
/* ==============================================================
1. PHẦN HEADER (TIÊU ĐỀ SECTION)
============================================================== */
.home_tintuc .sec-header {
	text-align: center;
	margin-bottom: 40px;
}

.home_tintuc .sec-header .badge-title {
	display: inline-block;
	margin-bottom: 12px;
}

.home_tintuc .sec-header .badge-title .badge-text {
	display: inline-block;
	border: 1.5px solid #b31217;
	color: #b31217;
	background-color: #fff;
	padding: 6px 22px;
	border-radius: 30px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.home_tintuc .sec-header .main-title {
	font-size: 32px;
	font-weight: 800;
	color: #b31217;
	text-transform: uppercase;
	margin-bottom: 15px;
	line-height: 1.3;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.home_tintuc .sec-header .main-title::before,
.home_tintuc .sec-header .main-title::after {
	content: "";
	display: block;
	height: 2px;
	width: 80px;
	background-color: #b31217;
}

.home_tintuc .sec-header .description {
	color: #444;
	font-size: 15px;
	max-width: 720px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ==============================================================
2. PHẦN THẺ BÀI VIẾT (CARD TIN TỨC) 
============================================================== */
.home_tintuc .post-item {
	padding: 15px; 
}

/* Khung viền ngoài của bài viết */
.home_tintuc .box-blog-post {
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

/* Hiệu ứng hover cho thẻ */
.home_tintuc .box-blog-post:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 30px rgba(179, 18, 23, 0.12);
	border-color: rgba(179, 18, 23, 0.3);
}

/* --- PHẦN HÌNH ẢNH (Đã fix lỗi mất ảnh) --- */
.home_tintuc .box-image {
	width: 100%;
	flex-shrink: 0; /* Lệnh quan trọng chống mất hình */
	border-radius: 14px 14px 0 0;
	overflow: hidden;
}

.home_tintuc .box-image img {
	transition: transform 0.5s ease;
	width: 100%;
}

.home_tintuc .box-blog-post:hover .box-image img {
	transform: scale(1.05); /* Phóng to ảnh nhẹ khi hover */
}

/* --- PHẦN VĂN BẢN (TEXT) --- */
.home_tintuc .box-text {
	padding: 20px 15px 20px 15px !important;
	background-color: transparent !important;
	text-align: left !important;
	flex-grow: 1; /* Cân bằng chiều cao các thẻ */
	width: 100%;
}

/* Ẩn thanh kẻ ngang (divider) mặc định */
.home_tintuc .is-divider {
	display: none !important; 
}

/* Tiêu đề bài viết */
.home_tintuc .post-title {
	margin-top: 0;
	margin-bottom: 12px;
	line-height: 1.45;
}

.home_tintuc .post-title a {
	min-height:44px;
	color: #b31217; 
	font-size: 18px; 
	font-weight: 700;
	display: -webkit-box;
	-webkit-line-clamp: 2; /* Tự động cắt thành ... nếu quá 2 dòng */
	-webkit-box-orient: vertical;
	overflow: hidden;
	transition: color 0.3s ease;
}

.home_tintuc .post-title a:hover {
	color: #ff2026; 
}

/* Đoạn mô tả (Excerpt) */
.home_tintuc .from_the_blog_excerpt {
	color: #555;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 0 !important;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* Tự động cắt thành ... nếu quá 3 dòng */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Khung bao ngoài của form */
.lienhe_form .col-inner {
	background-color: var(--color-white);
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	padding: 26px 22px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* Bố cục lưới 2 cột cho các thẻ label */
.lienhe_form .wpcf7-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px 16px;
	align-items: start;
}

/* Ẩn các phần tử ẩn để không làm lệch lưới */
.lienhe_form .screen-reader-response,
.lienhe_form .hidden-fields-container {
	display: none !important;
}

/* Tiêu đề & Mô tả đầu form */
.lienhe_form .form-title {
	color: var(--color-main);
	font-size: 20px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
	letter-spacing: -0.2px;
}

.lienhe_form .form-subtitle {
	font-size: 13.5px;
	color: #64748b;
	margin: -12px 0 0 0; /* Thu hẹp bớt khoảng cách gap với tiêu đề */
	line-height: 1.4;
}

/* Kiểu chữ của các nhãn (label) */
.lienhe_form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--color-black);
	margin: 0;
	width: 100%;
}

/* Đẩy Tiêu đề, Mô tả, Lộ trình chi tiết, Nút gửi, Dòng bảo mật tràn đủ 2 cột */
.lienhe_form .form-title,
.lienhe_form .form-subtitle,
.lienhe_form label:nth-of-type(7),
.lienhe_form .wpcf7-submit,
.lienhe_form .form-privacy-note,
.lienhe_form .wpcf7-response-output {
	grid-column: 1 / -1;
}

/* Các ô input, select và textarea */
.lienhe_form input[type="text"],
.lienhe_form input[type="tel"],
.lienhe_form select,
.lienhe_form textarea {
	margin: 0;
	margin-top: 5px;
	width: 100% !important;
	background-color: #f8fafc !important;
	border: 1px solid #cbd5e1 !important;
	border-radius: 8px !important;
	font-size: 14px !important;
	color: var(--color-black) !important;
	box-sizing: border-box !important;
	box-shadow: none !important;
	outline: none !important;
	transition: all 0.2s ease !important;
}

.lienhe_form input::placeholder,
.lienhe_form textarea::placeholder {
	color: #94a3b8 !important;
	font-size: 13px !important;
	font-weight: 400 !important;
}

/* Hiệu ứng khi bấm vào ô nhập */
.lienhe_form input:focus,
.lienhe_form select:focus,
.lienhe_form textarea:focus {
	border-color: var(--color-main) !important;
	background-color: var(--color-white) !important;
	box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
}

/* Chiều cao ô nhập nội dung */
.lienhe_form textarea {
	min-height: 100px !important;
	height: 90px !important;
	resize: vertical !important;
}

/* Nút Submit đỏ nổi bật */
.lienhe_form .wpcf7-submit {
	width: 100% !important;
	background-color: var(--color-main) !important;
	color: var(--color-white) !important;
	border: none !important;
	border-radius: 8px !important;
	padding: 13px 20px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	cursor: pointer !important;
	margin-top: 6px !important;
	transition: all 0.2s ease !important;
}

.lienhe_form .wpcf7-submit:hover {
	opacity: 0.9 !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 6px 18px rgba(220, 38, 38, 0.25) !important;
}

/* Dòng ghi chú bảo mật ở chân form */
.lienhe_form .form-privacy-note {
	font-size: 12.5px;
	color: #64748b;
	text-align: center;
	line-height: 1.45;
	margin-top: -10px; /* Thu hẹp bớt khoảng cách với nút gửi */
}

/* Báo lỗi và thông báo trạng thái */
.lienhe_form .wpcf7-not-valid-tip {
	font-size: 12px;
	color: var(--color-main);
	font-weight: 500;
	margin-top: 4px;
}

.lienhe_form .wpcf7-response-output {
	border-radius: 8px !important;
	font-size: 13.5px !important;
	text-align: center !important;
	padding: 10px !important;
	margin: 10px 0 0 0 !important;
}
.lienhe_form .wpcf7-spinner{
	display:none;
}

.blog-single .entry-title,
.blog-single h1,
.blog-single h2,
.blog-single h3,
.blog-single h4{
	color: var(--color-main);
}

.blog-single p{
	color: var(--color-black);
	font-size:17px;
	line-height:1.8;
}
.entry-header .entry-divider {
	display:none;
}
.entry-header-text.text-center{
	padding-bottom:5px;
}
.comments-area{
	display:none;
}

.bv-box {
	background: var(--color-white);
	border-radius: 10px;
	border: 1px solid var(--color-main);
	overflow: hidden;
}

/* Header */
.bv-header {
	padding: 12px 16px;
	font-weight: 700;
	border-bottom: 1px solid var(--color-main);
	font-size: 15px;
	color: var(--color-black);
}

/* Row */
.bv-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	text-decoration: none;
	border-bottom: 1px solid #f1f1f1;
	transition: background 0.25s;
}

.bv-row:last-child {
	border-bottom: none;
}

/* Image */
.bv-img {
	position: relative;
	width: 60px;
	height: 60px;
	flex-shrink: 0;
}

.bv-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
}

/* Number on image */
.bv-number {
	position: absolute;
	top: -6px;
	left: -6px;
	width: 22px;
	height: 22px;
	background: var(--color-main);
	color: var(--color-white);
	font-size: 12px;
	font-weight: 600;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* Content */
.bv-info {
	flex: 1;
}

.bv-title-post {
	font-size: 14px;
	font-weight: 600;
	color: var(--color-black);
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bv-row:hover .bv-title-post {
	color: var(--color-main);
}

.bv-date {
	font-size: 12px;
	color: #888;
	margin-top: 4px;
}
.home_loaixe .page-number.current{
	background: var(--color-main);
}


/* ============================================================
BÀI VIẾT & BẢNG GIÁ CHUẨN MẪU MỚI - CLASS: .banggia_page
============================================================ */

/* 1. Phần bài viết (Tiêu đề, đoạn văn) */
.banggia_page .post-main-title {
	color: var(--color-black);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.35;
	margin-bottom: 25px;
	text-transform: capitalize;
}

.banggia_page .post-lead, 
.banggia_page p {
	font-size: 16px;
	line-height: 1.65;
	color: var(--color-black);
	margin-bottom: 15px;
}

.banggia_page p:empty { display: none !important; }

/* 2. Cấu trúc Bảng Giá */
.banggia_page .price-table {
	border-spacing: 0 !important;
	margin: 30px 0 40px 0 !important;
	background: var(--color-white);
	border-radius: 8px 8px 1px 1px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgb(0 0 0 / 4%);
	display: table;
	border: 1px solid #e6e7e8 !important;
}

/* Scroll ngang trên điện thoại */
@media (max-width: 768px) {
	.banggia_page .price-table {
		display: block !important;
		overflow-x: auto !important;
		-webkit-overflow-scrolling: touch;
	}
	.banggia_page .price-table thead,
	.banggia_page .price-table tbody {
		min-width: 760px;
	}
}

/* Banner tối màu (Caption) */
.banggia_page .table-banner {
	caption-side: top;
	background: #0f172a; 
	padding: 24px 20px 20px 20px;
	text-align: left;
	border-radius: 8px 8px 0 0;
}

.banggia_page .banner-title {
	color: var(--color-white) !important;
	font-size: 19px !important;
	font-weight: 700 !important;
	margin: 0 0 6px 0 !important;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.banggia_page .badge-year {
	background: var(--color-main);
	color: var(--color-white);
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.banggia_page .banner-sub {
	color: #94a3b8 !important;
	font-size: 13.5px !important;
	margin: 0 !important;
}

/* Header các cột (TRẮNG, CHỮ IN HOA) */
.banggia_page .price-table thead tr {
	background: var(--color-white);
	border-bottom: 2px solid #f1f5f9;
}

.banggia_page .price-table th {
	padding: 16px 12px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	color: #475569 !important;
	text-transform: uppercase; /* In hoa */
	border-right: 1px solid #f1f5f9;
	white-space: nowrap;
	text-align: center;
}

.banggia_page .price-table th.th-route { text-align: left; width: 42%; }
.banggia_page .price-table th.th-stt { width: 5%; }
.banggia_page .price-table th.th-price { color: var(--color-main) !important; }
.banggia_page .price-table th.th-action { border-right: none; }

/* Nội dung các dòng (TR) */
.banggia_page .price-table td {
	padding: 16px 14px !important;
	font-size: 14.5px !important;
	color: var(--color-black);
	border-right: 1px solid #f1f5f9;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
}

.banggia_page .price-table tbody tr:hover {
	background: #fafafa;
}

.banggia_page .td-stt {
	text-align: center;
	font-weight: 700;
	color: #0f172a;
}

.banggia_page .td-route {
	text-align: left;
}

.banggia_page .route-name {
	font-size: 15px;
	font-weight: 700;
	color: var(--color-black);
}

/* Tag Hot có viền */
.banggia_page .tag-hot {
	background: rgba(220, 38, 38, 0.05);
	color: var(--color-main);
	border: 1px solid rgba(220, 38, 38, 0.25);
	font-size: 10px;
	font-weight: 600;
	padding: 1px 6px;
	border-radius: 4px;
	margin: 4px 0;
	display: inline-block;
}

.banggia_page .route-desc {
	margin: 4px 0 0 0 !important;
	font-size: 12.5px !important;
	color: var(--color-black) !important;
	line-height: 1.5;
}

.banggia_page .td-time,
.banggia_page .td-km {
	text-align: center;
	font-weight: 500;
	color: #475569;
}

.banggia_page .td-price {
	text-align: center;
	font-size: 16px !important;
	font-weight: 800;
	color: var(--color-main) !important;
}

/* Nút Đặt xe */
.banggia_page .td-action {
	text-align: center;
	border-right: none !important;
}

.banggia_page .btn-book {
	background: var(--color-main);
	color: var(--color-white) !important;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 5px;
	text-decoration: none !important;
	display: inline-block;
	transition: filter 0.2s ease, transform 0.1s ease;
	white-space: nowrap;
}

.banggia_page .btn-book:hover {
	filter: brightness(0.85);
	transform: translateY(-1px);
}

/* Class màu đỏ dành cho mục 2, 3, 4 */
/* .banggia_page .text-red {
color: var(--color-main) !important;
} */

/* 3. Phần bài viết bên dưới (Tiêu đề phụ, list, liên hệ) */
.banggia_page .section-title {
	color: var(--color-black);
	font-size: 20px;
	font-weight: 700;
	margin-top: 35px;
	margin-bottom: 18px;
	padding-left: 12px;
	border-left: 4px solid var(--color-main);
}

.banggia_page .sub-title {
	color: var(--color-black);
	font-size: 16.5px;
	font-weight: 600;
	margin-top: 20px;
	margin-bottom: 10px;
}

.banggia_page .benefit-list, 
.banggia_page .policy-list {
	list-style: none !important;
	padding-left: 0 !important;
	margin: 0 0 25px 0 !important;
}

.banggia_page .benefit-item, 
.banggia_page .policy-list li {
	font-size: 15px;
	line-height: 1.65;
	color: var(--color-black);
	margin-bottom: 10px;
	padding-left: 26px;
	position: relative;
}

.banggia_page .policy-list.check-list li::before, 
.banggia_page .benefit-item::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: #16a34a;
	font-weight: 800;
	font-size: 16px;
}

.banggia_page .policy-list.cross-list li::before {
	content: "✕";
	position: absolute;
	left: 2px;
	top: 0;
	color: var(--color-main);
	font-weight: 800;
	font-size: 14px;
}

.banggia_page .contact-brand {
	font-size: 18px;
	color: var(--color-black);
	margin-top: 15px;
	margin-bottom: 5px;
}

.banggia_page .contact-slogan {
	color: var(--color-main);
	font-weight: 600;
	margin-bottom: 14px;
}

.banggia_page .contact-hotline {
	font-size: 16px;
	margin-bottom: 8px;
}

.banggia_page .contact-hotline .phone-link {
	color: var(--color-main);
	font-size: 19px;
	text-decoration: none;
}

.banggia_page .contact-hotline .phone-link:hover {
	text-decoration: underline;
}

.banggia_page .contact-services {
	margin-top: 12px;
	font-size: 14.5px;
	color: var(--color-black);
}

/* Tự về 1 cột khi xem trên điện thoại */
@media (max-width: 768px) {
	.lienhe_form .wpcf7-form {
		grid-template-columns: 1fr;
		gap: 18px 0;
	}
	.lienhe_form .col-inner {
		padding: 18px 14px;
	}
	.home_tintuc .sec-header .main-title {
		font-size: 24px;
	}
	.lienhe_page .col{
		padding:0px !important;
	}
	.lienhe_page{
		padding:0px 15px !important;
	}

	/* Ép độ rộng tối thiểu cho cột 2 (Tuyến đường) rộng ra hẳn */
	.banggia_page .price-table th.th-route,
	.banggia_page .price-table td.td-route {
		min-width: 250px !important; /* Mở rộng chiều ngang cột này */
		white-space: normal;
	}
	width: 110px;
}
.banggia_page .post-main-title{
	font-size: 26px;
}
}