/* START: PREMIER ABOUT PAGE v2.0.15
   Native theme typography, green jacket portrait and deliberate hover states.
   Requires the theme's page-components.css for shared buttons and image frames. */

.entry-content .pts-about.vc_row {
	margin-bottom: 0;
	padding: clamp(36px, 5vw, 72px) var(--pts-page-gutter);
	background: var(--pts-surface);
}

.entry-content .pts-about > .vc_column_container > .vc_column-inner {
	padding-top: 0;
	padding-right: 0;
	padding-left: 0;
}

.pts-about .wpb_text_column {
	margin-bottom: 0;
}

.pts-about :where(section, article, figure, .pts-about__intro) {
	min-width: 0;
}

.entry-content .pts-about--hero.vc_row {
	padding-top: clamp(24px, 3vw, 44px);
	padding-bottom: 0;
	background: var(--pts-soft);
}

.pts-about__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: clamp(30px, 5vw, 80px);
}

.pts-about__intro {
	max-width: 58ch;
	padding-block: clamp(24px, 4vw, 56px);
}

.pts-about__specialty {
	padding-left: 18px;
	border-left: 4px solid var(--pts-purple);
	color: var(--pts-purple);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.55;
}

.pts-about__intro-action {
	margin-top: 28px;
	margin-bottom: 0;
}

.pts-about__portrait {
	align-self: end;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}

.pts-about__portrait img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
	mix-blend-mode: normal;
	mask-image: none;
}

.pts-about__section-intro {
	max-width: 78ch;
	margin-bottom: clamp(28px, 3vw, 42px);
}

.pts-about__section-intro > :last-child,
.pts-about__chapter > :last-child,
.pts-about__qualification > :last-child {
	margin-bottom: 0;
}

.pts-about__chapters {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(28px, 5vw, 80px);
}

.pts-about__chapter {
	padding-top: 24px;
	border-top: 2px solid var(--pts-line);
}

.entry-content .pts-about--education.vc_row {
	background: var(--pts-soft);
}

.pts-about__education {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: clamp(24px, 3vw, 44px);
}

.pts-about__qualification {
	padding-left: 20px;
	border-left: 4px solid var(--pts-purple);
}

.pts-about__services {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
	gap: clamp(18px, 2.2vw, 30px);
}

.pts-about__service {
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid var(--pts-line);
	border-top: 4px solid var(--pts-purple);
	border-radius: var(--pts-radius);
	background: var(--pts-surface);
	box-shadow: 0 12px 28px rgba(25, 25, 27, 0.1);
}

.pts-about__service .pts-service-card__media {
	margin: 0;
}

.pts-about__service-body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	gap: 14px;
	padding: clamp(1.1rem, 2vw, 1.45rem);
}

.pts-about__service-body > * {
	margin-bottom: 0;
}

.pts-about__service-body h3 {
	color: var(--pts-purple);
}

.pts-about__service-action {
	margin-top: auto;
	padding-top: 12px;
}

.pts-about__service-action a {
	color: var(--pts-purple);
	font-weight: 800;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.pts-about__service-action a::after {
	position: absolute;
	inset: 0;
	content: "";
}

.pts-about__service-action a:visited {
	color: var(--pts-purple);
}

.pts-about__service:focus-within {
	border-color: var(--pts-purple);
	outline: 3px solid var(--pts-purple);
	outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
	.pts-about__service:hover {
		border-color: var(--pts-purple);
		box-shadow: var(--pts-shadow);
	}

	.pts-about__service:hover a {
		color: var(--pts-purple-dark);
	}
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.pts-about__service {
		transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
	}

	.pts-about__service:hover {
		transform: translateY(-5px);
	}

	.pts-about__service:hover .pts-service-card__image {
		transform: scale(1.025);
	}
}

/* Let the introduction use its existing column on large monitors. */
@media (min-width: 1440px) {
	.pts-about__intro {
		max-width: none;
	}

	.pts-about__intro > h1 {
		font-size: clamp(2.75rem, 2.5vw, 3.25rem);
	}

	.pts-about__intro > p:not(.pts-about__specialty):not(.pts-about__intro-action) {
		font-size: clamp(1.125rem, 1.25vw, 1.25rem);
	}

	.pts-about__intro > .pts-about__specialty {
		font-size: clamp(1.25rem, 1.4vw, 1.5rem);
	}
}

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

@media (max-width: 780px) {
	.pts-about__hero {
		grid-template-columns: minmax(0, 1fr);
		gap: 12px;
	}

	.pts-about__intro {
		max-width: 100%;
		padding-block: 12px;
	}

	.pts-about__portrait {
		max-width: 480px;
	}

	.pts-about__chapters,
	.pts-about__education {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 560px) {
	.pts-about__services {
		grid-template-columns: minmax(0, 1fr);
	}

	.pts-about__service-body {
		gap: 12px;
	}

	.pts-about__service-action {
		padding-top: 8px;
	}
}

/* END: PREMIER ABOUT PAGE v2.0.15 */
