/* =====================================================================
   QP Holdings — dynamic content styling
   Shared design tokens, used by:
     - news cards (.qp-news-*)
     - project cards (.qp-project-*)
     - jobs (.qp-job*)
     - investor docs (.qp-doc-*)
     - filters (.qp-filter*)
     - pagination (.qp-pagination)
   Palette: navy #0b1f3a, gold #C9A96E, ink #1c2b45, slate #5b6678
   ===================================================================== */

:root {
	--qp-navy: #0b1f3a;
	--qp-navy-2: #16365e;
	--qp-gold: #c9a96e;
	--qp-gold-dark: #a4854b;
	--qp-ink: #1c2b45;
	--qp-slate: #5b6678;
	--qp-muted: #8a93a3;
	--qp-line: #e6e8ee;
	--qp-line-2: #eef0f5;
	--qp-bg: #f7f8fb;
	--qp-radius: 12px;
	--qp-shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.06), 0 4px 12px rgba(11, 31, 58, 0.04);
	--qp-shadow-md: 0 6px 18px rgba(11, 31, 58, 0.08), 0 12px 36px rgba(11, 31, 58, 0.06);
	--qp-shadow-lg: 0 14px 40px rgba(11, 31, 58, 0.12), 0 24px 72px rgba(11, 31, 58, 0.08);
	--qp-ease: cubic-bezier(.22, 1, .36, 1);
}

/* -----------------------------------------------------
 * Shared section wrapper.
 * --------------------------------------------------- */
.qp-section { display: flex; flex-direction: column; gap: 28px; }
.qp-section .qp-section { gap: 20px; }
.qp-empty {
	padding: 48px 24px;
	text-align: center;
	color: var(--qp-muted);
	background: var(--qp-bg);
	border-radius: var(--qp-radius);
	font-style: italic;
}

/* -----------------------------------------------------
 * Filter pills.
 * --------------------------------------------------- */
.qp-filter-group { display: flex; flex-direction: column; gap: 10px; }
.qp-filter-group__label {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--qp-muted);
}
.qp-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 10px;
}
.qp-filter__pill {
	display: inline-flex;
	align-items: center;
	height: 36px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid var(--qp-line);
	font-size: 13px;
	font-weight: 600;
	color: var(--qp-ink);
	background: #fff;
	text-decoration: none !important;
	transition: all .25s var(--qp-ease);
	line-height: 1;
}
.qp-filter__pill:hover {
	border-color: var(--qp-gold);
	color: var(--qp-navy);
	background: #fffdf7;
}
.qp-filter__pill.is-active {
	background: var(--qp-navy);
	border-color: var(--qp-navy);
	color: #fff;
}

/* -----------------------------------------------------
 * Pagination.
 * --------------------------------------------------- */
.qp-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 16px;
}
.qp-pagination .qp-page,
.qp-pagination span.qp-page,
.qp-pagination a.qp-page {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 14px;
	border-radius: 8px;
	border: 1px solid var(--qp-line);
	font-size: 14px;
	font-weight: 600;
	color: var(--qp-ink);
	background: #fff;
	text-decoration: none !important;
	transition: all .25s var(--qp-ease);
}
.qp-pagination a.qp-page:hover {
	border-color: var(--qp-gold);
	color: var(--qp-navy);
}
.qp-pagination .qp-page.current,
.qp-pagination span.qp-page.current {
	background: var(--qp-navy);
	border-color: var(--qp-navy);
	color: #fff;
}
.qp-pagination .qp-page.dots { border-color: transparent; cursor: default; }

/* =====================================================
 * NEWS
 * =================================================== */
.qp-news-feature {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 36px;
	align-items: start;
}
.qp-news-side {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.qp-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

/* Card base */
.qp-news-card {
	display: flex;
	flex-direction: column;
	color: var(--qp-ink) !important;
	text-decoration: none !important;
	background: #fff;
	border-radius: var(--qp-radius);
	overflow: hidden;
	transition: transform .35s var(--qp-ease), box-shadow .35s var(--qp-ease);
}
.qp-news-card:hover { transform: translateY(-4px); box-shadow: var(--qp-shadow-md); }
.qp-news-card__media {
	position: relative;
	aspect-ratio: 16 / 11;
	overflow: hidden;
	background: var(--qp-line-2);
}
.qp-news-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.1s var(--qp-ease);
}
.qp-news-card:hover .qp-news-card__media img { transform: scale(1.06); }
.qp-news-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	height: 26px;
	padding: 0 10px;
	background: var(--qp-gold);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	border-radius: 4px;
}
.qp-news-card__body { padding: 22px 4px 6px; }
.qp-news-card--grid .qp-news-card__body { padding: 22px 18px 24px; }
.qp-news-card--feature .qp-news-card__body { padding-top: 26px; }
.qp-news-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--qp-muted);
}
.qp-news-card__cat { color: var(--qp-gold-dark); font-weight: 700; }
.qp-news-card__title {
	margin: 12px 0 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.28;
	color: var(--qp-navy);
	font-family: 'Open Sans', sans-serif;
	transition: color .25s var(--qp-ease);
}
.qp-news-card:hover .qp-news-card__title { color: var(--qp-gold-dark); }
.qp-news-card--feature .qp-news-card__title { font-size: 30px; line-height: 1.22; }
.qp-news-card__title--sm { font-size: 16px; line-height: 1.35; margin: 8px 0 0; }
.qp-news-card__excerpt {
	margin: 0;
	color: var(--qp-slate);
	font-size: 14.5px;
	line-height: 1.65;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.qp-news-card__more {
	display: inline-block;
	margin-top: 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: .04em;
	color: var(--qp-gold-dark);
	text-transform: uppercase;
}

/* Side variant: horizontal layout */
.qp-news-card--side {
	flex-direction: row;
	gap: 16px;
	border-radius: 8px;
	padding: 16px 0;
	border-bottom: 1px solid var(--qp-line);
}
.qp-news-card--side:last-child { border-bottom: 0; }
.qp-news-card--side:hover { transform: none; box-shadow: none; }
.qp-news-card--side .qp-news-card__media {
	flex: 0 0 168px;
	width: 168px;
	aspect-ratio: 4/3;
	border-radius: 8px;
}
.qp-news-card--side .qp-news-card__body { padding: 4px 0 0 0; flex: 1; min-width: 0; }

/* =====================================================
 * PROJECTS
 * =================================================== */
.qp-project-grid { display: grid; gap: 28px; }
.qp-project-grid--3 { grid-template-columns: repeat(3, 1fr); }
.qp-project-grid--2 { grid-template-columns: repeat(2, 1fr); }

.qp-project-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--qp-radius);
	overflow: hidden;
	color: var(--qp-ink) !important;
	text-decoration: none !important;
	box-shadow: var(--qp-shadow-sm);
	transition: transform .35s var(--qp-ease), box-shadow .35s var(--qp-ease);
}
.qp-project-card:hover { transform: translateY(-6px); box-shadow: var(--qp-shadow-lg); }
.qp-project-card__media {
	position: relative;
	aspect-ratio: 16/11;
	overflow: hidden;
	background: var(--qp-line-2);
}
.qp-project-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.2s var(--qp-ease);
}
.qp-project-card:hover .qp-project-card__media img { transform: scale(1.07); }
.qp-project-card__status {
	position: absolute;
	bottom: 16px;
	left: 16px;
	display: inline-flex;
	align-items: center;
	padding: 6px 12px;
	background: rgba(11, 31, 58, .92);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	border-radius: 4px;
	backdrop-filter: blur(8px);
}
.qp-project-card__status--da-ban-giao { background: rgba(34, 110, 76, .92); }
.qp-project-card__status--dang-trien-khai { background: rgba(11, 31, 58, .92); }
.qp-project-card__status--sap-ra-mat { background: rgba(170, 117, 47, .92); }
.qp-project-card__status--quy-hoach { background: rgba(85, 85, 99, .92); }
.qp-project-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.qp-project-card__cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--qp-gold-dark);
}
.qp-project-card__title {
	margin: 0;
	font-size: 21px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--qp-navy);
	font-family: 'Open Sans', sans-serif;
	transition: color .25s var(--qp-ease);
}
.qp-project-card:hover .qp-project-card__title { color: var(--qp-gold-dark); }
.qp-project-card__subtitle {
	margin: 0 0 4px;
	color: var(--qp-slate);
	font-size: 14px;
	line-height: 1.55;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.qp-project-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	font-size: 13px;
	color: var(--qp-slate);
}
.qp-project-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.qp-project-card__meta-item svg { color: var(--qp-gold); flex-shrink: 0; }

/* Single project hero & body */
.qp-project-single { background: #fff; }
.qp-project-single__hero {
	position: relative;
	min-height: 440px;
	background-color: var(--qp-navy);
	background-size: cover;
	background-position: center;
	color: #fff;
	display: flex;
	align-items: flex-end;
}
.qp-project-single__hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(11,31,58,0) 0%, rgba(11,31,58,.78) 100%);
}
.qp-project-single__hero-shell {
	position: relative;
	z-index: 1;
	max-width: 1250px;
	margin: 0 auto;
	padding: 80px 24px 56px;
	width: 100%;
}
.qp-project-single__crumbs {
	color: rgba(255,255,255,.7);
	font-size: 13px;
	letter-spacing: .08em;
	margin-bottom: 16px;
}
.qp-project-single__crumbs a { color: rgba(255,255,255,.7); text-decoration: none; }
.qp-project-single__hero-eyebrow {
	display: inline-block;
	padding: 4px 12px;
	border: 1px solid var(--qp-gold);
	color: var(--qp-gold);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	border-radius: 999px;
	margin-bottom: 18px;
}
.qp-project-single__hero h1 {
	margin: 0 0 12px;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
.qp-project-single__hero-sub {
	margin: 0;
	font-size: 18px;
	color: rgba(255,255,255,.86);
	max-width: 680px;
}
.qp-project-single__body {
	max-width: 1250px;
	margin: 0 auto;
	padding: 64px 24px 80px;
}
.qp-project-single__layout {
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 48px;
	align-items: start;
}
.qp-project-single__content {
	font-size: 16px;
	color: var(--qp-ink);
	line-height: 1.75;
}
.qp-project-single__content h2 {
	margin: 32px 0 16px;
	font-size: 24px;
	color: var(--qp-navy);
	font-family: 'Open Sans', sans-serif;
}
.qp-project-single__content ul { padding-left: 22px; }
.qp-project-single__content li { margin: 6px 0; }
.qp-project-single__highlights {
	background: var(--qp-bg);
	border-left: 4px solid var(--qp-gold);
	padding: 22px 26px;
	border-radius: 4px;
	margin: 24px 0;
}
.qp-project-single__highlights h3 {
	margin: 0 0 12px;
	color: var(--qp-navy);
	font-size: 16px;
	letter-spacing: .04em;
	text-transform: uppercase;
}
.qp-project-single__highlights ul { padding-left: 18px; margin: 0; }
.qp-project-single__highlights li { margin: 6px 0; color: var(--qp-ink); }
.qp-project-single__panel {
	position: sticky;
	top: 96px;
	background: #fff;
	border: 1px solid var(--qp-line);
	border-radius: var(--qp-radius);
	padding: 28px;
	box-shadow: var(--qp-shadow-sm);
}
.qp-project-single__panel-title {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	color: var(--qp-gold-dark);
	text-transform: uppercase;
	margin-bottom: 18px;
}
.qp-project-single__panel dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 12px 14px;
}
.qp-project-single__panel dt {
	color: var(--qp-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.qp-project-single__panel dd {
	margin: 0;
	color: var(--qp-navy);
	font-size: 14px;
	font-weight: 600;
}
.qp-project-single__gallery {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-top: 32px;
}
.qp-project-single__gallery img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 8px;
}

/* =====================================================
 * JOBS
 * =================================================== */
.qp-section.qp-jobs {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 64px;
	overflow-x: clip;
	box-sizing: border-box;
}
.qp-jobs { gap: 20px; overflow-x: hidden; }

/* Align filter groups horizontally with the job list shell */
.qp-section.qp-jobs > .qp-filter-group {
	width: min(100%, 1180px);
	margin-left: auto;
	margin-right: auto;
	padding: 0 24px;
	box-sizing: border-box;
}

.qp-job-list-shell {
	width: min(100%, 1180px);
	margin: 0 auto;
	padding: 0 24px;
	box-sizing: border-box;
	max-width: 100%;
	overflow-x: hidden;
}
.qp-job-list { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.qp-job {
	background: #fff;
	border: 1px solid var(--qp-line);
	border-radius: var(--qp-radius);
	padding: 22px 26px;
	transition: all .25s var(--qp-ease);
	min-width: 0;
	overflow: hidden;
	box-sizing: border-box;
}
.qp-job:hover {
	border-color: var(--qp-gold);
	box-shadow: var(--qp-shadow-md);
	transform: translateY(-1px);
}
.qp-job__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(190px, max-content);
	gap: 24px;
	align-items: center;
}
.qp-job__head-main { min-width: 0; }
.qp-job__dept {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .14em;
	color: var(--qp-gold-dark);
	text-transform: uppercase;
	margin-bottom: 8px;
}
.qp-job__title {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color: var(--qp-navy);
	font-family: 'Open Sans', sans-serif;
	line-height: 1.3;
}
.qp-job__title a { color: var(--qp-navy); text-decoration: none; transition: color .2s var(--qp-ease); overflow-wrap: anywhere; }
.qp-job__title a:hover { color: var(--qp-gold-dark); }
.qp-job__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	color: var(--qp-slate);
	font-size: 13px;
}
.qp-job__meta-item { display: inline-flex; align-items: center; gap: 6px; max-width: 100%; overflow-wrap: anywhere; }
.qp-job__meta-item svg { color: var(--qp-gold); flex-shrink: 0; }
.qp-job__head-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 6px;
	min-width: 0;
	max-width: 300px;
	text-align: right;
}
.qp-job__salary {
	font-size: 16px;
	font-weight: 700;
	color: var(--qp-navy);
	overflow-wrap: anywhere;
}
.qp-job__deadline { font-size: 12px; color: var(--qp-muted); }
.qp-job__apply {
	margin-top: 6px;
	display: inline-flex;
	align-items: center;
	height: 38px;
	padding: 0 18px;
	border-radius: 999px;
	background: var(--qp-navy);
	color: #fff !important;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none !important;
	transition: all .25s var(--qp-ease);
	white-space: nowrap;
}
.qp-job__apply:hover { background: var(--qp-gold); color: #fff !important; }

/* Single job */
.qp-job-single { background: #fff; }
.qp-job-single__hero { padding: 64px 0 32px; background: var(--qp-navy); color: #fff; }
.qp-job-single__hero-shell { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.qp-job-single__crumbs { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.qp-job-single__crumbs a { color: rgba(255,255,255,.7); text-decoration: none; }
.qp-job-single__hero h1 { margin: 0 0 16px; font-size: 38px; font-weight: 700; line-height: 1.18; color: #fff; }
.qp-job-single__meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: rgba(255,255,255,.85); }
.qp-job-single__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 999px;
	font-size: 13px;
}
.qp-job-single__body {
	max-width: 1100px;
	margin: -40px auto 0;
	padding: 0 24px 80px;
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
	position: relative;
	z-index: 2;
}
.qp-job-single__content {
	background: #fff;
	border-radius: var(--qp-radius);
	padding: 36px 40px;
	box-shadow: var(--qp-shadow-md);
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--qp-ink);
}
.qp-job-single__content h2 {
	font-size: 20px;
	color: var(--qp-navy);
	margin: 28px 0 12px;
	font-family: 'Open Sans', sans-serif;
}
.qp-job-single__content h2:first-child { margin-top: 0; }
.qp-job-single__content ul { padding-left: 22px; }
.qp-job-single__content li { margin: 6px 0; }
.qp-job-single__sidebar {
	position: sticky;
	top: 100px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.qp-job-single__panel {
	background: #fff;
	border: 1px solid var(--qp-line);
	border-radius: var(--qp-radius);
	padding: 24px;
	box-shadow: var(--qp-shadow-sm);
}
.qp-job-single__panel dl {
	margin: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 10px 14px;
}
.qp-job-single__panel dt {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .12em;
	color: var(--qp-muted);
	text-transform: uppercase;
}
.qp-job-single__panel dd {
	margin: 0;
	font-size: 13.5px;
	color: var(--qp-navy);
	font-weight: 600;
}
.qp-job-single__cta {
	background: var(--qp-navy);
	color: #fff;
	border-radius: var(--qp-radius);
	padding: 24px;
}
.qp-job-single__cta h3 {
	margin: 0 0 6px;
	font-size: 16px;
	color: #fff;
	font-family: 'Open Sans', sans-serif;
}
.qp-job-single__cta p { margin: 0 0 16px; font-size: 13px; color: rgba(255,255,255,.78); }
.qp-job-single__cta-button {
	display: block;
	text-align: center;
	background: var(--qp-gold);
	color: #fff !important;
	font-weight: 700;
	padding: 12px 18px;
	border-radius: 999px;
	text-decoration: none !important;
	transition: background .25s var(--qp-ease);
}
.qp-job-single__cta-button:hover { background: var(--qp-gold-dark); }

/* =====================================================
 * INVESTOR DOCS
 * =================================================== */
.qp-doc-section { display: flex; flex-direction: column; gap: 22px; }
.qp-doc-filter { display: flex; flex-direction: column; gap: 10px; }

.qp-doc-table {
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: var(--qp-radius);
	border: 1px solid var(--qp-line);
	overflow: hidden;
	box-shadow: var(--qp-shadow-sm);
}
.qp-doc-table__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 90px 140px 100px 130px;
	gap: 24px;
	padding: 14px 24px;
	background: var(--qp-navy);
	color: #fff;
	font-size: 11px;
	letter-spacing: .14em;
	font-weight: 800;
	text-transform: uppercase;
}
.qp-doc-table__col-action { text-align: right; }
.qp-doc-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 90px 140px 100px 130px;
	gap: 24px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--qp-line-2);
	align-items: center;
	transition: background .2s var(--qp-ease);
}
.qp-doc-row:hover { background: #fdfcf8; }
.qp-doc-row:last-child { border-bottom: 0; }
.qp-doc-row__title {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}
.qp-doc-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	min-width: 34px;
	max-width: 34px;
	flex: 0 0 34px;
	overflow: hidden;
}
.qp-doc-icon svg,
.qp-doc-icon img,
.qp-doc-icon i {
	display: block;
	width: 22px !important;
	height: 22px !important;
	max-width: 22px !important;
	max-height: 22px !important;
	font-size: 22px !important;
	line-height: 1 !important;
}
.qp-doc-row__title-inner { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.qp-doc-row__link {
	color: var(--qp-navy) !important;
	font-weight: 600;
	font-size: 15px;
	line-height: 1.4;
	text-decoration: none !important;
}
.qp-doc-row__link:hover { color: var(--qp-gold-dark) !important; }
.qp-doc-row__lang {
	font-size: 11px;
	color: var(--qp-muted);
	font-weight: 600;
	letter-spacing: .04em;
}
.qp-doc-row__year,
.qp-doc-row__date,
.qp-doc-row__size {
	font-size: 13px;
	color: var(--qp-slate);
}
.qp-doc-row__action { text-align: right; }
.qp-doc-row__btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: #fff;
	border: 1px solid var(--qp-gold);
	color: var(--qp-gold-dark) !important;
	font-size: 13px;
	font-weight: 700;
	border-radius: 999px;
	text-decoration: none !important;
	transition: all .25s var(--qp-ease);
}
.qp-doc-row__btn:hover {
	background: var(--qp-gold);
	color: #fff !important;
}
.qp-doc-row__btn svg {
	display: block;
	width: 16px !important;
	height: 16px !important;
	max-width: 16px !important;
	max-height: 16px !important;
	flex: 0 0 16px;
}

/* =====================================================
 * Responsive
 * =================================================== */
@media (max-width: 1024px) {
	.qp-news-feature { grid-template-columns: 1fr; }
	.qp-news-grid,
	.qp-project-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.qp-project-single__layout,
	.qp-job-single__body { grid-template-columns: 1fr; }
	.qp-project-single__panel,
	.qp-job-single__sidebar { position: static; }
	.qp-job-single__body { margin-top: 24px; }
	.qp-job-single__content { padding: 28px; }
	.qp-doc-table__head,
	.qp-doc-row { grid-template-columns: minmax(0, 1fr) 80px 110px 130px; gap: 16px; }
	.qp-doc-table__col-size, .qp-doc-row__size { display: none; }
}

@media (max-width: 768px) {
	.qp-news-grid,
	.qp-project-grid--3,
	.qp-project-grid--2 { grid-template-columns: 1fr; gap: 22px; }
	.qp-job-list-shell { padding: 0 16px; }
	.qp-news-card--feature .qp-news-card__title { font-size: 24px; }
	.qp-news-card--side { flex-direction: column; }
	.qp-news-card--side .qp-news-card__media { width: 100%; flex: none; aspect-ratio: 16/10; }
	.qp-project-single__hero { min-height: 320px; }
	.qp-project-single__hero h1 { font-size: 32px; }
	.qp-project-single__body { padding: 48px 16px 64px; }
	.qp-job { padding: 18px 18px; }
	.qp-job__head { grid-template-columns: 1fr; gap: 16px; }
	.qp-job__head-side { align-items: flex-start; min-width: 0; max-width: 100%; text-align: left; }
	.qp-doc-table__head { display: none; }
	.qp-doc-row {
		grid-template-columns: 1fr;
		gap: 6px;
		padding: 16px 18px;
		align-items: flex-start;
	}
	.qp-doc-row__year::before { content: 'Năm: '; color: var(--qp-muted); }
	.qp-doc-row__date::before { content: 'Ngày: '; color: var(--qp-muted); }
	.qp-doc-row__action { text-align: left; margin-top: 6px; }
	.qp-job-single__content { padding: 22px 20px; }
	.qp-job-single__hero h1 { font-size: 28px; }
}
