/*
Theme Name: NDT 15
Theme URI: 
Author: Epart Tech 
Author URI: 
Description: Theme Custom cho dự án National Digital Twin 15 (NDT 15)
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, tailwind, ndt15
Text Domain: ndt15

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* --------------------------------------------------------------
LƯU Ý KỸ THUẬT (DEVELOPER NOTE):
- Theme này sử dụng Tailwind CSS qua CDN (khai báo trong header.php).
- Các CSS tùy chỉnh chính nằm trong thư mục: assets/css/style.css
- File style.css này chủ yếu dùng để khai báo thông tin Theme với WordPress.
--------------------------------------------------------------
*/

/* ========== Cấu trúc chính ========== */
.wordpress-content {
	max-width: 100%;
	line-height: 1.8;
	font-size: 16px;
	color: #222;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.wordpress-content ol {
	list-style: decimal;
}
.wordpress-content p,
.wordpress-content ul,
.wordpress-content ol,
.wordpress-content blockquote,
.wordpress-content pre,
.wordpress-content table {
	margin-bottom: 1em;
	text-align: justify;
}

/* ========== Tiêu đề ========== */
.wordpress-content h1,
.wordpress-content h2,
.wordpress-content h3,
.wordpress-content h4,
.wordpress-content h5,
.wordpress-content h6 {
	margin: 0 0 1em;
	line-height: 1.3;
	font-weight: 600;
	color: #111;
}

/* ========== Danh sách ========== */
.wordpress-content ul,
.wordpress-content ol {
	padding-left: 2em;
}

/* ========== Liên kết ========== */
.wordpress-content a {
	color: #0073aa;
	text-decoration: underline;
	transition: color 0.2s ease;
}
.wordpress-content a:hover {
	color: #005177;
}

/* ========== Ảnh & figure ========== */
.wordpress-content img {
	max-width: 100%;
	height: auto;
	display: block;
}
.wordpress-content figure {
	margin: 1.5em 0;
	text-align: center;
}
.wordpress-content figcaption {
	font-size: 0.9em;
	color: #666;
	margin-top: 0.5em;
}

/* ========== Blockquote ========== */
.wordpress-content blockquote {
	border-left: 4px solid #0073aa;
	padding-left: 1em;
	color: #555;
	font-style: italic;
	background: #f9f9f9;
}

/* ========== Bảng ========== */
.wordpress-content table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 1.5em;
}
.wordpress-content th,
.wordpress-content td {
	border: 1px solid #ddd;
	padding: 8px 12px;
}
.wordpress-content th {
	background: #f5f5f5;
	font-weight: 600;
}

/* ========== Code & Pre ========== */
.wordpress-content pre {
	background: #f4f4f4;
	padding: 1em;
	border-radius: 4px;
	overflow-x: auto;
}
.wordpress-content code {
	background: #f4f4f4;
	padding: 0.2em 0.4em;
	border-radius: 3px;
	font-family: Consolas, monospace;
	font-size: 0.95em;
}

/* ========== Căn trái / phải / giữa (chuẩn WP) ========== */
.wordpress-content .alignleft {
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1em;
}
.wordpress-content .alignright {
	float: right;
	margin-left: 1.5em;
	margin-bottom: 1em;
}
.wordpress-content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: both;
}

/* ========== Ảnh có chú thích (caption) ========== */
.wordpress-content .wp-caption {
	max-width: 100%;
	text-align: center;
	margin-bottom: 1.5em;
}
.wordpress-content .wp-caption img {
	display: inline-block;
	max-width: 100%;
	height: auto;
}
.wordpress-content .wp-caption-text {
	font-size: 0.9em;
	color: #666;
	margin-top: 0.5em;
}

/* ========== Gallery (Gutenberg hoặc Classic) ========== */
.wordpress-content .gallery {
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	justify-content: center;
}
.wordpress-content .gallery-item {
	flex: 1 1 150px;
	text-align: center;
}
.wordpress-content .gallery img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

/* ========== Clearfix ========== */
.wordpress-content::after {
	content: "";
	display: block;
	clear: both;
}

/* ========== Gutenberg block hỗ trợ cơ bản ========== */
.wordpress-content .wp-block-image {
	margin: 1.5em 0;
	text-align: center;
}
.wordpress-content .wp-block-image img {
	display: inline-block;
	height: auto;
}
.wordpress-content .wp-block-quote {
	border-left: 4px solid #0073aa;
	padding-left: 1em;
	background: #f9f9f9;
	margin: 1.5em 0;
}
.wordpress-content .wp-block-table {
	border-collapse: collapse;
	width: 100%;
}
.wordpress-content .wp-block-table th,
.wordpress-content .wp-block-table td {
	border: 1px solid #ddd;
	padding: 8px 12px;
}