/**
 * Styles for custom Elementor widgets (TG Header, TG Product Grid, etc.).
 */

/* ------------------------------------------------------------------ */
/* TG Header                                                            */
/* ------------------------------------------------------------------ */

.tg-hero__content {
  max-width: 640px;
}

.tg-hero__eyebrow {
  display: inline-block;
  color: var(--tg-color-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--tg-text-xs);
  margin: 0 0 12px;
}

.tg-hero__headline {
  font-size: var(--tg-text-4xl);
  line-height: 1.15;
  margin-bottom: var(--tg-space-sm);
}

.tg-hero__highlight--primary {
  color: var(--tg-color-primary);
}

.tg-hero__highlight--secondary {
  color: var(--tg-color-secondary);
}

.tg-hero__tagline {
  font-weight: 700;
  font-size: var(--tg-text-lg);
  color: var(--tg-text);
  margin-bottom: var(--tg-space-sm);
}

.tg-hero__description {
  color: var(--tg-muted);
  font-size: var(--tg-text-base);
  margin-bottom: var(--tg-space-md);
}

.tg-hero__description p:last-child {
  margin-bottom: 0;
}

.tg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tg-space-sm);
}

@media (max-width: 768px) {
  .tg-hero__headline {
    font-size: var(--tg-text-3xl);
  }
}

/* ------------------------------------------------------------------ */
/* TG Marquee                                                           */
/* ------------------------------------------------------------------ */

.tg-marquee {
  overflow: hidden;
  width: 100%;
}

.tg-marquee__track {
  display: flex;
  width: max-content;
  animation-name: tg-marquee-scroll-left;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.tg-marquee--right .tg-marquee__track {
  animation-name: tg-marquee-scroll-right;
}

.tg-marquee--pause-on-hover:hover .tg-marquee__track {
  animation-play-state: paused;
}

.tg-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.tg-marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tg-color-secondary);
  font-size: 18px;
  flex-shrink: 0;
}

.tg-marquee__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.tg-marquee__text {
  font-weight: 600;
  color: var(--tg-text);
  font-size: var(--tg-text-base);
}

@keyframes tg-marquee-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes tg-marquee-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tg-marquee__track {
    animation: none;
  }
}

/* ------------------------------------------------------------------ */
/* TG About Image                                                       */
/* ------------------------------------------------------------------ */

.tg-about-image {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.tg-about-image__main {
  position: relative;
  flex-basis: 60%;
  flex-shrink: 0;
  flex-grow: 0;
  height: 480px;
  max-height: none;
  overflow: hidden;
}

.tg-about-image__main img {
  display: block;
  width: 100%;
  min-height: 100% !important;
  max-height: none;
  object-fit: cover;
  border-radius: var(--tg-radius-lg);
}

/* No secondary images provided — main image expands to fill the full row. */
.tg-about-image--no-side {
  display: block;
}

.tg-about-image--no-side .tg-about-image__main {
  flex-basis: 100%;
  max-width: 100%;
  width: 100%;
}

.tg-about-image__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 0;
  min-width: 0;
  height: 600px !important;
  max-height: none;
}

.tg-about-image__secondary {
  flex: 1 1 0;
  min-height: 0;
}

/* Only one of the two secondary image slots is filled — let it take the
   full side column height instead of leaving an empty gap. */
.tg-about-image__side--single .tg-about-image__secondary {
  flex: 1 1 100%;
}

.tg-about-image__secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--tg-radius-lg);
  display: block;
}

.tg-about-image__badge {
  position: absolute;
  z-index: 2;
  width: 160px;
  background-color: var(--tg-white);
  border: 2px solid var(--tg-color-accent);
  border-radius: var(--tg-radius);
  box-shadow: var(--tg-shadow-lg);
  padding: 16px;
  text-align: left;
}

.tg-about-image__badge--top {
  top: -20px;
}

.tg-about-image__badge--bottom {
  bottom: -20px;
}

.tg-about-image__badge--left {
  left: -20px;
}

.tg-about-image__badge--right {
  right: -20px;
}

.tg-about-image__badge-number {
  display: block;
  font-family: var(--tg-font-heading);
  font-weight: 800;
  font-size: var(--tg-text-3xl);
  color: var(--tg-color-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.tg-about-image__badge-text {
  display: block;
  font-size: var(--tg-text-sm);
  font-weight: 600;
  color: var(--tg-text);
  line-height: 1.4;
}

@media (max-width: 600px) {
  .tg-about-image {
    flex-wrap: wrap;
  }

  .tg-about-image__main {
    flex-basis: 100%;
  }

  .tg-about-image__side {
    flex-direction: row;
    flex-basis: 100%;
  }

  .tg-about-image__badge {
    width: 130px;
    padding: 12px;
  }
}

/* ------------------------------------------------------------------ */
/* TG Product Categories                                                */
/* ------------------------------------------------------------------ */

.tg-cat-grid {
	--tg-cat-cols: 4;
	display: grid;
	grid-template-columns: repeat(var(--tg-cat-cols), 1fr);
	gap: 24px;
}

.tg-cat-grid__empty {
	grid-column: 1 / -1;
	text-align: center;
	color: var(--tg-muted);
}

.tg-cat-card {
	display: block;
	background-color: var(--tg-white);
	border: 1px solid var(--tg-border);
	border-radius: var(--tg-radius);
	overflow: hidden;
	text-decoration: none;
	box-shadow: var(--tg-shadow-sm);
	transition: box-shadow var(--tg-transition), transform var(--tg-transition);
}

.tg-cat-card:hover {
	box-shadow: var(--tg-shadow);
	transform: translateY(-3px);
}

.tg-cat-card__media {
	height: 220px;
	overflow: hidden;
	background-color: var(--tg-background);
}

.tg-cat-card .tg-cat-card__media img {
	width: 100%;
	height: 100% !important;
	max-width: 100%;
	object-fit: cover;
	display: block;
}

/*
 * Category images are product shots on white, so the card layout contains them
 * rather than cropping — matching the product grid.
 *
 * The overlay layout deliberately keeps `cover`: its title sits on a dark
 * gradient across the bottom of the image, and a contained shot would leave
 * bare white there with the text unreadable on top of it.
 */
.tg-cat-grid--card .tg-cat-card__media {
	background-color: var(--tg-white);
	padding: 16px;
}

.tg-cat-grid--card .tg-cat-card .tg-cat-card__media img {
	object-fit: contain;
}

.tg-cat-card__body {
	padding: 20px;
}

.tg-cat-card__title {
	font-size: var(--tg-text-lg);
	color: var(--tg-dark-blue);
	margin: 0 0 8px;
}

.tg-cat-card__desc {
	color: var(--tg-muted);
	font-size: var(--tg-text-sm);
	margin: 0 0 10px;
}

.tg-cat-card__count {
	display: inline-block;
	font-size: var(--tg-text-xs);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--tg-color-secondary);
}

/* Overlay layout: text sits on top of the image with a gradient scrim */
.tg-cat-grid--overlay .tg-cat-card {
	position: relative;
}

.tg-cat-grid--overlay .tg-cat-card__media {
	height: 320px;
	position: relative;
}

.tg-cat-grid--overlay .tg-cat-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(18, 59, 99, 0) 40%, rgba(18, 59, 99, 0.85) 100%);
}

.tg-cat-grid--overlay .tg-cat-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 20px;
	z-index: 1;
}

.tg-cat-grid--overlay .tg-cat-card__title,
.tg-cat-grid--overlay .tg-cat-card__desc,
.tg-cat-grid--overlay .tg-cat-card__count {
	color: var(--tg-white);
}

/*
 * Mobile: one-card-per-view auto-advancing carousel instead of a stacked
 * grid. Scroll-snap still powers the physics (touch swipe, keyboard,
 * trackpad all work natively) — tg-category-slider.js only drives the
 * autoplay timer and the dots, it never hand-rolls the motion itself.
 */
@media (max-width: 767px) {
	.tg-cat-slider {
		position: relative;
	}

	.tg-cat-grid {
		display: flex;
		grid-template-columns: none;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		-ms-overflow-style: none;
	}

	.tg-cat-grid::-webkit-scrollbar {
		display: none;
	}

	.tg-cat-card {
		flex: 0 0 100%;
		scroll-snap-align: start;
	}

	.tg-cat-slider__dots {
		display: flex;
		justify-content: center;
		gap: 8px;
		margin-top: 16px;
	}

	.tg-cat-slider__dot {
		width: 8px;
		height: 8px;
		padding: 0;
		border: none;
		border-radius: 50%;
		background-color: var(--tg-border);
		cursor: pointer;
		transition: background-color var(--tg-transition), transform var(--tg-transition);
	}

	.tg-cat-slider__dot.is-active {
		background-color: var(--tg-color-primary);
		transform: scale(1.25);
	}
}

@media (min-width: 768px) {
	.tg-cat-slider__dots {
		display: none;
	}
}

/* ------------------------------------------------------------------ */
/* TG Service Grid                                                      */
/* ------------------------------------------------------------------ */

.tg-service-grid {
	--tg-service-cols: 4;
	display: grid;
	grid-template-columns: repeat(var(--tg-service-cols), 1fr);
	gap: 24px;
}

.tg-service-card {
	display: flex;
	flex-direction: column;
	background-color: var(--tg-white);
	border: 1px solid var(--tg-border);
	border-radius: var(--tg-radius);
	overflow: hidden;
	box-shadow: var(--tg-shadow-sm);
	transition: box-shadow var(--tg-transition), transform var(--tg-transition);
}

.tg-service-card:hover {
	box-shadow: var(--tg-shadow);
	transform: translateY(-3px);
}

.tg-service-card__media {
	height: 200px;
	overflow: hidden;
	background-color: var(--tg-background);
}

.tg-service-card .tg-service-card__media img {
	width: 100%;
	height: 100% !important;
	max-width: 100%;
	object-fit: cover;
	display: block;
}

.tg-service-card__body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.tg-service-card__title {
	font-size: var(--tg-text-lg);
	color: var(--tg-dark-blue);
	margin: 0 0 10px;
}

.tg-service-card__desc {
	color: var(--tg-muted);
	font-size: var(--tg-text-sm);
	margin: 0 0 16px;
	flex-grow: 1;
}

.tg-service-card__button {
	align-self: flex-start;
}

/* ------------------------------------------------------------------ */
/* TG Process                                                           */
/* ------------------------------------------------------------------ */

.tg-process {
	--tg-process-connector: var(--tg-border);
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.tg-process-step {
	flex: 1 1 0;
	min-width: 0;
	text-align: center;
	position: relative;
}

.tg-process-step__top {
	position: relative;
	margin-bottom: 16px;
}

.tg-process-step__circle {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--tg-white);
	border: 2px solid transparent;
	margin-inline: auto;
	position: relative;
	z-index: 1;
}

.tg-process-step__circle .tg-icon {
	font-size: 26px;
}

.tg-process-step__circle .tg-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.tg-process-step__circle--primary {
	border-color: var(--tg-color-primary);
	color: var(--tg-color-primary);
}

.tg-process-step__circle--secondary {
	border-color: var(--tg-color-secondary);
	color: var(--tg-color-secondary);
}

.tg-process-step__circle--accent {
	border-color: var(--tg-color-accent);
	color: var(--tg-color-accent);
}

.tg-process-step__connector {
	position: absolute;
	top: 36px;
	left: calc(50% + 36px);
	right: calc(-50% + 36px);
	height: 0;
	border-top: 2px dotted var(--tg-process-connector);
	z-index: 0;
}

.tg-process-step__number {
	display: block;
	font-weight: 800;
	font-size: var(--tg-text-lg);
	color: var(--tg-color-secondary);
	margin-bottom: 6px;
}

.tg-process-step__title {
	font-size: var(--tg-text-base);
	color: var(--tg-dark-blue);
	margin: 0 0 8px;
}

.tg-process-step__desc {
	color: var(--tg-muted);
	font-size: var(--tg-text-sm);
	margin: 0;
	line-height: 1.5;
}

@media (max-width: 900px) {
	.tg-process {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
	}

	.tg-process-step {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-areas:
			"circle title"
			"circle desc";
		column-gap: 20px;
		text-align: left;
		padding-bottom: 24px;
	}

	.tg-process-step:not(.tg-process-step--last) {
		position: relative;
	}

	.tg-process-step__top {
		grid-area: circle;
		margin-bottom: 0;
		height: 100%;
	}

	.tg-process-step__circle {
		margin-inline: 0;
	}

	.tg-process-step__connector {
		position: absolute;
		top: 72px;
		bottom: 0;
		left: 36px;
		right: auto;
		width: 0;
		height: auto;
		min-height: 24px;
		border-top: none;
		border-left: 2px dotted var(--tg-process-connector);
	}

	.tg-process-step__heading {
		grid-area: title;
		display: flex;
		align-items: baseline;
		flex-wrap: wrap;
		column-gap: 8px;
	}

	.tg-process-step__number {
		display: inline;
		margin-bottom: 0;
	}

	.tg-process-step__title {
		display: inline;
		margin: 0;
	}

	.tg-process-step__desc {
		grid-area: desc;
		margin-top: 6px;
	}
}

/* ------------------------------------------------------------------ */
/* TG Industry Showcase                                                 */
/* ------------------------------------------------------------------ */

.tg-industry-showcase {
	--tg-industry-path-color: rgba(0, 155, 85, 0.35);
	--tg-industry-path-width: 2px;
	--tg-industry-accent: var(--tg-color-secondary);
	position: relative;
	overflow: hidden;
	padding-block: var(--tg-section-space);
}

.tg-industry-showcase__container {
	position: relative;
	z-index: 1;
	max-width: var(--tg-container);
	margin-inline: auto;
	padding-inline: var(--tg-gutter);
}

/* ---------------------------------------------------------------- */
/* Header                                                             */
/* ---------------------------------------------------------------- */

.tg-industry-showcase__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--tg-space-2xl);
}

.tg-industry-showcase__heading {
	color: var(--tg-dark-blue);
	font-size: var(--tg-text-4xl);
	margin: 0 0 16px;
	line-height: 1.15;
}

.tg-industry-showcase__accent-text {
	color: var(--tg-industry-accent);
}

.tg-industry-showcase__desc {
	color: var(--tg-muted);
	font-size: var(--tg-text-base);
	margin: 0;
}

/* ---------------------------------------------------------------- */
/* Journey rows                                                       */
/* ---------------------------------------------------------------- */

.tg-industry-showcase__journey {
	display: flex;
	flex-direction: column;
	gap: var(--tg-space-2xl);
}

.tg-industry-showcase__row {
	--tg-industry-per-row: 5;
	position: relative;
	display: grid;
	grid-template-columns: repeat(var(--tg-industry-per-row), 1fr);
	gap: 24px;
	align-items: start;
}

.tg-industry-showcase__path {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	overflow: visible;
	pointer-events: none;
}

.tg-industry-showcase__path-line {
	fill: none;
	stroke: var(--tg-industry-path-color);
	stroke-width: var(--tg-industry-path-width);
	stroke-linecap: round;
	transition: stroke var(--tg-transition-slow);
}

.tg-industry-showcase__path-dot {
	fill: var(--tg-industry-path-color);
	transition: fill var(--tg-transition-slow);
}

.tg-industry-showcase__row:hover .tg-industry-showcase__path-line,
.tg-industry-showcase__row:hover .tg-industry-showcase__path-dot {
	--tg-industry-path-color: var(--tg-industry-accent);
	opacity: 0.55;
}

/* ---------------------------------------------------------------- */
/* Node                                                                */
/* ---------------------------------------------------------------- */

.tg-industry-node {
	position: relative;
	z-index: 2;
	text-align: center;
	transform: translateY(var(--tg-industry-offset, 0));
}

.tg-industry-node__link {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
	position: relative;
	outline-offset: 4px;
}

.tg-industry-node__image {
	position: relative;
	display: block;
	width: 132px;
	height: 132px;
	border-radius: 50%;
	overflow: hidden;
	background-color: var(--tg-white);
	border: 1px solid rgba(0, 155, 85, 0.25);
	box-shadow: var(--tg-shadow-sm);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tg-industry-showcase .tg-industry-node__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	display: block;
}

.tg-industry-node__icon {
	position: absolute;
	right: 2px;
	bottom: 8px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background-color: var(--tg-industry-accent);
	color: var(--tg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--tg-white);
	font-size: 16px;
	transition: background-color 0.3s ease;
}

.tg-industry-node__icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.tg-industry-node__title {
	margin-top: 16px;
	font-weight: 700;
	font-size: var(--tg-text-sm);
	color: var(--tg-dark-blue);
	transition: color 0.3s ease;
}

.tg-industry-node__underline {
	display: block;
	width: 28px;
	height: 2px;
	margin: 8px auto 0;
	background-color: var(--tg-industry-accent);
	opacity: 0.4;
	border-radius: 2px;
	transition: opacity 0.3s ease;
}

/* Hover interaction — transform/color only, never size/layout, per spec */
.tg-industry-node__link:hover .tg-industry-node__image,
.tg-industry-node__link:focus-visible .tg-industry-node__image {
	transform: scale(1.06);
	border-color: var(--tg-industry-accent);
	box-shadow: var(--tg-shadow);
}

.tg-industry-node__link:hover .tg-industry-node__icon,
.tg-industry-node__link:focus-visible .tg-industry-node__icon {
	background-color: var(--tg-color-accent);
}

.tg-industry-node__link:hover .tg-industry-node__title,
.tg-industry-node__link:focus-visible .tg-industry-node__title {
	color: var(--tg-industry-accent);
}

.tg-industry-node__link:hover .tg-industry-node__underline,
.tg-industry-node__link:focus-visible .tg-industry-node__underline {
	opacity: 1;
}

.tg-industry-node__link:focus-visible {
	outline: 3px solid var(--tg-color-accent);
	border-radius: 50%;
}

/* ---------------------------------------------------------------- */
/* Bottom message                                                     */
/* ---------------------------------------------------------------- */

.tg-industry-showcase__message {
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 720px;
	margin: var(--tg-space-2xl) auto 0;
	padding: 20px 32px;
	background-color: var(--tg-white);
	border: 1px solid var(--tg-border);
	border-radius: 999px;
	box-shadow: var(--tg-shadow-sm);
}

.tg-industry-showcase__message-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: rgba(0, 155, 85, 0.12);
	color: var(--tg-industry-accent);
	font-size: 18px;
}

.tg-industry-showcase__message-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.tg-industry-showcase__message-title {
	margin: 0;
	font-weight: 700;
	font-size: var(--tg-text-base);
	color: var(--tg-dark-blue);
}

.tg-industry-showcase__message-desc {
	margin: 4px 0 0;
	font-size: var(--tg-text-sm);
	color: var(--tg-muted);
}

/* ---------------------------------------------------------------- */
/* Responsive                                                          */
/* ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.tg-industry-showcase__row {
		--tg-industry-per-row: 3;
		row-gap: var(--tg-space-xl);
	}

	.tg-industry-showcase__path {
		display: none;
	}

	.tg-industry-node {
		transform: none;
	}
}

/*
 * Mobile: two nodes per row. The decorative SVG path is dropped (it is
 * drawn for a single 5-across row and cannot follow a wrapped grid), and
 * the journey is implied instead with CSS connectors — a horizontal dotted
 * line joining each pair, and a vertical one bridging row to row. Both are
 * pseudo-elements on the node so they follow the grid automatically no
 * matter how many industries the editor adds.
 */
@media (max-width: 767px) {
	/*
	 * The widget chunks industries five per .tg-industry-showcase__row for
	 * the desktop curved path. Five items in a two-column grid always
	 * strands one node alone on its own line — and it repeats for every
	 * container. Flattening the containers with display:contents lifts all
	 * the nodes into a single continuous grid, so an even number of
	 * industries pairs up cleanly with no orphan row.
	 */
	.tg-industry-showcase__journey {
		--tg-industry-per-row: 2;
		display: grid;
		grid-template-columns: repeat(var(--tg-industry-per-row), 1fr);
		align-items: start;
		gap: 56px var(--tg-space-sm);
	}

	.tg-industry-showcase__row {
		display: contents;
	}

	.tg-industry-showcase__path {
		display: none;
	}

	.tg-industry-node {
		position: relative;
		transform: none;
	}

	/*
	 * NOTE ON THE nth-child OFFSET: the decorative <svg> path is the first
	 * child of .tg-industry-showcase__row, ahead of every node. That shifts
	 * the counter by one, so the LEFT column is :nth-child(2n) and the RIGHT
	 * column is :nth-child(2n + 1). Do not "simplify" these to odd/even —
	 * that mirrors the connectors onto the wrong sides.
	 */

	/* Horizontal connector: spans the column gap from the left node of a
	   pair across to its partner. Anchored to the node's own right edge and
	   stretched by the grid gap so it stays correct at any viewport width. */
	.tg-industry-node:nth-child(2n)::before {
		content: "";
		position: absolute;
		top: 50px;
		left: calc(50% + 52px);
		width: calc(50% - 52px + var(--tg-space-sm));
		height: 0;
		border-top: 2px dotted var(--tg-industry-path-color);
	}

	/* Vertical connector: bridges the row gap from the right node of a pair
	   down to the next row. Anchored to the node's bottom edge rather than a
	   fixed top offset, so a title that wraps to two lines can't push the
	   line over the text. */
	.tg-industry-node:nth-child(2n + 1)::after {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		height: 56px;
		width: 0;
		border-left: 2px dotted var(--tg-industry-path-color);
		transform: translateX(-50%);
	}

	/*
	 * Because the containers are flattened with display:contents, a node
	 * that is :last-child of its container is NOT necessarily last in the
	 * visual grid — the next container's nodes follow it. Only the final
	 * container's last node genuinely ends the journey, so the terminating
	 * rules are scoped to .tg-industry-showcase__row:last-child.
	 */
	.tg-industry-showcase__row:last-child .tg-industry-node:last-child:nth-child(2n)::before,
	.tg-industry-showcase__row:last-child .tg-industry-node:last-child:nth-child(2n + 1)::after {
		display: none;
	}

	.tg-industry-node__image {
		width: 100px;
		height: 100px;
	}

	.tg-industry-node__icon {
		right: auto;
		left: 50%;
		bottom: 0;
		transform: translate(-50%, 30%);
		border-width: 2px;
	}
}

@media (max-width: 480px) {
	.tg-industry-showcase__message {
		flex-direction: column;
		text-align: center;
		border-radius: var(--tg-radius-lg);
	}
}

/* ------------------------------------------------------------------ */
/* TG Product Grid                                                      */
/* ------------------------------------------------------------------ */

.tg-product-grid-header {
  max-width: 720px;
  margin: 0 auto var(--tg-space-lg);
  text-align: center;
}

.tg-product-grid-header__eyebrow {
  display: inline-block;
  color: var(--tg-green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--tg-text-xs);
  margin: 0 0 12px;
}

.tg-product-grid-header__heading {
  font-family: var(--tg-font-heading);
  font-size: var(--tg-text-3xl);
  line-height: 1.2;
  color: var(--tg-dark-blue);
  margin: 0 0 var(--tg-space-sm);
}

.tg-product-grid-header__desc {
  color: var(--tg-muted);
  font-size: var(--tg-text-lg);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .tg-product-grid-header {
    text-align: left;
  }
}

.tg-product-grid {
  --tg-product-cols: 4;
  display: grid;
  grid-template-columns: repeat(var(--tg-product-cols), minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1024px) {
  .tg-product-grid {
    --tg-product-cols: 2;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .tg-product-grid {
    --tg-product-cols: 1;
    gap: 16px;
  }
}

.tg-product-card {
  display: flex;
  flex-direction: column;
  background: var(--tg-white);
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--tg-transition-slow),
    box-shadow var(--tg-transition-slow),
    border-color var(--tg-transition-slow);
}

.tg-product-card:hover,
.tg-product-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--tg-shadow-lg);
  border-color: var(--tg-color-secondary);
}

.tg-product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--tg-white);
  border-bottom: 1px solid var(--tg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: var(--tg-space-md);
}

.tg-product-card .tg-product-card__media img {
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  transition: transform var(--tg-transition-slow);
}

.tg-product-card:hover .tg-product-card__media img {
  transform: scale(1.04);
}

.tg-product-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
}

.tg-product-card__placeholder-svg {
  width: 56%;
  max-width: 140px;
  height: auto;
}

.tg-product-card__placeholder-label {
  font-size: var(--tg-text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--tg-green);
  opacity: 0.65;
}

.tg-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--tg-space-md);
}

.tg-product-card__category {
  display: inline-block;
  font-size: var(--tg-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tg-color-primary);
  margin-bottom: 8px;
}

.tg-product-card__title {
  font-family: var(--tg-font-heading);
  font-size: var(--tg-text-lg);
  line-height: 1.3;
  color: var(--tg-dark-blue);
  margin: 0 0 8px;
}

.tg-product-card__desc {
  color: var(--tg-muted);
  font-size: var(--tg-text-sm);
  line-height: 1.6;
  margin: 0 0 var(--tg-space-sm);
  flex: 1;
}

.tg-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: var(--tg-text-sm);
  font-weight: 700;
  color: var(--tg-color-secondary);
  transition: gap var(--tg-transition);
}

.tg-product-card__link svg {
  flex-shrink: 0;
  transition: transform var(--tg-transition);
}

.tg-product-card:hover .tg-product-card__link svg {
  transform: translateX(3px);
}

.tg-product-grid__empty {
  text-align: center;
  color: var(--tg-muted);
  padding: var(--tg-space-lg) 0;
}


/* ------------------------------------------------------------------ */
/* TG Form                                                              */
/* ------------------------------------------------------------------ */

/*
 * Fields sit on a 12-column grid. The per-field "Column Width" control
 * writes `grid-column: span var(--tg-form-span-{value})` onto the repeater
 * item, and these variables translate the percentage choice into a span.
 */
.tg-form {
  --tg-form-span-100: 12;
  --tg-form-span-50: 6;
  --tg-form-span-33: 4;
  --tg-form-span-25: 3;
}

.tg-form__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 20px;
  row-gap: 16px;
}

.tg-form__field {
  grid-column: span 12;
  min-width: 0;
}

.tg-form__field--hidden {
  display: none;
}

.tg-form__label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--tg-text-sm);
  color: var(--tg-text);
}

.tg-form__required {
  color: #c0392b;
  margin-left: 2px;
}

.tg-form__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius-sm);
  font-family: var(--tg-font-body);
  font-size: var(--tg-text-base);
  color: var(--tg-text);
  background-color: var(--tg-white);
  transition: border-color var(--tg-transition), box-shadow var(--tg-transition);
  min-height: 44px;
}

.tg-form__input:focus {
  outline: none;
  border-color: var(--tg-blue);
  box-shadow: 0 0 0 3px rgba(22, 120, 184, 0.15);
}

/* --- Math captcha --- */

.tg-form__captcha {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* The question is rendered as a chip so it reads as a prompt rather than as
   another piece of form furniture. */
.tg-form__captcha-question {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  font-weight: 700;
  font-size: var(--tg-text-base);
  letter-spacing: 0.04em;
  color: var(--tg-dark-blue);
  background-color: var(--tg-background);
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius-sm);
  /* Digits and operators shouldn't be mistakable for one another. */
  font-variant-numeric: tabular-nums;
  user-select: none;
}

.tg-form__captcha-answer {
  /* Narrow: the answer is only ever a small number. */
  max-width: 120px;
}

.tg-form__captcha-refresh {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--tg-muted);
  background: none;
  border: 1px solid var(--tg-border);
  border-radius: var(--tg-radius-sm);
  cursor: pointer;
  transition: color var(--tg-transition), border-color var(--tg-transition);
}

.tg-form__captcha-refresh:hover,
.tg-form__captcha-refresh:focus-visible {
  color: var(--tg-color-primary);
  border-color: var(--tg-color-primary);
}

@media (max-width: 480px) {
  .tg-form__captcha-answer {
    max-width: none;
  }
}

.tg-form textarea.tg-form__input {
  resize: vertical;
}

.tg-form__field.has-error .tg-form__input {
  border-color: #c0392b;
}

.tg-form__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.tg-form__choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--tg-text-sm);
  color: var(--tg-text);
  cursor: pointer;
}

.tg-form__choice input {
  margin: 0;
  flex: none;
}

/* Honeypot: removed from view without display:none, which some bots skip. */
.tg-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.tg-form__actions {
  display: flex;
  margin-top: var(--tg-space-md);
}

.tg-form__actions--full .tg-form__submit {
  width: 100%;
}

.tg-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: var(--tg-radius-lg);
  background-color: var(--tg-color-primary);
  color: var(--tg-white);
  font-family: var(--tg-font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  min-height: 44px;
  transition: background-color var(--tg-transition), color var(--tg-transition), border-color var(--tg-transition);
}

.tg-form__submit:hover,
.tg-form__submit:focus-visible {
  background-color: var(--tg-color-primary-dark);
}

.tg-form__submit:disabled,
.tg-form__submit.is-loading {
  opacity: 0.65;
  cursor: not-allowed;
}

.tg-form__message {
  margin: 12px 0 0;
  font-size: var(--tg-text-sm);
}

.tg-form__message:empty {
  display: none;
}

.tg-form__message.is-success {
  color: var(--tg-green);
}

.tg-form__message.is-error {
  color: #c0392b;
}

@media (max-width: 600px) {
  .tg-form__field {
    grid-column: span 12 !important;
  }
}

/* ------------------------------------------------------------------ */
/* TG Hero Slider                                                       */
/* ------------------------------------------------------------------ */

.tg-hero-slider {
	position: relative;
	width: 100%;
	--tg-hero-speed: 600ms;
}

.tg-hero-slider__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/*
 * Every slide is stacked in the same grid cell rather than laid out in a row.
 * Both transition modes then come down to which slide is opaque/offset, so the
 * JS only ever toggles a class and never measures or translates a track.
 */
.tg-hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	overflow: hidden;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity var(--tg-hero-speed) ease,
		transform var(--tg-hero-speed) ease,
		visibility 0s linear var(--tg-hero-speed);
}

.tg-hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
	/* Visibility flips immediately on the way in, and only after the fade on
	   the way out — hence the delay above and the reset here. */
	transition-delay: 0s;
}

/* Slide mode: incoming slide travels in from the right, outgoing to the left. */
.tg-hero-slider--slide .tg-hero-slide {
	transform: translateX(30px);
}

.tg-hero-slider--slide .tg-hero-slide.is-active {
	transform: translateX(0);
}

.tg-hero-slide__bg {
	position: absolute;
	inset: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.tg-hero-slider--kenburns .tg-hero-slide.is-active .tg-hero-slide__bg {
	animation: tg-hero-kenburns 12s ease-out forwards;
}

@keyframes tg-hero-kenburns {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.12);
	}
}

.tg-hero-slide__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(18, 59, 99, 0.55);
}

.tg-hero-slide__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	width: 100%;
	max-width: var(--tg-container, 1200px);
	margin-inline: auto;
	padding: 40px;
}

.tg-hero-slide__content {
	max-width: 640px;
}

.tg-hero-slide__eyebrow {
	display: block;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--tg-text-xs);
	color: var(--tg-color-secondary);
	margin-bottom: 12px;
}

.tg-hero-slide__heading {
	font-size: var(--tg-text-4xl);
	line-height: 1.15;
	color: var(--tg-white);
	margin: 0 0 16px;
}

.tg-hero-slide__desc {
	font-size: var(--tg-text-base);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	margin: 0 0 28px;
}

.tg-hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.tg-hero-slide__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 26px;
	border: 2px solid transparent;
	border-radius: var(--tg-radius-lg);
	font-family: inherit;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	cursor: pointer;
	transition:
		background-color var(--tg-transition),
		color var(--tg-transition),
		border-color var(--tg-transition);
}

.tg-hero-slide__btn--primary {
	background-color: var(--tg-color-primary);
	color: var(--tg-white);
}

.tg-hero-slide__btn--primary:hover,
.tg-hero-slide__btn--primary:focus-visible {
	background-color: var(--tg-color-primary-dark);
	color: var(--tg-white);
}

.tg-hero-slide__btn--secondary {
	background-color: transparent;
	border-color: var(--tg-white);
	color: var(--tg-white);
}

.tg-hero-slide__btn--secondary:hover,
.tg-hero-slide__btn--secondary:focus-visible {
	background-color: var(--tg-white);
	color: var(--tg-dark-blue);
}

/* A button with no link renders as a span; make that obvious to the pointer. */
span.tg-hero-slide__btn {
	cursor: default;
}

/* --- Arrows --- */

.tg-hero-slider__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 0;
	background-color: rgba(0, 0, 0, 0.35);
	border: none;
	border-radius: 50%;
	color: var(--tg-white);
	cursor: pointer;
	transition: background-color var(--tg-transition);
}

.tg-hero-slider__arrow--prev {
	left: 20px;
}

.tg-hero-slider__arrow--next {
	right: 20px;
}

.tg-hero-slider__arrow svg {
	width: 45%;
	height: 45%;
	display: block;
}

/* --- Dots --- */

.tg-hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tg-hero-slider__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	background-color: rgba(255, 255, 255, 0.45);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	transition: background-color var(--tg-transition), transform var(--tg-transition);
}

.tg-hero-slider__dot.is-active {
	background-color: var(--tg-white);
	transform: scale(1.25);
}

/*
 * A hero that advances on its own is unanticipated motion; the script already
 * refuses to autoplay under this setting, and this removes the slide/zoom
 * animation so a manual change is an instant cut instead.
 */
@media (prefers-reduced-motion: reduce) {
	.tg-hero-slide {
		transition: opacity 1ms linear, visibility 0s linear 1ms;
	}

	.tg-hero-slider--slide .tg-hero-slide,
	.tg-hero-slider--slide .tg-hero-slide.is-active {
		transform: none;
	}

	.tg-hero-slider--kenburns .tg-hero-slide.is-active .tg-hero-slide__bg {
		animation: none;
	}
}

@media (max-width: 768px) {
	.tg-hero-slide__inner {
		padding: 28px 20px;
	}

	.tg-hero-slide__heading {
		font-size: var(--tg-text-3xl);
	}

	.tg-hero-slider__arrow {
		width: 38px;
		height: 38px;
	}

	.tg-hero-slider__arrow--prev {
		left: 10px;
	}

	.tg-hero-slider__arrow--next {
		right: 10px;
	}
}

/* ------------------------------------------------------------------ */
/* TG Team Showcase                                                     */
/* ------------------------------------------------------------------ */

.tg-team {
	--tg-team-accent: var(--tg-color-secondary);
	position: relative;
	overflow: hidden;
	background-color: var(--tg-background);
	padding-block: var(--tg-section-space);
}

/* Extremely subtle botanical decoration — large translucent leaf blobs,
 * kept behind all content and low-opacity so the section stays corporate
 * rather than reading as a nature site. */
.tg-team__decoration {
	position: absolute;
	z-index: 0;
	pointer-events: none;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, var(--tg-team-accent), transparent 70%);
}

.tg-team__decoration--one {
	top: -120px;
	left: -100px;
	width: 360px;
	height: 360px;
	opacity: 0.05;
}

.tg-team__decoration--two {
	bottom: -140px;
	right: -110px;
	width: 420px;
	height: 420px;
	opacity: 0.04;
}

@media (prefers-reduced-motion: no-preference) {
	.tg-team__decoration {
		transition: opacity var(--tg-transition-slow);
	}
}

.tg-team__container {
	position: relative;
	z-index: 1;
	max-width: var(--tg-container);
	margin-inline: auto;
	padding-inline: var(--tg-gutter);
}

/* ---------------------------------------------------------------- */
/* Header                                                             */
/* ---------------------------------------------------------------- */

.tg-team__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--tg-space-2xl);
}

.tg-team__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--tg-team-accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--tg-text-xs);
	margin: 0 0 12px;
}

.tg-team__eyebrow .tg-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
}

.tg-team__eyebrow .tg-icon svg {
	width: 100%;
	height: 100%;
}

.tg-team__title {
	color: var(--tg-dark-blue);
	font-size: var(--tg-text-4xl);
	margin: 0 0 16px;
	line-height: 1.15;
}

.tg-team__title-accent {
	color: var(--tg-team-accent);
}

.tg-team__description {
	color: var(--tg-muted);
	font-size: var(--tg-text-base);
	margin: 0;
}

/* ---------------------------------------------------------------- */
/* Grid                                                                */
/* ---------------------------------------------------------------- */

.tg-team__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

@media (max-width: 1024px) {
	.tg-team__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.tg-team__grid {
		grid-template-columns: 1fr;
	}
}

/* ---------------------------------------------------------------- */
/* Card                                                                */
/* ---------------------------------------------------------------- */

.tg-team-member {
	display: flex;
	flex-direction: column;
	background-color: var(--tg-white);
	border: 1px solid var(--tg-border);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--tg-shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tg-team-member:hover,
.tg-team-member:focus-within {
	transform: translateY(-5px);
	box-shadow: var(--tg-shadow);
	border-color: rgba(0, 155, 85, 0.35);
}

.tg-team-member__image {
	position: relative;
	height: 340px;
	margin: 20px 20px 0;
	border-radius: 40px 40px 80px 40px;
	overflow: hidden;
	background-color: #eaf5ef;
}

.tg-team-member__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.tg-team-member:hover .tg-team-member__image img,
.tg-team-member:focus-within .tg-team-member__image img {
	transform: scale(1.03);
}

.tg-team-member__placeholder {
	width: 100%;
	height: 100%;
	display: block;
}

.tg-team-member__role-icon {
	position: absolute;
	right: 16px;
	bottom: 16px;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background-color: var(--tg-team-accent);
	color: var(--tg-white);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 4px solid var(--tg-white);
	box-shadow: var(--tg-shadow-sm);
	transition: transform 0.3s ease;
}

.tg-team-member__role-icon .tg-icon {
	display: inline-flex;
	width: 22px;
	height: 22px;
}

.tg-team-member__role-icon .tg-icon svg {
	width: 100%;
	height: 100%;
}

.tg-team-member:hover .tg-team-member__role-icon,
.tg-team-member:focus-within .tg-team-member__role-icon {
	transform: scale(1.08);
}

/* ---------------------------------------------------------------- */
/* Content                                                             */
/* ---------------------------------------------------------------- */

.tg-team-member__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 24px 24px 28px;
}

.tg-team-member__name {
	font-size: var(--tg-text-xl);
	font-weight: 700;
	color: var(--tg-dark-blue);
	margin: 0 0 6px;
}

.tg-team-member__name a {
	color: inherit;
	text-decoration: none;
}

.tg-team-member__name a:hover,
.tg-team-member__name a:focus-visible {
	color: var(--tg-team-accent);
}

.tg-team-member__designation {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: var(--tg-team-accent);
	margin: 0;
}

.tg-team-member__divider {
	display: block;
	width: 50px;
	height: 3px;
	margin: 14px 0;
	background-color: var(--tg-team-accent);
	border-radius: 2px;
}

.tg-team-member__bio {
	color: var(--tg-muted);
	font-size: 15px;
	line-height: 1.6;
	margin: 0 0 20px;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ---------------------------------------------------------------- */
/* Social / contact                                                    */
/* ---------------------------------------------------------------- */

.tg-team-member__social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: auto;
}

.tg-team-member__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: rgba(0, 155, 85, 0.1);
	color: var(--tg-team-accent);
	transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.tg-team-member__social-link .tg-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
}

.tg-team-member__social-link .tg-icon svg {
	width: 100%;
	height: 100%;
}

.tg-team-member__social-link:hover,
.tg-team-member__social-link:focus-visible {
	background-color: var(--tg-team-accent);
	color: var(--tg-white);
	transform: translateY(-2px);
}

.tg-team-member__social-link:focus-visible {
	outline: 3px solid var(--tg-color-accent);
	outline-offset: 2px;
}

/* ---------------------------------------------------------------- */
/* Responsive                                                          */
/* ---------------------------------------------------------------- */

@media (max-width: 1024px) {
	.tg-team-member__image {
		height: 300px;
	}
}

@media (max-width: 767px) {
	.tg-team-member__image {
		height: 260px;
		aspect-ratio: 4 / 3;
	}

	.tg-team-member__role-icon {
		width: 46px;
		height: 46px;
		right: 12px;
		bottom: 12px;
	}

	.tg-team-member__role-icon .tg-icon {
		width: 18px;
		height: 18px;
	}

	.tg-team__grid {
		gap: 20px;
	}

	.tg-team__container {
		padding-inline: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.tg-team-member,
	.tg-team-member__image img,
	.tg-team-member__role-icon,
	.tg-team-member__social-link {
		transition: none;
	}

	.tg-team-member:hover,
	.tg-team-member:focus-within {
		transform: none;
	}

	.tg-team-member:hover .tg-team-member__image img,
	.tg-team-member:focus-within .tg-team-member__image img {
		transform: none;
	}
}

/* ------------------------------------------------------------------ */
/* TG Clients                                                           */
/* ------------------------------------------------------------------ */

.tg-clients {
	--tg-clients-accent: var(--tg-color-secondary);
	padding-block: var(--tg-section-space);
}

.tg-clients__container {
	max-width: var(--tg-container);
	margin-inline: auto;
	padding-inline: var(--tg-gutter);
}

.tg-clients__header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto var(--tg-space-2xl);
}

.tg-clients__eyebrow {
	display: inline-block;
	color: var(--tg-clients-accent);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: var(--tg-text-xs);
	margin: 0 0 12px;
}

.tg-clients__title {
	color: var(--tg-dark-blue);
	font-size: var(--tg-text-4xl);
	margin: 0 0 16px;
	line-height: 1.15;
}

.tg-clients__title-accent {
	color: var(--tg-clients-accent);
}

.tg-clients__description {
	color: var(--tg-muted);
	font-size: var(--tg-text-base);
	margin: 0;
}

.tg-clients__grid {
	--tg-clients-cols: 2;
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(var(--tg-clients-cols), 1fr);
	column-gap: var(--tg-space-2xl);
	row-gap: 14px;
}

.tg-clients__item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--tg-border);
}

.tg-clients__bullet {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	margin-top: 2px;
	border-radius: 50%;
	background-color: rgba(0, 155, 85, 0.1);
	color: var(--tg-clients-accent);
}

.tg-clients__bullet svg {
	width: 12px;
	height: 12px;
}

.tg-clients__name {
	color: var(--tg-text);
	font-size: var(--tg-text-sm);
	line-height: 1.5;
	text-decoration: none;
	transition: color var(--tg-transition);
}

a.tg-clients__name:hover,
a.tg-clients__name:focus-visible {
	color: var(--tg-clients-accent);
}

a.tg-clients__name:focus-visible {
	outline: 2px solid var(--tg-color-accent);
	outline-offset: 2px;
}

@media (max-width: 767px) {
	.tg-clients__grid {
		--tg-clients-cols: 1;
		row-gap: 12px;
	}

	.tg-clients__container {
		padding-inline: 16px;
	}
}
