/* ==========================================================================
   TẦNG 5 — UTILITIES
   Giữ ở mức tối thiểu. Chỉ thêm utility khi đã dùng lại >= 3 nơi.
   Không tạo utility cho màu/typography — dùng component.
   ========================================================================== */

/* Hiển thị theo breakpoint */
.dst-u-hide { display: none !important; }

@media (max-width: 767.98px) {
	.dst-u-hide-mobile { display: none !important; }
}

@media (min-width: 992px) {
	.dst-u-hide-desktop { display: none !important; }
}

/* Chỉ đọc bằng trình đọc màn hình */
.dst-u-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Căn chữ */
.dst-u-text-center { text-align: center; }
.dst-u-text-left   { text-align: left; }

/* Bỏ nhịp dọc của section (khi 2 section cùng nền dính nhau) */
.dst-u-pt-0 { padding-top: 0 !important; }
.dst-u-pb-0 { padding-bottom: 0 !important; }
