.ghcm {
	--ghcm-navy: #061526;
	--ghcm-navy-2: #071b33;
	--ghcm-blue: #0b63f6;
	--ghcm-blue-dark: #074dc2;
	--ghcm-cyan: #19c2ff;
	--ghcm-pale: #f5f8fc;
	--ghcm-line: #dce5ef;
	--ghcm-text: #24354a;
	--ghcm-muted: #65758a;
	--ghcm-white: #ffffff;
	--ghcm-success: #087c5b;
	--ghcm-warning: #aa6500;
	--ghcm-danger: #b42318;
	--ghcm-radius: 18px;
	--ghcm-shadow: 0 24px 60px rgba(6, 21, 38, 0.1);
	color: var(--ghcm-text);
	font-family: Manrope, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

.ghcm *,
.ghcm *::before,
.ghcm *::after {
	box-sizing: border-box;
}

.ghcm h1,
.ghcm h2,
.ghcm h3,
.ghcm h4,
.ghcm p {
	margin-top: 0;
}

.ghcm h1,
.ghcm h2,
.ghcm h3,
.ghcm h4 {
	color: var(--ghcm-navy);
	font-family: Sora, Manrope, sans-serif;
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.14;
}

.ghcm a {
	transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.ghcm a:focus-visible,
.ghcm button:focus-visible,
.ghcm input:focus-visible,
.ghcm select:focus-visible,
.ghcm textarea:focus-visible {
	outline: 3px solid rgba(25, 194, 255, 0.55);
	outline-offset: 2px;
}

.ghcm-eyebrow {
	display: block;
	margin-bottom: 12px;
	color: var(--ghcm-blue);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	line-height: 1.2;
	text-transform: uppercase;
}

.ghcm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 50px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 10px;
	box-shadow: none;
	cursor: pointer;
	font-family: Sora, Manrope, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}

.ghcm-button:hover {
	transform: translateY(-1px);
	text-decoration: none;
}

.ghcm-button--primary {
	background: var(--ghcm-blue);
	color: var(--ghcm-white) !important;
}

.ghcm-button--primary:hover {
	background: var(--ghcm-blue-dark);
}

.ghcm-button--secondary {
	border-color: var(--ghcm-line);
	background: var(--ghcm-white);
	color: var(--ghcm-navy) !important;
}

.ghcm-button--secondary:hover {
	border-color: var(--ghcm-blue);
	color: var(--ghcm-blue) !important;
}

.ghcm-button--light {
	background: var(--ghcm-white);
	color: var(--ghcm-navy) !important;
}

.ghcm-button--light:hover {
	background: #eaf7ff;
}

.ghcm-button--full {
	width: 100%;
}

.ghcm-text-link {
	color: var(--ghcm-blue);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.ghcm-text-link:hover {
	color: var(--ghcm-blue-dark);
	text-decoration: underline;
}

.ghcm-notice {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	max-width: 1040px;
	margin: 0 auto 24px;
	padding: 15px 18px;
	border: 1px solid;
	border-radius: 12px;
}

.ghcm-notice p {
	margin: 0;
	font-weight: 650;
}

.ghcm-notice__icon {
	width: 10px;
	height: 10px;
	margin-top: 8px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.ghcm-notice--success {
	border-color: #9cd8c5;
	background: #ebfaf5;
	color: #075d46;
}

.ghcm-notice--success .ghcm-notice__icon {
	background: var(--ghcm-success);
}

.ghcm-notice--error {
	border-color: #f1b4af;
	background: #fff2f1;
	color: #8d1d15;
}

.ghcm-notice--error .ghcm-notice__icon {
	background: var(--ghcm-danger);
}

.ghcm-panel,
.ghcm-form {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	border: 1px solid var(--ghcm-line);
	border-radius: var(--ghcm-radius);
	background: var(--ghcm-white);
	box-shadow: var(--ghcm-shadow);
}

.ghcm-panel {
	padding: clamp(28px, 5vw, 56px);
}

.ghcm-panel--center {
	text-align: center;
}

.ghcm-panel h3 {
	margin-bottom: 14px;
	font-size: clamp(24px, 3vw, 36px);
}

.ghcm-panel p:last-child {
	margin-bottom: 0;
}

.ghcm-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

/* Portal tabs and login. */
.ghcm-portal-tabs {
	max-width: 1040px;
	margin: 0 auto;
}

.ghcm-tab-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	max-width: 480px;
	margin: 0 auto 22px;
	padding: 5px;
	border: 1px solid var(--ghcm-line);
	border-radius: 12px;
	background: #edf3f9;
}

.ghcm-tab {
	min-height: 44px;
	padding: 9px 16px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: var(--ghcm-muted);
	cursor: pointer;
	font-family: Sora, sans-serif;
	font-size: 14px;
	font-weight: 700;
}

.ghcm-tab.is-active {
	background: var(--ghcm-white);
	box-shadow: 0 3px 12px rgba(6, 21, 38, 0.08);
	color: var(--ghcm-navy);
}

.ghcm-login-panel {
	max-width: 590px;
}

.ghcm-login-panel form {
	margin: 30px 0 20px;
}

.ghcm-login-panel form p {
	margin-bottom: 18px;
}

.ghcm-login-panel form label {
	display: block;
	margin-bottom: 7px;
	color: var(--ghcm-navy);
	font-size: 14px;
	font-weight: 700;
}

.ghcm-login-panel form input[type="text"],
.ghcm-login-panel form input[type="password"] {
	width: 100%;
	min-height: 50px;
	padding: 11px 14px;
	border: 1px solid #cfdbe7;
	border-radius: 9px;
	background: var(--ghcm-white);
}

.ghcm-login-panel form .button {
	min-height: 48px;
	padding: 12px 22px;
	border: 0;
	border-radius: 9px;
	background: var(--ghcm-blue);
	color: white;
	font-weight: 700;
}

/* Forms. */
.ghcm-form {
	overflow: hidden;
}

.ghcm-form-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 36px;
	padding: clamp(28px, 5vw, 52px);
	border-bottom: 1px solid var(--ghcm-line);
	background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
}

.ghcm-form-intro--compact {
	grid-template-columns: 1fr;
}

.ghcm-form-intro h3 {
	margin-bottom: 13px;
	font-size: clamp(27px, 4vw, 42px);
}

.ghcm-form-intro p {
	max-width: 690px;
	margin-bottom: 0;
	color: var(--ghcm-muted);
}

.ghcm-steps {
	display: flex;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ghcm-steps li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: #8795a7;
	font-size: 12px;
	font-weight: 750;
	white-space: nowrap;
}

.ghcm-steps li span {
	display: grid;
	width: 30px;
	height: 30px;
	place-items: center;
	border: 1px solid #ccd9e5;
	border-radius: 50%;
	background: var(--ghcm-white);
}

.ghcm-steps li.is-active,
.ghcm-steps li.is-complete {
	color: var(--ghcm-blue);
}

.ghcm-steps li.is-active span,
.ghcm-steps li.is-complete span {
	border-color: var(--ghcm-blue);
	background: var(--ghcm-blue);
	color: var(--ghcm-white);
}

.ghcm-form-step {
	min-width: 0;
	margin: 0;
	padding: clamp(28px, 5vw, 52px);
	border: 0;
}

.ghcm-form-step:not(.is-active) {
	display: none;
}

.ghcm-form-step legend {
	width: 100%;
	margin-bottom: 26px;
	padding: 0;
	color: var(--ghcm-navy);
	font-family: Sora, sans-serif;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.ghcm-grid {
	display: grid;
	gap: 22px;
}

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

.ghcm-field--wide {
	grid-column: 1 / -1;
}

.ghcm-field label {
	display: block;
	margin-bottom: 7px;
	color: var(--ghcm-navy);
	font-size: 14px;
	font-weight: 750;
	line-height: 1.4;
}

.ghcm-field label span {
	color: var(--ghcm-blue);
}

.ghcm-field input[type="text"],
.ghcm-field input[type="email"],
.ghcm-field input[type="password"],
.ghcm-field input[type="url"],
.ghcm-field input[type="number"],
.ghcm-field input[type="search"],
.ghcm-field select,
.ghcm-field textarea {
	display: block;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: 11px 14px;
	border: 1px solid #cbd8e5;
	border-radius: 9px;
	background: var(--ghcm-white);
	box-shadow: 0 1px 2px rgba(6, 21, 38, 0.025);
	color: var(--ghcm-navy);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.45;
	transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ghcm-field select[multiple] {
	min-height: 180px;
	padding: 7px;
}

.ghcm-field select[multiple] option {
	padding: 7px 9px;
	border-radius: 5px;
}

.ghcm-field textarea {
	min-height: 100px;
	resize: vertical;
}

.ghcm-field input:focus,
.ghcm-field select:focus,
.ghcm-field textarea:focus {
	border-color: var(--ghcm-blue);
	box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.09);
}

.ghcm-field input[readonly] {
	background: #f3f6f9;
	color: var(--ghcm-muted);
}

.ghcm-field small {
	display: block;
	margin-top: 6px;
	color: var(--ghcm-muted);
	font-size: 12px;
	line-height: 1.5;
}

.ghcm-field.has-error input,
.ghcm-field.has-error select,
.ghcm-field.has-error textarea {
	border-color: var(--ghcm-danger);
	box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.08);
}

.ghcm-field-error {
	display: block;
	margin-top: 5px;
	color: var(--ghcm-danger);
	font-size: 12px;
	font-weight: 700;
}

.ghcm-step-actions,
.ghcm-form-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 34px;
	padding-top: 26px;
	border-top: 1px solid var(--ghcm-line);
}

.ghcm-step-actions--end {
	justify-content: flex-end;
}

.ghcm-check {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin: 0 clamp(28px, 5vw, 52px) 24px;
	color: var(--ghcm-text);
	cursor: pointer;
	font-size: 13px;
	line-height: 1.6;
}

.ghcm-check input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--ghcm-blue);
	flex: 0 0 auto;
}

.ghcm-check a {
	color: var(--ghcm-blue);
	font-weight: 700;
}

.ghcm-commercial-note {
	display: grid;
	grid-template-columns: minmax(150px, 0.35fr) 1fr;
	gap: 20px;
	margin: 0 clamp(28px, 5vw, 52px) 28px;
	padding: 18px 20px;
	border-left: 4px solid var(--ghcm-cyan);
	border-radius: 0 10px 10px 0;
	background: #eef8ff;
}

.ghcm-commercial-note strong {
	color: var(--ghcm-navy);
	font-family: Sora, sans-serif;
	font-size: 14px;
}

.ghcm-commercial-note p {
	margin: 0;
	color: #435b74;
	font-size: 13px;
}

.ghcm-form-footer {
	margin: 0;
	padding: 25px clamp(28px, 5vw, 52px);
	background: var(--ghcm-pale);
}

.ghcm-form-footer p {
	margin: 0;
	color: var(--ghcm-muted);
	font-size: 13px;
}

.ghcm-form-section {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: clamp(24px, 5vw, 60px);
	margin: 0;
	padding: clamp(30px, 5vw, 52px);
	border-bottom: 1px solid var(--ghcm-line);
}

.ghcm-form-section__head {
	display: flex;
	align-items: flex-start;
	gap: 13px;
}

.ghcm-form-section__head > span {
	display: grid;
	width: 38px;
	height: 38px;
	place-items: center;
	border-radius: 8px;
	background: #eaf3ff;
	color: var(--ghcm-blue);
	font-size: 12px;
	font-weight: 800;
	flex: 0 0 auto;
}

.ghcm-form-section__head h4 {
	margin: 1px 0 5px;
	font-size: 17px;
}

.ghcm-form-section__head p {
	margin: 0;
	color: var(--ghcm-muted);
	font-size: 12px;
	line-height: 1.5;
}

.ghcm-photo-field {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 14px;
	border: 1px dashed #bdccda;
	border-radius: 10px;
	background: #fafcff;
}

.ghcm-current-photo {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	object-fit: cover;
}

/* Consultant dashboard. */
.ghcm-dashboard {
	max-width: 1100px;
	margin: 0 auto;
}

.ghcm-dashboard-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 24px;
	padding: 28px;
	border-radius: var(--ghcm-radius);
	background: var(--ghcm-navy);
	color: #c7d4e3;
}

.ghcm-dashboard-head h3 {
	margin-bottom: 8px;
	color: var(--ghcm-white);
	font-size: 30px;
}

.ghcm-dashboard-head p {
	margin: 0;
}

.ghcm-dashboard-head .ghcm-eyebrow {
	color: var(--ghcm-cyan);
}

.ghcm-dashboard-actions {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 9px;
	text-align: right;
}

.ghcm-dashboard-actions .ghcm-text-link {
	color: #c9eaff;
}

.ghcm-status {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	font-size: 12px;
	font-weight: 750;
}

.ghcm-status span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #f3a229;
}

.ghcm-status--approved span {
	background: #35d49a;
}

.ghcm-status--paused span {
	background: #f07369;
}

.ghcm-review-note {
	margin-bottom: 24px;
	padding: 18px 20px;
	border: 1px solid #f0d39b;
	border-radius: 12px;
	background: #fff9ec;
	color: #76501b;
}

.ghcm-review-note strong {
	display: block;
	margin-bottom: 4px;
	color: #5b3c10;
}

.ghcm-review-note p {
	margin: 0;
}

/* Directory. */
.ghcm-directory {
	max-width: 1240px;
	margin: 0 auto;
}

.ghcm-directory-filter {
	position: relative;
	padding: clamp(24px, 4vw, 40px);
	border-radius: var(--ghcm-radius);
	background: var(--ghcm-navy);
	box-shadow: var(--ghcm-shadow);
	overflow: hidden;
}

.ghcm-directory-filter::after {
	position: absolute;
	top: -90px;
	right: -70px;
	width: 280px;
	height: 280px;
	border: 1px solid rgba(25, 194, 255, 0.2);
	border-radius: 50%;
	box-shadow: 0 0 0 35px rgba(25, 194, 255, 0.04), 0 0 0 70px rgba(25, 194, 255, 0.03);
	content: "";
	pointer-events: none;
}

.ghcm-directory-filter__intro {
	position: relative;
	z-index: 1;
	margin-bottom: 25px;
}

.ghcm-directory-filter__intro .ghcm-eyebrow {
	color: var(--ghcm-cyan);
}

.ghcm-directory-filter__intro h3 {
	margin: 0;
	color: white;
	font-size: clamp(26px, 4vw, 40px);
}

.ghcm-directory-filter__controls {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr auto;
	gap: 12px;
}

.ghcm-directory-filter .ghcm-field input,
.ghcm-directory-filter .ghcm-field select {
	border-color: rgba(255, 255, 255, 0.18);
}

.ghcm-filter-reset {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin-top: 13px;
	color: #bfe9ff;
	font-size: 12px;
	font-weight: 700;
}

.ghcm-directory-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin: 30px 0 18px;
}

.ghcm-directory-meta p {
	margin: 0;
	color: var(--ghcm-navy);
	font-family: Sora, sans-serif;
	font-weight: 700;
}

.ghcm-directory-meta span {
	color: var(--ghcm-muted);
	font-size: 13px;
}

.ghcm-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.ghcm-card {
	display: flex;
	min-width: 0;
	min-height: 100%;
	border: 1px solid var(--ghcm-line);
	border-radius: 16px;
	background: var(--ghcm-white);
	box-shadow: 0 12px 32px rgba(6, 21, 38, 0.055);
	overflow: hidden;
	flex-direction: column;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ghcm-card:hover {
	border-color: #b9d4f7;
	box-shadow: 0 20px 44px rgba(6, 21, 38, 0.1);
	transform: translateY(-3px);
}

.ghcm-card__top {
	position: relative;
	height: 190px;
	padding: 18px;
	background: linear-gradient(145deg, #edf6ff 0%, #dceeff 100%);
}

.ghcm-card__top::after {
	position: absolute;
	right: 14px;
	bottom: 14px;
	width: 70px;
	height: 70px;
	border: 1px solid rgba(11, 99, 246, 0.16);
	border-radius: 50%;
	content: "";
}

.ghcm-avatar {
	position: absolute;
	bottom: -35px;
	left: 22px;
	z-index: 2;
	display: grid;
	width: 112px;
	height: 112px;
	place-items: center;
	border: 5px solid white;
	border-radius: 22px;
	background: var(--ghcm-blue);
	box-shadow: 0 12px 25px rgba(6, 21, 38, 0.14);
	color: white;
	font-family: Sora, sans-serif;
	font-size: 31px;
	font-weight: 700;
	overflow: hidden;
}

.ghcm-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ghcm-availability {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 3px 12px rgba(6, 21, 38, 0.08);
	color: var(--ghcm-navy);
	font-size: 10px;
	font-weight: 750;
	line-height: 1.2;
}

.ghcm-card__top .ghcm-availability {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
}

.ghcm-availability > span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #25a779;
}

.ghcm-availability--limited > span {
	background: #e89d25;
}

.ghcm-availability--not_available > span {
	background: #8b99a8;
}

.ghcm-card__body {
	display: flex;
	padding: 52px 22px 22px;
	flex: 1 1 auto;
	flex-direction: column;
}

.ghcm-card__category {
	margin-bottom: 7px;
	color: var(--ghcm-blue);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.ghcm-card__body h3 {
	margin-bottom: 7px;
	font-size: 21px;
}

.ghcm-card__body h3 a {
	color: inherit;
	text-decoration: none;
}

.ghcm-card__headline {
	min-height: 48px;
	margin-bottom: 16px;
	color: #506177;
	font-size: 13px;
	line-height: 1.55;
}

.ghcm-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 15px;
	margin-bottom: 16px;
	color: var(--ghcm-muted);
	font-size: 11px;
}

.ghcm-card__facts span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.ghcm-card__facts i {
	color: var(--ghcm-blue);
	font-style: normal;
}

.ghcm-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: auto;
}

.ghcm-tags span,
.ghcm-profile-categories span {
	padding: 5px 8px;
	border: 1px solid #d5e5f6;
	border-radius: 6px;
	background: #f4f9ff;
	color: #245789;
	font-size: 10px;
	font-weight: 700;
}

.ghcm-card__footer {
	padding: 15px 22px;
	border-top: 1px solid var(--ghcm-line);
	background: #fbfcfe;
}

.ghcm-card__link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--ghcm-navy);
	font-size: 13px;
	font-weight: 750;
	text-decoration: none;
}

.ghcm-card__link span {
	color: var(--ghcm-blue);
	font-size: 18px;
}

.ghcm-empty-state {
	padding: clamp(40px, 7vw, 80px) 25px;
	border: 1px dashed #b9cde0;
	border-radius: 16px;
	background: var(--ghcm-pale);
	text-align: center;
}

.ghcm-empty-state__mark {
	display: grid;
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	place-items: center;
	border-radius: 50%;
	background: #e2f1ff;
	color: var(--ghcm-blue);
	font-size: 23px;
}

.ghcm-empty-state h3 {
	margin-bottom: 10px;
	font-size: 26px;
}

.ghcm-empty-state p {
	max-width: 580px;
	margin: 0 auto 24px;
	color: var(--ghcm-muted);
}

.ghcm-pagination {
	display: flex;
	justify-content: center;
	gap: 7px;
	margin-top: 32px;
}

.ghcm-pagination .page-numbers {
	display: inline-grid;
	min-width: 40px;
	height: 40px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid var(--ghcm-line);
	border-radius: 8px;
	background: white;
	color: var(--ghcm-navy);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.ghcm-pagination .current,
.ghcm-pagination a:hover {
	border-color: var(--ghcm-blue);
	background: var(--ghcm-blue);
	color: white;
}

/* Selected consultant and project form. */
.ghcm-selected-consultant {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 18px;
	max-width: 1040px;
	margin: 0 auto 24px;
	padding: 18px 20px;
	border: 1px solid #bcdcff;
	border-radius: 14px;
	background: #edf7ff;
}

.ghcm-selected-consultant__avatar {
	display: grid;
	width: 66px;
	height: 66px;
	place-items: center;
	border-radius: 12px;
	background: var(--ghcm-blue);
	color: white;
	font-family: Sora, sans-serif;
	font-size: 20px;
	font-weight: 700;
	overflow: hidden;
}

.ghcm-selected-consultant__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ghcm-selected-consultant .ghcm-eyebrow {
	margin-bottom: 4px;
	font-size: 9px;
}

.ghcm-selected-consultant h3 {
	margin-bottom: 3px;
	font-size: 18px;
}

.ghcm-selected-consultant p {
	margin: 0;
	color: var(--ghcm-muted);
	font-size: 12px;
}

/* Single consultant profile. */
.ghcm-single {
	margin: 0;
	background: var(--ghcm-white);
}

.ghcm-profile-shell {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.ghcm-profile-hero {
	position: relative;
	padding: 30px 0 72px;
	background: linear-gradient(125deg, var(--ghcm-navy) 0%, #0a294a 72%, #0b3d68 100%);
	overflow: hidden;
}

.ghcm-profile-hero::before,
.ghcm-profile-hero::after {
	position: absolute;
	border: 1px solid rgba(25, 194, 255, 0.12);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.ghcm-profile-hero::before {
	top: -240px;
	right: -150px;
	width: 590px;
	height: 590px;
	box-shadow: 0 0 0 60px rgba(25, 194, 255, 0.025), 0 0 0 120px rgba(25, 194, 255, 0.018);
}

.ghcm-profile-hero::after {
	bottom: -170px;
	left: 32%;
	width: 340px;
	height: 340px;
}

.ghcm-back-link {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 28px;
	color: #b8d0e8;
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.ghcm-back-link:hover {
	color: white;
}

.ghcm-profile-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 230px minmax(0, 1fr) 310px;
	align-items: center;
	gap: clamp(26px, 4vw, 52px);
}

.ghcm-profile-photo {
	display: grid;
	width: 230px;
	aspect-ratio: 4 / 5;
	place-items: center;
	border: 6px solid rgba(255, 255, 255, 0.12);
	border-radius: 24px;
	background: linear-gradient(145deg, var(--ghcm-blue), #16a4ee);
	box-shadow: 0 30px 55px rgba(0, 0, 0, 0.25);
	color: white;
	font-family: Sora, sans-serif;
	font-size: 60px;
	font-weight: 700;
	overflow: hidden;
}

.ghcm-profile-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ghcm-profile-intro__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}

.ghcm-verified {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #bdeeff;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghcm-verified i {
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	background: var(--ghcm-cyan);
	color: var(--ghcm-navy);
	font-size: 11px;
	font-style: normal;
}

.ghcm-profile-intro > h1 {
	margin-bottom: 12px;
	color: white;
	font-size: clamp(38px, 5vw, 64px);
}

.ghcm-profile-headline {
	max-width: 560px;
	margin-bottom: 22px;
	color: #d0dfed;
	font-size: clamp(16px, 2vw, 20px);
	line-height: 1.55;
}

.ghcm-profile-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.ghcm-profile-categories span {
	border-color: rgba(126, 209, 255, 0.24);
	background: rgba(25, 194, 255, 0.09);
	color: #c7efff;
}

.ghcm-profile-quickfacts {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 30px;
}

.ghcm-profile-quickfacts div {
	display: flex;
	flex-direction: column;
}

.ghcm-profile-quickfacts span {
	margin-bottom: 2px;
	color: #88a5bf;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghcm-profile-quickfacts strong {
	color: white;
	font-size: 13px;
}

.ghcm-profile-cta {
	padding: 26px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.07);
	backdrop-filter: blur(8px);
}

.ghcm-profile-cta .ghcm-eyebrow {
	color: var(--ghcm-cyan);
}

.ghcm-profile-cta h2 {
	margin-bottom: 12px;
	color: white;
	font-size: 23px;
}

.ghcm-profile-cta p {
	margin-bottom: 20px;
	color: #c3d4e4;
	font-size: 13px;
}

.ghcm-profile-cta ul {
	margin: 18px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	color: #bdd0e1;
	font-size: 11px;
	list-style: none;
}

.ghcm-profile-cta li {
	position: relative;
	margin: 6px 0;
	padding-left: 15px;
}

.ghcm-profile-cta li::before {
	position: absolute;
	left: 0;
	color: var(--ghcm-cyan);
	content: "•";
}

.ghcm-profile-body {
	padding: 72px 0 84px;
	background: #f7f9fc;
}

.ghcm-profile-body__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	align-items: start;
	gap: clamp(40px, 7vw, 90px);
}

.ghcm-profile-section {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 22px;
	padding: 0 0 48px;
}

.ghcm-profile-section + .ghcm-profile-section {
	padding-top: 48px;
	border-top: 1px solid var(--ghcm-line);
}

.ghcm-section-number {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border-radius: 9px;
	background: #e6f2ff;
	color: var(--ghcm-blue);
	font-size: 11px;
	font-weight: 800;
}

.ghcm-profile-section h2 {
	margin-bottom: 18px;
	font-size: clamp(28px, 3vw, 40px);
}

.ghcm-profile-copy {
	color: #44576c;
	font-size: 16px;
	line-height: 1.85;
}

.ghcm-profile-copy p:last-child {
	margin-bottom: 0;
}

.ghcm-profile-skill-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.ghcm-profile-skill-grid span {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px 14px;
	border: 1px solid var(--ghcm-line);
	border-radius: 9px;
	background: white;
	color: var(--ghcm-navy);
	font-size: 13px;
	font-weight: 650;
}

.ghcm-profile-skill-grid i {
	display: grid;
	width: 19px;
	height: 19px;
	place-items: center;
	border-radius: 50%;
	background: #e7f6ff;
	color: var(--ghcm-blue);
	font-size: 10px;
	font-style: normal;
	flex: 0 0 auto;
}

.ghcm-profile-details {
	position: sticky;
	top: 30px;
	padding: 26px;
	border: 1px solid var(--ghcm-line);
	border-radius: 15px;
	background: white;
	box-shadow: 0 15px 40px rgba(6, 21, 38, 0.06);
}

.ghcm-profile-details h3 {
	margin-bottom: 20px;
	font-size: 19px;
}

.ghcm-profile-details dl {
	margin: 0;
}

.ghcm-profile-details dl div {
	padding: 14px 0;
	border-top: 1px solid #e8eef4;
}

.ghcm-profile-details dt {
	margin-bottom: 3px;
	color: var(--ghcm-muted);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghcm-profile-details dd {
	margin: 0;
	color: var(--ghcm-navy);
	font-size: 13px;
	font-weight: 650;
}

.ghcm-profile-links {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid var(--ghcm-line);
}

.ghcm-profile-links > span {
	margin-bottom: 2px;
	color: var(--ghcm-muted);
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.ghcm-profile-links a {
	color: var(--ghcm-blue);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.ghcm-profile-bottom-cta {
	padding: 52px 0;
	background: var(--ghcm-blue);
}

.ghcm-profile-bottom-cta .ghcm-profile-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.ghcm-profile-bottom-cta .ghcm-eyebrow {
	color: #c8f0ff;
}

.ghcm-profile-bottom-cta h2 {
	max-width: 760px;
	margin: 0;
	color: white;
	font-size: clamp(27px, 4vw, 42px);
}

@media (max-width: 1080px) {
	.ghcm-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ghcm-profile-hero__grid {
		grid-template-columns: 190px minmax(0, 1fr);
	}

	.ghcm-profile-photo {
		width: 190px;
	}

	.ghcm-profile-cta {
		grid-column: 1 / -1;
		display: grid;
		grid-template-columns: minmax(0, 1fr) 280px;
		gap: 20px 35px;
	}

	.ghcm-profile-cta .ghcm-eyebrow,
	.ghcm-profile-cta h2,
	.ghcm-profile-cta p {
		grid-column: 1;
	}

	.ghcm-profile-cta .ghcm-button,
	.ghcm-profile-cta ul {
		grid-column: 2;
	}

	.ghcm-profile-cta .ghcm-button {
		grid-row: 1 / 3;
		align-self: end;
	}

	.ghcm-profile-cta ul {
		margin: 0;
		padding-top: 12px;
	}
}

@media (max-width: 850px) {
	.ghcm-form-intro {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.ghcm-directory-filter__controls {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ghcm-form-section {
		grid-template-columns: 1fr;
	}

	.ghcm-form-section__head {
		max-width: 420px;
	}

	.ghcm-profile-body__grid {
		grid-template-columns: 1fr;
	}

	.ghcm-profile-details {
		position: static;
	}
}

@media (max-width: 680px) {
	.ghcm {
		font-size: 15px;
	}

	.ghcm-grid--2,
	.ghcm-card-grid,
	.ghcm-directory-filter__controls,
	.ghcm-profile-skill-grid {
		grid-template-columns: 1fr;
	}

	.ghcm-field--wide {
		grid-column: auto;
	}

	.ghcm-steps {
		width: 100%;
		gap: 5px;
	}

	.ghcm-steps li {
		flex: 1 1 0;
		flex-direction: column;
		font-size: 9px;
		text-align: center;
	}

	.ghcm-steps li span {
		width: 27px;
		height: 27px;
	}

	.ghcm-step-actions,
	.ghcm-form-footer {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.ghcm-step-actions .ghcm-button,
	.ghcm-form-footer .ghcm-button {
		width: 100%;
	}

	.ghcm-commercial-note {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.ghcm-dashboard-head,
	.ghcm-directory-meta,
	.ghcm-profile-bottom-cta .ghcm-profile-shell {
		align-items: flex-start;
		flex-direction: column;
	}

	.ghcm-dashboard-actions {
		align-items: flex-start;
		text-align: left;
	}

	.ghcm-selected-consultant {
		grid-template-columns: auto 1fr;
	}

	.ghcm-selected-consultant .ghcm-text-link {
		grid-column: 1 / -1;
	}

	.ghcm-profile-shell {
		width: min(100% - 28px, 1180px);
	}

	.ghcm-profile-hero {
		padding-bottom: 48px;
	}

	.ghcm-profile-hero__grid {
		grid-template-columns: 1fr;
	}

	.ghcm-profile-photo {
		width: 150px;
		border-radius: 18px;
	}

	.ghcm-profile-cta {
		display: block;
	}

	.ghcm-profile-cta .ghcm-button {
		margin-bottom: 18px;
	}

	.ghcm-profile-section {
		grid-template-columns: 1fr;
		gap: 14px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ghcm *,
	.ghcm *::before,
	.ghcm *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
