/*
CTC Separate Stylesheet
Updated: 2020-12-20 15:04:18
*/

body #load {
    display: none !important;
}

.gpthpp-site-header {
	background: #06213d;
	color: #fff;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.16);
	transition: box-shadow 0.18s ease, background-color 0.18s ease;
}

.admin-bar .gpthpp-site-header {
	top: 32px;
}

body.gpthpp-fixed-header-ready {
	padding-top: var(--gpthpp-header-height, 76px);
}

.gpthpp-site-header.gpthpp-header-scrolled {
	background: #061d36;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.gpthpp-header-inner {
	align-items: center;
	display: flex;
	gap: 22px;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1240px;
	min-height: 56px;
	padding: 10px 28px;
}

.gpthpp-brand {
	align-items: center;
	color: #fff;
	display: flex;
	flex: 0 1 auto;
	gap: 12px;
	min-width: 250px;
	text-decoration: none;
}

.gpthpp-brand:hover,
.gpthpp-brand:focus {
	color: #fff;
	text-decoration: none;
}

.gpthpp-logo {
	display: block;
	flex: 0 0 auto;
	height: 54px;
	object-fit: contain;
	width: 54px;
}

.gpthpp-brand-text {
	display: flex;
	flex-direction: column;
	line-height: 1.22;
	min-width: 0;
}

.gpthpp-brand-line {
	color: #fff;
	display: block;
	font-weight: 700;
	letter-spacing: 0;
	white-space: normal;
}

.gpthpp-brand-line-en {
	font-size: 17px;
}

.gpthpp-brand-line-zh {
	font-size: 20px;
	margin-top: 3px;
}

.gpthpp-primary-navigation {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.gpthpp-primary-menu,
.gpthpp-primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.gpthpp-primary-menu {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: flex-end;
}

.gpthpp-primary-menu li {
	position: relative;
}

.gpthpp-primary-menu a {
	align-items: center;
	border-radius: 6px;
	color: #fff;
	display: flex;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.25;
	min-height: 40px;
	padding: 10px 12px;
	text-decoration: none;
	transition: background-color 0.16s ease, color 0.16s ease;
	white-space: nowrap;
}

.gpthpp-primary-menu a:hover,
.gpthpp-primary-menu a:focus,
.gpthpp-primary-menu .current-menu-item > a,
.gpthpp-primary-menu .current-menu-ancestor > a,
.gpthpp-primary-menu .current-menu-parent > a {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	outline: none;
}

.gpthpp-primary-menu a:focus-visible,
.gpthpp-menu-toggle:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.gpthpp-primary-menu .current-menu-item > a,
.gpthpp-primary-menu .current-menu-ancestor > a,
.gpthpp-primary-menu .current-menu-parent > a {
	box-shadow: inset 0 -3px 0 #d61f35;
}

.gpthpp-primary-menu .sub-menu {
	background: #082947;
	border-radius: 8px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
	left: 0;
	min-width: 190px;
	opacity: 0;
	padding: 8px;
	position: absolute;
	top: calc(100% + 8px);
	transform: translateY(8px);
	transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
	visibility: hidden;
	z-index: 60;
}

.gpthpp-primary-menu .sub-menu .sub-menu {
	left: calc(100% + 8px);
	top: 0;
}

.gpthpp-primary-menu li:hover > .sub-menu,
.gpthpp-primary-menu li:focus-within > .sub-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.gpthpp-primary-menu .sub-menu a {
	border-radius: 5px;
	font-size: 14px;
	justify-content: flex-start;
	min-height: 38px;
	padding: 9px 10px;
	width: 100%;
}

.gpthpp-primary-menu .menu-item-has-children > a::after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	content: "";
	display: inline-block;
	margin-left: 7px;
}

.gpthpp-primary-menu .menu-login-button > a {
	background: #d61f35;
	border-radius: 999px;
	box-shadow: none;
	margin-left: 6px;
	padding-left: 18px;
	padding-right: 18px;
}

.gpthpp-primary-menu .menu-login-button > a:hover,
.gpthpp-primary-menu .menu-login-button > a:focus {
	background: #b91729;
}

.gpthpp-menu-toggle {
	align-items: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.26);
	border-radius: 7px;
	color: #fff;
	cursor: pointer;
	display: none;
	flex: 0 0 auto;
	flex-direction: column;
	gap: 5px;
	height: 42px;
	justify-content: center;
	padding: 0;
	width: 44px;
}

.gpthpp-menu-toggle span {
	background: currentColor;
	border-radius: 2px;
	display: block;
	height: 2px;
	width: 22px;
}

@media (max-width: 1100px) {
	.gpthpp-header-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.gpthpp-primary-menu a {
		font-size: 14px;
		padding-left: 9px;
		padding-right: 9px;
	}

	.gpthpp-brand-line-en {
		font-size: 15px;
	}

	.gpthpp-brand-line-zh {
		font-size: 18px;
	}
}

@media (max-width: 900px) {
	.gpthpp-header-inner {
		flex-wrap: wrap;
		gap: 10px 14px;
		min-height: 52px;
		padding: 6px 14px;
	}

	.gpthpp-brand {
		flex: 1 1 calc(100% - 62px);
		gap: 10px;
		min-width: 0;
	}

	.gpthpp-logo {
		height: 38px;
		width: 38px;
	}

	.gpthpp-brand-line-en {
		font-size: 12px;
	}

	.gpthpp-brand-line-zh {
		font-size: 15px;
		margin-top: 2px;
	}

	.gpthpp-menu-toggle {
		display: flex;
		height: 38px;
		width: 40px;
	}

	.gpthpp-primary-navigation {
		display: none;
		flex: 0 0 100%;
		width: 100%;
	}

		.gpthpp-site-header.is-menu-open .gpthpp-primary-navigation {
			display: block;
			max-height: calc(100vh - var(--gpthpp-header-height, 64px));
			overflow-y: auto;
			overscroll-behavior: contain;
		}

	.gpthpp-primary-menu {
		align-items: stretch;
		background: #071f39;
		border-top: 1px solid rgba(255, 255, 255, 0.12);
		display: block;
		padding: 6px 0 10px;
		width: 100%;
	}

	.gpthpp-primary-menu a {
		border-radius: 5px;
		font-size: 15px;
		justify-content: space-between;
		min-height: 38px;
		padding: 9px 10px;
		white-space: normal;
		width: 100%;
	}

	.gpthpp-primary-menu .sub-menu,
	.gpthpp-primary-menu .sub-menu .sub-menu {
		background: rgba(255, 255, 255, 0.06);
		border-radius: 6px;
		box-shadow: none;
		display: none;
		left: auto;
		margin: 2px 0 6px 14px;
		min-width: 0;
		opacity: 1;
		padding: 4px;
		position: static;
		top: auto;
		transform: none;
		visibility: visible;
	}

	.gpthpp-primary-menu li:hover > .sub-menu,
	.gpthpp-primary-menu li:focus-within > .sub-menu {
		display: none;
	}

	.gpthpp-primary-menu li.is-submenu-open > .sub-menu {
		display: block;
	}

	.gpthpp-primary-menu .current-menu-item > a,
	.gpthpp-primary-menu .current-menu-ancestor > a,
	.gpthpp-primary-menu .current-menu-parent > a {
		box-shadow: inset 3px 0 0 #d61f35;
	}

	.gpthpp-primary-menu .menu-login-button > a {
		background: rgba(214, 31, 53, 0.22);
		border-radius: 5px;
		margin-left: 0;
	}
}

@media (max-width: 782px) {
	.admin-bar .gpthpp-site-header {
		top: 46px;
	}
}

@media (max-width: 420px) {
	.gpthpp-header-inner {
		padding-left: 10px;
		padding-right: 10px;
	}

	.gpthpp-logo {
		height: 36px;
		width: 36px;
	}

	.gpthpp-brand-line-en {
		font-size: 12px;
	}

	.gpthpp-brand-line-zh {
		font-size: 15px;
	}
}

.home #fancy-header {
	display: none;
}

.home #main,
.home #content {
	padding-top: 0;
	padding-bottom: 0;
}

.home #main > .wf-wrap {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
	width: 100%;
}

.home .wf-container-main {
	display: block;
}

.gpthpp-home {
	--gpthpp-navy: #06213d;
	--gpthpp-navy-soft: #0b2b4f;
	--gpthpp-red: #d61f35;
	--gpthpp-muted: #657184;
	--gpthpp-border: #e7ebf1;
	--gpthpp-soft: #f4f6f9;
	background: #fff;
	color: #182235;
	font-family: inherit;
	margin-left: calc(50% - 50vw);
	overflow: hidden;
	width: 100vw;
}

.gpthpp-home * {
	box-sizing: border-box;
}

.gpthpp-home-container {
	margin: 0 auto;
	max-width: 1180px;
	padding-left: 24px;
	padding-right: 24px;
	width: 100%;
}

.gpthpp-hero {
	background:
		radial-gradient(circle at 84% 24%, rgba(214, 31, 53, 0.18), transparent 28%),
		linear-gradient(135deg, #06213d 0%, #0a2a4b 58%, #061b34 100%);
	color: #fff;
	padding: clamp(72px, 7vw, 96px) 0 clamp(70px, 6.4vw, 92px);
	position: relative;
}

.gpthpp-hero::after {
	background: linear-gradient(90deg, rgba(214, 31, 53, 0.96), rgba(214, 31, 53, 0));
	bottom: 0;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	width: 42%;
}

.gpthpp-hero-grid {
	align-items: center;
	display: grid;
	gap: clamp(30px, 5vw, 62px);
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
}

.gpthpp-eyebrow,
.gpthpp-section-kicker {
	color: var(--gpthpp-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.12em;
	line-height: 1.2;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.gpthpp-hero h1 {
	color: #fff;
	font-size: clamp(38px, 5.2vw, 68px);
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.14;
	margin: 0;
}

.gpthpp-hero h1 span {
	display: block;
}

.gpthpp-hero h1 em {
	color: #ff4459;
	font-style: normal;
}

.gpthpp-hero-intro {
	color: rgba(255, 255, 255, 0.84);
	font-size: 17px;
	line-height: 1.72;
	margin: 22px 0 0;
	max-width: 650px;
}

.gpthpp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.gpthpp-btn {
	align-items: center;
	border-radius: 999px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-height: 44px;
	padding: 14px 24px;
	text-decoration: none;
	transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gpthpp-btn:hover,
.gpthpp-btn:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.gpthpp-btn-primary {
	background: var(--gpthpp-red);
	color: #fff;
}

.gpthpp-btn-primary:hover,
.gpthpp-btn-primary:focus {
	background: #b91729;
	color: #fff;
}

.gpthpp-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.34);
	color: #fff;
}

.gpthpp-btn-secondary:hover,
.gpthpp-btn-secondary:focus {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
}

.gpthpp-hero-visual {
	display: flex;
	justify-content: flex-end;
}

.gpthpp-visual-card {
	aspect-ratio: 1.08;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 24px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
	max-width: 330px;
	min-height: 280px;
	overflow: hidden;
	padding: 30px;
	position: relative;
	width: min(100%, 330px);
}

.gpthpp-visual-mark {
	color: rgba(255, 255, 255, 0.92);
	display: block;
	font-size: 96px;
	font-weight: 800;
	line-height: 1;
	position: relative;
	z-index: 1;
}

.gpthpp-visual-bars {
	align-items: end;
	bottom: 26px;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(4, 1fr);
	left: 28px;
	position: absolute;
	right: 28px;
	top: 132px;
}

.gpthpp-visual-bars span {
	background: rgba(255, 255, 255, 0.18);
	border-radius: 10px 10px 0 0;
	display: block;
}

.gpthpp-visual-bars span:nth-child(1) { height: 54%; }
.gpthpp-visual-bars span:nth-child(2) { height: 76%; background: rgba(214, 31, 53, 0.8); }
.gpthpp-visual-bars span:nth-child(3) { height: 64%; }
.gpthpp-visual-bars span:nth-child(4) { height: 88%; }

.gpthpp-values {
	background: linear-gradient(180deg, #fff 0%, var(--gpthpp-soft) 100%);
	padding: 0 0 48px;
}

.gpthpp-values-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: -34px;
	position: relative;
	z-index: 2;
}

.gpthpp-value-card,
.gpthpp-about-card,
.gpthpp-mission-card,
.gpthpp-activity-card {
	border-radius: 18px;
	box-shadow: 0 14px 36px rgba(6, 33, 61, 0.1);
}

.gpthpp-value-card {
	background: #fff;
	border: 1px solid var(--gpthpp-border);
	padding: 24px 22px 22px;
}

.gpthpp-value-icon {
	align-items: center;
	background: rgba(214, 31, 53, 0.1);
	border-radius: 14px;
	color: var(--gpthpp-red);
	display: flex;
	font-size: 26px;
	font-weight: 800;
	height: 52px;
	justify-content: center;
	margin-bottom: 16px;
	width: 52px;
}

.gpthpp-value-card h2 {
	color: var(--gpthpp-navy);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.28;
	margin: 0 0 8px;
}

.gpthpp-value-card p {
	color: var(--gpthpp-muted);
	font-size: 14px;
	line-height: 1.58;
	margin: 0;
}

.gpthpp-about {
	background: var(--gpthpp-soft);
	padding: 50px 0 56px;
}

.gpthpp-about-grid {
	align-items: stretch;
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
}

.gpthpp-about-card {
	background: #fff;
	border: 1px solid var(--gpthpp-border);
	padding: 34px;
}

.gpthpp-about-card h2,
.gpthpp-section-heading h2 {
	color: var(--gpthpp-navy);
	font-size: clamp(28px, 3vw, 38px);
	font-weight: 800;
	line-height: 1.18;
	margin: 0 0 16px;
}

.gpthpp-about-card p:not(.gpthpp-section-kicker) {
	color: #3f4d61;
	font-size: 16px;
	line-height: 1.78;
	margin: 0;
}

.gpthpp-mission-card {
	background: linear-gradient(145deg, var(--gpthpp-navy) 0%, var(--gpthpp-navy-soft) 100%);
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 260px;
	padding: 30px;
}

.gpthpp-mission-char {
	color: rgba(255, 255, 255, 0.16);
	font-size: 98px;
	font-weight: 900;
	line-height: 0.85;
}

.gpthpp-mission-card p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.72;
	margin: 18px 0 0;
}

.gpthpp-activities {
	background: #fff;
	padding: 58px 0 64px;
}

.gpthpp-section-heading {
	align-items: end;
	display: flex;
	gap: 24px;
	justify-content: space-between;
	margin-bottom: 28px;
}

.gpthpp-section-heading p {
	color: var(--gpthpp-muted);
	font-size: 15px;
	line-height: 1.55;
	margin: 0;
	max-width: 360px;
}

.gpthpp-activity-grid {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gpthpp-activity-card {
	background: #fff;
	border: 1px solid var(--gpthpp-border);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.gpthpp-activity-image {
	background: linear-gradient(135deg, var(--gpthpp-navy), #123b68);
	display: block;
	height: 200px;
	overflow: hidden;
	position: relative;
	text-decoration: none;
}

.gpthpp-activity-image img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 0.24s ease;
	width: 100%;
}

.gpthpp-activity-card:hover .gpthpp-activity-image img {
	transform: scale(1.04);
}

.gpthpp-activity-placeholder {
	align-items: center;
	color: rgba(255, 255, 255, 0.82);
	display: flex;
	font-size: 16px;
	font-weight: 800;
	height: 100%;
	justify-content: center;
	padding: 20px;
	text-align: center;
}

.gpthpp-date-badge {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
	color: var(--gpthpp-navy);
	left: 14px;
	min-width: 74px;
	padding: 8px 10px;
	position: absolute;
	text-align: center;
	top: 14px;
}

.gpthpp-date-badge strong,
.gpthpp-date-badge span {
	display: block;
}

.gpthpp-date-badge strong {
	font-size: 24px;
	line-height: 1;
}

.gpthpp-date-badge span {
	color: var(--gpthpp-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 4px;
	text-transform: uppercase;
}

.gpthpp-activity-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.gpthpp-category-badge {
	align-self: flex-start;
	background: rgba(214, 31, 53, 0.1);
	border-radius: 999px;
	color: var(--gpthpp-red);
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	margin-bottom: 12px;
	padding: 7px 10px;
}

.gpthpp-activity-body h3 {
	font-size: 18px;
	font-weight: 800;
	line-height: 1.38;
	margin: 0 0 10px;
}

.gpthpp-activity-body h3 a {
	color: var(--gpthpp-navy);
	text-decoration: none;
}

.gpthpp-activity-body h3 a:hover,
.gpthpp-activity-body h3 a:focus {
	color: var(--gpthpp-red);
	text-decoration: none;
}

.gpthpp-activity-body p {
	color: var(--gpthpp-muted);
	font-size: 14px;
	line-height: 1.62;
	margin: 0 0 18px;
}

.gpthpp-read-more {
	color: var(--gpthpp-red);
	font-size: 14px;
	font-weight: 800;
	margin-top: auto;
	text-decoration: none;
}

.gpthpp-read-more:hover,
.gpthpp-read-more:focus {
	color: #b91729;
	text-decoration: none;
}

@media (max-width: 1100px) {
	.gpthpp-activity-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.gpthpp-home-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.gpthpp-hero {
		padding: 52px 0 62px;
	}

	.gpthpp-hero-grid,
	.gpthpp-about-grid {
		grid-template-columns: 1fr;
	}

	.gpthpp-hero-visual {
		display: none;
	}

	.gpthpp-hero h1 {
		font-size: clamp(34px, 10vw, 48px);
	}

	.gpthpp-hero-intro {
		font-size: 15px;
		line-height: 1.68;
		margin-top: 18px;
	}

	.gpthpp-hero-actions {
		margin-top: 22px;
	}

	.gpthpp-values {
		padding-bottom: 38px;
	}

	.gpthpp-values-grid {
		gap: 14px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: -22px;
	}

	.gpthpp-value-card {
		padding: 20px 18px 18px;
	}

	.gpthpp-about {
		padding: 38px 0 44px;
	}

	.gpthpp-about-card,
	.gpthpp-mission-card {
		padding: 24px;
	}

	.gpthpp-mission-card {
		min-height: 0;
	}

	.gpthpp-mission-char {
		font-size: 74px;
	}

	.gpthpp-activities {
		padding: 44px 0 52px;
	}

	.gpthpp-section-heading {
		align-items: flex-start;
		display: block;
		margin-bottom: 22px;
	}

	.gpthpp-section-heading > p {
		margin-top: 8px;
	}
}

@media (max-width: 560px) {
	.gpthpp-home-container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.gpthpp-hero {
		padding: 46px 0 58px;
	}

	.gpthpp-hero h1 {
		font-size: clamp(30px, 9.4vw, 38px);
	}

	.gpthpp-hero-actions {
		gap: 10px;
	}

	.gpthpp-btn {
		flex: 1 1 132px;
		min-height: 42px;
		padding: 13px 18px;
	}

	.gpthpp-activity-grid {
		grid-template-columns: 1fr;
	}

	.gpthpp-value-icon {
		height: 46px;
		margin-bottom: 12px;
		width: 46px;
	}

	.gpthpp-activity-image {
		height: 190px;
	}

	.gpthpp-activity-body {
		padding: 20px;
	}
}

@media (max-width: 360px) {
	.gpthpp-values-grid {
		grid-template-columns: 1fr;
	}
}

.gpthpp-chairman-page {
	background:
		radial-gradient(circle at 84% 12%, rgba(214, 31, 53, 0.1) 0 42px, transparent 43px),
		radial-gradient(circle at 91% 26%, rgba(207, 166, 78, 0.2) 0 34px, transparent 35px),
		linear-gradient(180deg, #f5f7fb 0%, #fff 55%, #f7f8fb 100%);
	margin: -10px 0 0;
	overflow: hidden;
	padding: clamp(40px, 5vw, 58px) 0 clamp(58px, 7vw, 78px);
}

.gpthpp-chairman-container {
	margin: 0 auto;
	max-width: 1120px;
	padding: 0 24px;
}

.gpthpp-chairman-hero {
	align-items: center;
	display: grid;
	gap: clamp(28px, 5vw, 54px);
	grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
	position: relative;
}

.gpthpp-chairman-kicker {
	align-items: center;
	color: #d61f35;
	display: flex;
	font-size: 14px;
	font-weight: 800;
	gap: 10px;
	letter-spacing: 0;
	margin: 0 0 16px;
}

.gpthpp-chairman-kicker::before {
	background: #d61f35;
	border-radius: 99px;
	content: "";
	display: block;
	height: 3px;
	width: 36px;
}

.gpthpp-chairman-title {
	color: #06213d;
	font-size: clamp(42px, 6vw, 64px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.08;
	margin: 0 0 12px;
}

.gpthpp-chairman-name {
	color: #d61f35;
	font-size: clamp(28px, 4vw, 42px);
	font-weight: 850;
	line-height: 1.18;
	margin: 0 0 14px;
}

.gpthpp-chairman-theme {
	color: #06213d;
	font-size: clamp(20px, 2.8vw, 28px);
	font-weight: 800;
	line-height: 1.25;
	margin: 0 0 18px;
}

.gpthpp-chairman-intro {
	color: #34465c;
	font-size: 17px;
	line-height: 1.9;
	margin: 0;
	max-width: 610px;
}

.gpthpp-chairman-photo-card {
	background: #fff;
	border: 1px solid rgba(6, 33, 61, 0.08);
	border-radius: 22px;
	box-shadow: 0 24px 60px rgba(6, 33, 61, 0.14);
	overflow: hidden;
	padding: 14px;
	position: relative;
}

.gpthpp-chairman-photo-frame {
	aspect-ratio: 335 / 450;
	background: #edf1f6;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}

.gpthpp-chairman-photo-frame img {
	display: block;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	width: 100%;
}

.gpthpp-chairman-photo-label {
	background: rgba(6, 33, 61, 0.94);
	border-left: 4px solid #d61f35;
	border-radius: 12px;
	bottom: 22px;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
	color: #fff;
	left: 22px;
	padding: 14px 18px;
	position: absolute;
	right: 22px;
}

.gpthpp-chairman-photo-label strong,
.gpthpp-chairman-photo-label span {
	display: block;
}

.gpthpp-chairman-photo-label strong {
	font-size: 22px;
	font-weight: 850;
	line-height: 1.2;
}

.gpthpp-chairman-photo-label span {
	color: #ffd6dc;
	font-size: 14px;
	font-weight: 700;
	margin-top: 4px;
}

.gpthpp-chairman-values {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: clamp(34px, 5vw, 52px);
}

.gpthpp-chairman-value-card {
	background: #fff;
	border: 1px solid rgba(6, 33, 61, 0.08);
	border-radius: 16px;
	box-shadow: 0 16px 38px rgba(6, 33, 61, 0.08);
	min-height: 138px;
	padding: 22px;
}

.gpthpp-chairman-value-card h2 {
	color: #06213d;
	font-size: 18px;
	font-weight: 850;
	line-height: 1.25;
	margin: 0 0 10px;
}

.gpthpp-chairman-value-card p {
	color: #546476;
	font-size: 14px;
	line-height: 1.65;
	margin: 0;
}

.gpthpp-chairman-content-grid {
	display: grid;
	gap: 22px;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
	margin-top: clamp(32px, 5vw, 48px);
}

.gpthpp-chairman-profile-card,
.gpthpp-chairman-quote-card {
	border-radius: 18px;
	box-shadow: 0 18px 42px rgba(6, 33, 61, 0.08);
	padding: clamp(26px, 4vw, 36px);
}

.gpthpp-chairman-profile-card {
	background: #fff;
	border: 1px solid rgba(6, 33, 61, 0.08);
}

.gpthpp-chairman-profile-card h2 {
	color: #06213d;
	font-size: clamp(26px, 3vw, 32px);
	font-weight: 900;
	line-height: 1.2;
	margin: 0 0 18px;
}

.gpthpp-chairman-profile-card h2::after {
	background: #d61f35;
	border-radius: 99px;
	content: "";
	display: block;
	height: 3px;
	margin-top: 12px;
	width: 52px;
}

.gpthpp-chairman-profile-card p {
	color: #34465c;
	font-size: 16px;
	line-height: 1.9;
	margin: 0;
}

.gpthpp-chairman-quote-card {
	align-items: center;
	background: linear-gradient(135deg, #06213d 0%, #092c4d 100%);
	color: #fff;
	display: flex;
	min-height: 220px;
	position: relative;
}

.gpthpp-chairman-quote-card::before {
	color: rgba(207, 166, 78, 0.7);
	content: "“";
	font-size: 84px;
	font-weight: 900;
	left: 26px;
	line-height: 1;
	position: absolute;
	top: 16px;
}

.gpthpp-chairman-quote-card p {
	color: #fff;
	font-size: clamp(20px, 2.5vw, 25px);
	font-weight: 750;
	line-height: 1.75;
	margin: 28px 0 0;
	position: relative;
}

@media (max-width: 980px) {
	.gpthpp-chairman-hero,
	.gpthpp-chairman-content-grid {
		grid-template-columns: 1fr;
	}

	.gpthpp-chairman-photo-card {
		justify-self: center;
		max-width: 430px;
		width: 100%;
	}

	.gpthpp-chairman-values {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.gpthpp-chairman-page {
		padding-top: 34px;
	}

	.gpthpp-chairman-container {
		padding: 0 18px;
	}

	.gpthpp-chairman-intro,
	.gpthpp-chairman-profile-card p {
		font-size: 15px;
		line-height: 1.85;
	}

	.gpthpp-chairman-values {
		gap: 12px;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gpthpp-chairman-value-card {
		min-height: 130px;
		padding: 18px 15px;
	}

	.gpthpp-chairman-value-card h2 {
		font-size: 16px;
	}

	.gpthpp-chairman-value-card p {
		font-size: 13px;
		line-height: 1.55;
	}

	.gpthpp-chairman-photo-label {
		bottom: 18px;
		left: 18px;
		padding: 12px 15px;
		right: 18px;
	}

	.gpthpp-chairman-photo-label strong {
		font-size: 20px;
	}

	.gpthpp-chairman-quote-card {
		min-height: 190px;
	}
}

@media (max-width: 360px) {
	.gpthpp-chairman-values {
		grid-template-columns: 1fr;
	}
}

/* Homepage v2 precision pass. */
.gpthpp-home {
	--gpthpp-container: 1120px;
	--gpthpp-navy: #06213d;
	--gpthpp-red: #d61f35;
	--gpthpp-gold: #d6a84f;
	--gpthpp-text: #162235;
	--gpthpp-muted: #657184;
	--gpthpp-border: #e8edf3;
	--gpthpp-soft: #f5f8fc;
	background:
		linear-gradient(180deg, #fff 0 410px, var(--gpthpp-soft) 410px 760px, #fff 760px);
	color: var(--gpthpp-text);
}

.gpthpp-home-container {
	max-width: var(--gpthpp-container);
	padding-left: 24px;
	padding-right: 24px;
}

.gpthpp-hero {
	background:
		radial-gradient(circle at 88% 4%, rgba(214, 168, 79, 0.13), transparent 23%),
		radial-gradient(circle at 74% 56%, rgba(6, 33, 61, 0.05), transparent 27%),
		linear-gradient(180deg, #fff 0%, #fbfdff 100%);
	color: var(--gpthpp-text);
	min-height: 0;
	overflow: hidden;
	padding: 36px 0 14px;
	position: relative;
}

.gpthpp-hero::before {
	background: rgba(225, 234, 244, 0.52);
	border-radius: 999px 0 0 999px;
	content: "";
	height: 210px;
	position: absolute;
	right: -72px;
	top: 26px;
	width: 360px;
}

.gpthpp-hero::after {
	background: rgba(214, 168, 79, 0.14);
	border: 1px solid rgba(214, 168, 79, 0.18);
	border-radius: 50%;
	content: "";
	height: 176px;
	left: auto;
	position: absolute;
	right: 98px;
	top: 34px;
	width: 176px;
}

.gpthpp-hero .gpthpp-home-container {
	position: relative;
	z-index: 2;
}

.gpthpp-hero-copy {
	max-width: 560px;
	position: relative;
	z-index: 3;
}

.gpthpp-eyebrow {
	align-items: center;
	color: var(--gpthpp-red);
	display: flex;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.2;
	margin: 0 0 10px;
	text-transform: none;
}

.gpthpp-eyebrow span {
	background: var(--gpthpp-red);
	border-radius: 999px;
	display: inline-block;
	height: 3px;
	margin-right: 10px;
	width: 34px;
}

.gpthpp-hero h1 {
	color: var(--gpthpp-navy);
	font-size: clamp(46px, 3.95vw, 54px);
	font-weight: 900;
	letter-spacing: -0.01em;
	line-height: 1.04;
	margin: 0;
}

.gpthpp-hero h1 span {
	display: block;
	white-space: nowrap;
}

.gpthpp-hero h1 span + span {
	color: var(--gpthpp-red);
	margin-top: 2px;
}

.gpthpp-hero-intro {
	color: #435267;
	font-size: 16px;
	line-height: 1.68;
	margin: 14px 0 0;
	max-width: 520px;
}

.gpthpp-hero-actions {
	gap: 14px;
	margin-top: 16px;
}

.gpthpp-btn {
	border: 0;
	font-size: 14px;
	min-height: 42px;
	padding: 13px 26px;
}

.gpthpp-btn-secondary {
	background: var(--gpthpp-navy);
	color: #fff;
}

.gpthpp-btn-secondary:hover,
.gpthpp-btn-secondary:focus {
	background: #0b3158;
	color: #fff;
}

.gpthpp-hero-decor {
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
}

.gpthpp-decor-circle {
	border-radius: 50%;
	position: absolute;
}

.gpthpp-decor-gold {
	background: var(--gpthpp-gold);
	height: 70px;
	right: calc(50% - 500px);
	top: 58px;
	width: 70px;
}

.gpthpp-decor-red {
	background: var(--gpthpp-red);
	height: 42px;
	right: calc(50% - 432px);
	top: 174px;
	width: 42px;
}

.gpthpp-decor-dots {
	background-image: radial-gradient(rgba(6, 33, 61, 0.18) 1.4px, transparent 1.4px);
	background-size: 14px 14px;
	height: 118px;
	opacity: 0.55;
	position: absolute;
	right: calc(50% - 560px);
	top: 94px;
	width: 118px;
}

.gpthpp-hero-visual,
.gpthpp-visual-card {
	display: none;
}

.gpthpp-values {
	background: transparent;
	padding: 0;
}

.gpthpp-values-grid {
	gap: 18px;
	margin-top: 0;
	position: relative;
	z-index: 3;
}

.gpthpp-value-card,
.gpthpp-about-card,
.gpthpp-mission-card,
.gpthpp-activity-card {
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(17, 36, 61, 0.08);
}

.gpthpp-value-card {
	background: #fff;
	border: 1px solid var(--gpthpp-border);
	min-height: 136px;
	padding: 20px;
	position: relative;
}

.gpthpp-value-card::after {
	border-bottom: 2px solid rgba(6, 33, 61, 0.08);
	border-right: 2px solid rgba(6, 33, 61, 0.08);
	border-radius: 0 0 10px 0;
	bottom: 18px;
	content: "";
	height: 28px;
	position: absolute;
	right: 18px;
	width: 28px;
}

.gpthpp-value-icon {
	background: #eef4fa;
	border-radius: 13px;
	color: var(--gpthpp-red);
	font-size: 28px;
	height: 48px;
	margin-bottom: 12px;
	width: 50px;
}

.gpthpp-value-card h2 {
	font-size: 18px;
	line-height: 1.25;
	margin-bottom: 7px;
}

.gpthpp-value-card p {
	font-size: 13.5px;
	line-height: 1.5;
}

.gpthpp-about {
	background: transparent;
	padding: 24px 0 0;
}

.gpthpp-about-grid {
	gap: 20px;
	grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.86fr);
}

.gpthpp-about-card,
.gpthpp-mission-card {
	min-height: 192px;
}

.gpthpp-about-card {
	background:
		linear-gradient(135deg, rgba(6, 33, 61, 0.025), transparent 45%),
		#fff;
	border: 1px solid var(--gpthpp-border);
	padding: 22px 28px;
	position: relative;
}

.gpthpp-about-card::after {
	background: linear-gradient(135deg, transparent 0 48%, rgba(6, 33, 61, 0.035) 48% 52%, transparent 52% 100%);
	background-size: 22px 22px;
	bottom: 20px;
	content: "";
	height: 80px;
	opacity: 0.9;
	position: absolute;
	right: 20px;
	width: 120px;
}

.gpthpp-about-card h2,
.gpthpp-section-heading h2 {
	color: var(--gpthpp-navy);
	font-size: clamp(26px, 2.45vw, 30px);
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.16;
	margin: 0 0 18px;
	position: relative;
}

.gpthpp-about-card h2::after,
.gpthpp-section-heading h2::after {
	background: var(--gpthpp-red);
	border-radius: 99px;
	bottom: -9px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 50px;
}

.gpthpp-about-card p:not(.gpthpp-section-kicker) {
	color: #46556a;
	font-size: 13.6px;
	line-height: 1.52;
	margin: 0;
	max-width: 660px;
	position: relative;
	z-index: 1;
}

.gpthpp-about-link {
	align-items: center;
	background: var(--gpthpp-navy);
	border-radius: 999px;
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	margin-top: 12px;
	min-height: 36px;
	padding: 10px 19px;
	position: relative;
	text-decoration: none;
	z-index: 1;
}

.gpthpp-about-link:hover,
.gpthpp-about-link:focus {
	background: #0b3158;
	color: #fff;
	text-decoration: none;
}

.gpthpp-mission-card {
	background:
		radial-gradient(circle at 92% 88%, rgba(255, 255, 255, 0.08), transparent 28%),
		linear-gradient(145deg, #06213d 0%, #082a4c 100%);
	display: block;
	overflow: hidden;
	padding: 27px 36px;
	position: relative;
}

.gpthpp-mission-card::after {
	background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 12.5%, transparent 12.5%, transparent 50%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0.08) 62.5%, transparent 62.5%, transparent 100%);
	background-size: 18px 18px;
	bottom: 18px;
	content: "";
	height: 88px;
	opacity: 0.5;
	position: absolute;
	right: 18px;
	width: 132px;
}

.gpthpp-mission-char {
	color: var(--gpthpp-gold);
	font-size: 56px;
	font-weight: 900;
	line-height: 0.9;
	margin-bottom: 14px;
}

.gpthpp-mission-card p {
	color: rgba(255, 255, 255, 0.94);
	font-size: clamp(17px, 1.5vw, 19px);
	font-weight: 700;
	line-height: 1.52;
	margin: 0;
	position: relative;
	z-index: 1;
}

.gpthpp-activities {
	background: transparent;
	padding: 28px 0 52px;
}

.gpthpp-section-heading {
	align-items: center;
	margin-bottom: 24px;
}

.gpthpp-view-all {
	color: #536276;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.gpthpp-view-all::after {
	color: var(--gpthpp-red);
	content: " →";
}

.gpthpp-view-all:hover,
.gpthpp-view-all:focus {
	color: var(--gpthpp-red);
	text-decoration: none;
}

.gpthpp-activity-grid {
	gap: 20px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gpthpp-activity-grid.gpthpp-activity-count-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 840px;
}

.gpthpp-activity-card {
	border: 1px solid var(--gpthpp-border);
	border-radius: 15px;
}

.gpthpp-activity-image {
	height: 166px;
}

.gpthpp-date-badge {
	background: var(--gpthpp-red);
	border-radius: 10px;
	box-shadow: 0 10px 22px rgba(128, 12, 25, 0.2);
	color: #fff;
	left: 14px;
	min-width: 54px;
	padding: 8px 8px 7px;
	top: 14px;
}

.gpthpp-date-badge strong {
	color: #fff;
	font-size: 20px;
}

.gpthpp-date-badge span {
	color: rgba(255, 255, 255, 0.88);
	font-size: 12px;
	margin-top: 3px;
	text-transform: none;
}

.gpthpp-activity-body {
	padding: 18px;
}

.gpthpp-category-badge {
	background: rgba(214, 31, 53, 0.09);
	color: var(--gpthpp-red);
	font-size: 12px;
	margin-bottom: 10px;
	padding: 6px 10px;
}

.gpthpp-activity-body h3 {
	display: -webkit-box;
	font-size: 16px;
	line-height: 1.42;
	margin-bottom: 9px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.gpthpp-activity-body p {
	display: -webkit-box;
	font-size: 13px;
	line-height: 1.56;
	margin-bottom: 16px;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.gpthpp-read-more {
	align-items: center;
	display: inline-flex;
	font-size: 13.5px;
	gap: 5px;
}

@media (max-width: 1100px) {
	.gpthpp-home-container {
		max-width: 960px;
	}

	.gpthpp-activity-grid,
	.gpthpp-activity-grid.gpthpp-activity-count-3 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
	}
}

@media (max-width: 900px) {
	.gpthpp-home-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.gpthpp-hero {
		padding: 38px 0 30px;
	}

	.gpthpp-hero::before {
		height: 150px;
		right: -110px;
		top: 20px;
		width: 260px;
	}

	.gpthpp-hero::after,
	.gpthpp-decor-dots {
		display: none;
	}

	.gpthpp-decor-gold {
		height: 44px;
		right: 30px;
		top: 34px;
		width: 44px;
	}

	.gpthpp-decor-red {
		height: 28px;
		right: 74px;
		top: 122px;
		width: 28px;
	}

	.gpthpp-hero h1 {
		font-size: clamp(34px, 7.8vw, 48px);
	}

	.gpthpp-hero-intro {
		font-size: 15px;
		line-height: 1.72;
		max-width: 500px;
	}

	.gpthpp-values-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gpthpp-about {
		padding-top: 24px;
	}

	.gpthpp-about-grid {
		grid-template-columns: 1fr;
	}

	.gpthpp-about-card,
	.gpthpp-mission-card {
		min-height: 0;
		padding: 26px;
	}

	.gpthpp-mission-card p {
		font-size: 18px;
	}

	.gpthpp-activities {
		padding-top: 30px;
	}
}

@media (max-width: 560px) {
	.gpthpp-home-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.gpthpp-hero {
		padding: 34px 0 28px;
	}

	.gpthpp-eyebrow {
		font-size: 12px;
		margin-bottom: 12px;
	}

	.gpthpp-eyebrow span {
		width: 28px;
	}

	.gpthpp-hero h1 {
		font-size: clamp(29px, 8.4vw, 36px);
		line-height: 1.12;
	}

	.gpthpp-hero h1 span {
		white-space: normal;
	}

	.gpthpp-hero-intro {
		font-size: 14.5px;
		margin-top: 15px;
	}

	.gpthpp-hero-actions {
		gap: 10px;
		margin-top: 18px;
	}

	.gpthpp-btn {
		flex: 0 1 auto;
		min-height: 40px;
		padding: 12px 20px;
	}

	.gpthpp-values-grid {
		gap: 12px;
	}

	.gpthpp-value-card {
		min-height: 132px;
		padding: 18px 16px;
	}

	.gpthpp-value-icon {
		font-size: 24px;
		height: 44px;
		margin-bottom: 12px;
		width: 44px;
	}

	.gpthpp-value-card h2 {
		font-size: 16px;
	}

	.gpthpp-value-card p {
		font-size: 12.5px;
	}

	.gpthpp-about {
		padding-top: 22px;
	}

	.gpthpp-about-card,
	.gpthpp-mission-card {
		padding: 24px 22px;
	}

	.gpthpp-about-card h2,
	.gpthpp-section-heading h2 {
		font-size: 26px;
	}

	.gpthpp-about-card p:not(.gpthpp-section-kicker) {
		font-size: 14px;
		line-height: 1.68;
	}

	.gpthpp-mission-char {
		font-size: 56px;
		margin-bottom: 16px;
	}

	.gpthpp-mission-card p {
		font-size: 17px;
		line-height: 1.62;
	}

	.gpthpp-section-heading {
		margin-bottom: 20px;
	}

	.gpthpp-activity-grid,
	.gpthpp-activity-grid.gpthpp-activity-count-3 {
		grid-template-columns: 1fr;
	}

	.gpthpp-activity-image {
		height: 164px;
	}
}

@media (max-width: 360px) {
	.gpthpp-values-grid {
		grid-template-columns: 1fr;
	}
}
