/* ===============================
GRID
================================ */
.dich-vu-grid .col .col-inner { padding: 0; }
.dich-vu-grid { display: flex; flex-wrap: wrap; gap: 0; }
.dich-vu-grid .col { flex: 1 1 33.333%; max-width: 33.333%; }
/* Grid tổng */
.dich-vu-grid .dich-vu-box {
	background: #fff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	transition: all 0.35s ease;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.dich-vu-grid .dich-vu-box:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.dich-vu-grid .box-image img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.dich-vu-grid .dich-vu-box:hover .box-image img {
	transform: scale(1.06);
}

.dich-vu-grid .box-text {
	padding: 18px 20px;
	flex: 1;
}

.dich-vu-grid .post-title {
	margin: 0;
	font-size: 16px;
	line-height: 1.4;
	font-weight: 600;
	min-height: calc(1.4em * 2);
}

.dich-vu-grid .post-title a {
	color: #222;
	text-decoration: none;
	transition: color 0.3s ease;

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.dich-vu-grid .dich-vu-box:hover .post-title a {
	color: #d62828;
}


@media (max-width: 1024px) {
	.dich-vu-grid .col { flex: 1 1 50% !important; max-width: 50%; }
}
@media (max-width: 425px) {
	/* .dich-vu-grid .col { flex: 1 1 100%; max-width: 100%; } */
	.dich-vu-box .box-image img{
		height: 120px !important;
	}
	.dichvu-card img{
		aspect-ratio: 16 / 9 !important;
	}
}

/* ===============================
BOX
================================ */
.dich-vu-box { height: 100%; display: flex; flex-direction: column; min-height: 30px; }
.dich-vu-box .box-image { align-items: center; margin: initial; }
.dich-vu-box .box-image img { width: 100%; height: 200px; object-fit: cover; border-radius: 5px; display: block; margin: 0; }
.dich-vu-box .box-text { flex: 1; display: flex; flex-direction: column; }
.no-image-placeholder { color: #999; font-size: 14px; text-align: center; }

/* ===============================
CONTENT
================================ */
.section-title-container.title-about.section-about-1{padding-top: 30px;}
.dichvu-meta-bar { display: flex; align-items: center; justify-content: flex-start; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.dichvu-meta-bar .share-label { font-weight: 600; }
.dichvu-meta-bar .dichvu-views { color: #666; }

/* ===============================
RELATED
================================ */
.dichvu-related { background: #f9f9f9; }
.dichvu-related h3 { font-size: 28px; margin-bottom: 24px; text-align: center; }
.dichvu-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; margin-bottom:30px}
.dichvu-card { background: #fff; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.dichvu-card__link { display: block; text-decoration: none; color: inherit; }
.dichvu-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.dichvu-card__info { padding: 15px; }
.dichvu-card__title { font-size: 16px; font-weight: 600; color: #222; margin: 0; line-height: 1.4; height: 44px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ===============================
RESPONSIVE
================================ */
@media (max-width: 992px) { .dichvu-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .dichvu-related-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===============================
LOAD MORE
================================ */
.dich-vu-load-more-container { text-align: center; }
#dich-vu-load-more { background: #D32F2F; color: white; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; transition: background 0.3s ease; font-size: 16px; text-transform: uppercase; }
#dich-vu-load-more:hover { background: #B71C1C; }
#dich-vu-load-more:disabled { background: #ccc; cursor: not-allowed; }

/* ===============================
SPINNER
================================ */
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.spinner { border: 4px solid #f3f3f3; border-top: 4px solid #D32F2F; border-radius: 50%; width: 40px; height: 40px; animation: spin 1s linear infinite; margin: 0 auto; }

/* ===============================
COLUMNS
================================ */
/* @media (min-width: 769px) {
.large-columns-5 .col { flex: 0 0 20%; max-width: 20%; }
.large-columns-6 .col { flex: 0 0 16.666%; max-width: 16.666%; }
} */
