/* Servivces Pages Customization */
:root {
  --site-accent: #ee3124;
  --surface-dark: #111827;
  --text-default: #374151;
  --text-muted: #6b7280;
  --surface-light: #f8f9fb;
  --border-soft: rgba(17, 24, 39, 0.08);
  --shadow-soft: 0 1rem 2.5rem rgba(17, 24, 39, 0.08);
  --radius-lg: 1.25rem;
}

html {
  	/* clamp(minimum, preferred, maximum) */
	font-size: 16px;
}

body {
	color: #333;
	font-family: "ff-tisa-web-pro", "sans-serif";
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: "proxima-nova", "sans-serif";
	margin: 1rem 0 1rem 0;
}

h1, .h1 {
	font-size: 3.5rem;

	@media (max-width: 768px) {
		font-size: 2rem;
	}
}

h2, .h2 {
	font-size: 2.5rem;
}
h3, h4, h5, h6, .h3, .h4, .h5, .h6{
	font-size:1.75rem

}

.subhead {
	font-size: 1rem;
	font-family: 'proxima-nova';
	margin-bottom: 0.5rem;
	font-weight: 900;
	text-transform: uppercase;
}

.text-red {
	color: rgb(238, 49, 36);
}

.btn{
	font-family: "proxima-nova", "sans-serif";
	text-decoration:none;
}

.btn-secondary:hover {
	background-color: rgb(238, 49, 36) !important;
	border-color: rgb(238, 49, 36) !important;
	text-decoration:none;
}
.callout {
	padding: 20px;
	margin: 20px 0;
	border: 1px solid #eee;
	border-left-width: 5px;
	border-radius: 3px;
}		

.py-lg-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.service-hero {
  background:
    radial-gradient(circle at top right, rgba(238, 49, 36, 0.08), transparent 35%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.section-eyebrow-premium {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.section-eyebrow-premium-light {
  color: rgba(255, 255, 255, 0.75);
}

.hero-title-premium,
.section-title-premium,
.section-title-fullwidth {
  font-family: "proxima-nova", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--surface-dark);
  margin-bottom: 1rem;
}

.hero-title-premium {
  font-size: clamp(2.4rem, 4.2vw, 4.5rem);
  max-width: 11ch;
}

.section-title-premium {
  font-size: clamp(2rem, 3vw, 3.15rem);
  max-width: 14ch;
}

.hero-lead-premium {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--surface-dark);
  max-width: 36rem;
  margin-bottom: 1rem;
}

.section-copy-premium,
.section-intro-premium,
.feature-card-elevated p,
.mini-card-elevated p,
.note-panel p,
.cta-panel p {
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text-default);
}

.section-intro-premium {
  max-width: 52rem;
}

.hero-panel,
.feature-card-elevated,
.mini-card-elevated,
.note-panel,
.cta-panel,
.accordion,
.split-card,
.dark-panel {
  border-radius: var(--radius-lg);
}

.hero-panel,
.feature-card-elevated,
.mini-card-elevated,
.note-panel,
.cta-panel,
.accordion,
.split-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  padding: 2rem;
}

.panel-kicker,
.mini-card-title,
.feature-card-title {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: var(--surface-dark);
}

.panel-kicker {
  display: block;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.feature-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.85rem;
}

.mini-card-title {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
}

.checklist,
.plain-list,
.ordered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li,
.plain-list li,
.ordered-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  line-height: 1.55;
  color: var(--surface-dark);
}

.checklist li:last-child,
.plain-list li:last-child,
.ordered-list li:last-child {
  margin-bottom: 0;
}

.checklist li::before,
.plain-list li::before,
.ordered-list li::before {
  position: absolute;
  top: 0.85rem;
  left: 0;
  content: "";
  border-radius: 50%;
}
.checklist li strong,
.plain-list li strong,
.ordered-list li strong {
  display: inline;
  margin-right: 0.35rem;
}

/* checklist bullet */
.checklist li::before {
  width: 0.85rem;
  height: 0.85rem;
  background: var(--site-accent);
  box-shadow: 0 0 0 0.2rem rgba(238, 49, 36, 0.12);
}

/* plain list bullet */
.plain-list li::before {
  width: 0.55rem;
  height: 0.55rem;
  top: 0.58rem;
  background: rgba(17, 24, 39, 0.3);
}

/* ordered list */
.ordered-list {
  counter-reset: item;
}

.ordered-list li {
  counter-increment: item;
  padding-left: 2rem;
}

.ordered-list li::before {
  content: counter(item);
  width: 1.4rem;
  height: 1.4rem;
  top: 0.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  background: rgba(17, 24, 39, 0.06);
  color: var(--surface-dark);
 padding-bottom: .25em;
}

.ordered-list--accent li::before {
  background: var(--site-accent);
  color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(238, 49, 36, 0.12);
}

.proof-strip {
  background: #fff;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.proof-item {
  font-family: "proxima-nova", sans-serif;
  font-weight: 700;
  color: var(--surface-dark);
  padding: 0.75rem 0;
}

section.section-band-light, section.section-band-dark, section.service-hero {
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.section-band-light {
  background: var(--surface-light);
}

.section-band-dark {
	background: linear-gradient(135deg, #131a28 0%, #1a2436 100%);
}

.dark-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
}

.checklist-light li {
  color: #fff;
}

.checklist-light li::before {
  background: var(--site-accent);
  box-shadow: 0 0 0 0.2rem rgba(238, 49, 36, 0.2);
}

.media-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.media-card img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.feature-card-elevated,
.mini-card-elevated {
  padding: 1.5rem;
  height: 100%;
}

.note-panel {
  padding: 1.25rem 1.5rem;
  font-weight: 500;
}

.split-card {
  overflow: hidden;
}

.split-card-body {
  padding: 1.75rem;
  height: 100%;
}

.split-card-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
}

.blockquote-accent {
  margin-top: 2rem;
  padding-left: 1.25rem;
  border-left: 4px solid var(--site-accent);
  font-size: 1.2rem;
  line-height: 1.6;
  color: #fff;
  max-width: 46rem;
}

.cta-band {
  background:
    radial-gradient(circle at center top, rgba(238, 49, 36, 0.08), transparent 40%),
    #fff;
}

.cta-panel {
  max-width: 56rem;
  padding: 2.5rem 2rem;
}

.cta-panel .section-title-premium,
.cta-panel .section-intro-premium,
.cta-panel p {
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--site-accent);
  border-color: var(--site-accent);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #d92a1f;
  border-color: #d92a1f;
}
/* Market Cards */ .market-card { height: 100%; background: #fff; border: 1px solid rgba(0, 0, 0, 0.08); border-radius: 1rem; box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; } .market-card:hover { transform: translateY(-2px); box-shadow: 0 0.85rem 1.75rem rgba(0, 0, 0, 0.08); } .market-card-body { padding: 1.5rem; } .market-card-title { font-size: 1.125rem; line-height: 1.3; margin-bottom: 0.75rem; } .market-card-text { margin-bottom: 0; line-height: 1.65; }/* Service Cards */ .service-card { border-radius: 1rem; overflow: hidden; background: #fff; } .service-card-img { aspect-ratio: 16 / 9; object-fit: cover; } .service-card-body { padding: 1.5rem; } .service-label { font-size: 1.1rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em;} .service-intro { margin-bottom: 0.6rem; line-height: 1.65; } .service-kicker { font-weight: 600; margin-bottom: 0.6rem; } .service-list { padding-left: 1.1rem; margin-bottom: 0; } .service-list li { margin-bottom: 0.45rem; line-height: 1.5; padding-left: 0.1rem; } .service-list li:last-child { margin-bottom: 0; }
.feature-split-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.feature-split-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.feature-split-card__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.feature-split-card__content {
  padding: 2.5rem 2rem;
}

.feature-split-card__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "proxima-nova", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.feature-split-card__title {
  font-family: "proxima-nova", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--surface-dark);
  font-size: clamp(2.25rem, 4vw, 4rem);
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.feature-split-card__copy {
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text-default);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.feature-split-card__copy:last-of-type {
  margin-bottom: 2rem;
}

.feature-split-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.feature-split-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  line-height: 1.55;
  color: var(--surface-dark);
}

.feature-split-card__list li::before {
  content: "";
  flex: 0 0 auto;
  width: 0.85rem;
  height: 0.85rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--site-accent);
  box-shadow: 0 0 0 0.2rem rgba(238, 49, 36, 0.12);
}

.feature-split-card__media {
  min-height: 100%;
}

.feature-split-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.feature-split-card__caption {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.feature-image {
  position: relative;
}

.feature-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.feature-image-frame {
  position: relative;
  display: inline-block;
}

.feature-image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -24px;
  width: 100%;
  height: 100%;
  background: #eef2f6;
  border-radius: 0.75rem;
  z-index: 0;
}

.feature-image-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-soft);
}
.service-card-modern {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.service-card-modern .service-card-img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-card-modern .service-card-body {
  padding: 1.5rem;
}

.service-card-modern .service-label {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.service-card-modern .service-intro {
  margin-bottom: 1rem;
  line-height: 1.65;
  color: var(--text-default);
}

.service-card-modern .service-kicker {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--site-accent);
}

.service-list-modern {
  list-style: none;
  padding: 0 0 0 1.25rem;
  margin: 0;
  border-left: 3px solid rgba(238, 49, 36, 0.25);
}

.service-list-modern li {
  margin-bottom: 0.65rem;
  line-height: 1.45;
  color: var(--surface-dark);
  position: relative;
}

.service-list-modern li:last-child {
  margin-bottom: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
margin-top: 0.6rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  flex: 0 0 1.25rem;
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 0.15rem;
}
.feature-list--check li::before {
  content: "✓";
  background: var(--site-accent);
  color: #fff;
}
.feature-list--accent li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--site-accent);
  margin-top: 0.45rem;
}
.cmmc-pathway__urgency {
  background: #0f172a;
  color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 1rem 2.5rem rgba(15, 23, 42, 0.12);
}

.cmmc-pathway__urgency .section-eyebrow,
.cmmc-pathway__urgency .section-heading,
.cmmc-pathway__urgency .lead-intro,
.cmmc-pathway__urgency .intro-measure {
  color: #fff;
}

.cmmc-pathway__summary-card,
.cmmc-step__card,
.cmmc-proof-card,
.cmmc-pathway__cta {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.08);
}

.cmmc-pathway__summary-list {
  margin: 0;
  padding-left: 1.25rem;
}

.cmmc-step {
  position: relative;
}

.cmmc-step__meta {
  position: sticky;
  top: 6rem;
}

.cmmc-step__number {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(244, 121, 32, 0.22);
  margin-bottom: 0.75rem;
}

.cmmc-step__card {
  border-left: 4px solid #f47920;
}

.cmmc-step__consequence {
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background: #fff5f5;
}

.cmmc-proof-card {
  height: 100%;
}

.cmmc-pathway__cta {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 2rem 2rem;
  background: var(--site-accent);
  box-shadow: 0 20px 50px rgba(238, 49, 36, 0.25);
}
@media (max-width: 991.98px) {
  .cmmc-step__meta {
    position: static;
  }

  .cmmc-step__number {
    font-size: 2rem;
  }

  .cmmc-pathway__urgency,
  .cmmc-pathway__summary-card,
  .cmmc-step__card,
  .cmmc-proof-card,
  .cmmc-pathway__cta {
    padding: 1.25rem;
  }
	 .cmmc-step__meta {
    position: static;
  }

  .cmmc-step__number {
    font-size: 2rem;
  }

  .cmmc-pathway__urgency,
  .cmmc-pathway__summary-card,
  .cmmc-step__card,
  .cmmc-proof-card,
  .cmmc-pathway__cta {
    padding: 1.25rem;
  }
}
@media (min-width: 768px) {
  .feature-split-card__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1.5rem;
  }
}

@media (min-width: 992px) {
  .feature-split-card__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.95fr);
  }

  .feature-split-card__content {
    padding: 3rem 3rem 2.75rem;
  }

  .feature-split-card__media img {
    min-height: 100%;
  }
 .feature-split-card__list {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    row-gap: 1.5rem;
  }
  .hero-panel {
    padding: 2.25rem;
  }

  .feature-card-elevated,
  .mini-card-elevated {
    padding: 1.75rem;
  }

  .split-card-body {
    padding: 2rem;
  }
		service-card .card-body, .feature-card, .stat-card, .project-highlight, .quote-panel, .closing-panel { padding: 1.75rem; }
}



/* Servivces Pages Customization */
a {
	color: #ee3124;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

.container {
	max-width: 960px;
}

/* Wordpress Editor */
.alignleft, .alignright {
	display: block;
	margin: 0 auto;
	text-align: center;
}

.aligncenter {
	display: block;
	text-align: center;
}

figure {
	width: 100% !important;
}

p + h3 {
  clear: both;
}

/* Special for Our Story history page */
.page-id-138 {
	h3 {
		margin: 5rem 0 1rem 0;
	}
}

ul li, ol li {
	padding: .5rem 1rem 0.5rem 0;
}

ol.ow-bold li {
	font-weight: normal;

	&::marker {
		font-weight: bold;
	}
}

figcaption {
	font-size: .8rem;
	font-style: italic;
}

.author {
    font-family: "proxima-nova";
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 1rem;
}

.faqs {
	h3 {
		margin-top: 2rem;
		margin-bottom: .5rem;
	}
}

.accordion {
	margin-top: 0;

	h2 {
		margin: 0;
	}

	.accordion-button:not(.collapsed) {
		background-color: #ee3124;
		border: 0;
		color: #fff;
	}

	.accordion-button:not(.collapsed)::after {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
	}
}

.navbar {
	a {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 18px;
        font-family: "proxima-nova", "sans-serif";
		padding-right: 1.5rem !important;
	}

	a:hover {
		text-decoration: none;
	}

	.depth_0 a {
		color: #000 !important;
		text-transform: none;
	}

	.depth_0 a:hover {
		color: #ee3124 !important;
	}

	.nav-link:focus-visible {
		box-shadow: 0 0 0 0;
	}

	.dropdown-item.active, .dropdown-item:active {
		background-color: initial;
	}

	#menu-footer {
		flex-wrap: nowrap;

		li {
			padding: 0;

			a {
				padding-right: 1.2rem !important;
			}
		}
	}

	/* Seperate design & consulting */
	@media (min-width: 768px) {
		#menu-menu-1 li:nth-of-type(2) .dropdown-menu.show {
			display: grid;
			grid-template-columns: 1fr 1fr;
			margin-left: -10rem;

			li:nth-of-type(1)::before {
				content: "DESIGN";
				border-bottom: 1px solid #c0c0c0;
				display: block;
				font-family: proxima-nova;
				font-weight: bold;
				font-size: 1rem;
				margin: 0.5rem 1rem 0.5rem 1rem;
			}

			li:nth-of-type(2)::before {
				content: "CONSULTING";
				border-bottom: 1px solid #c0c0c0;
				display: block;
				font-family: proxima-nova;
				font-weight: bold;
				font-size: 1rem;
				margin: 0.5rem 1rem 0.5rem 1rem;
			}
		}
	}
}

.guernsey-topnav {
	flex-direction: column-reverse;
	align-items: initial !important;
	padding: 0;

	@media (min-width: 768px) {
		flex-direction: row-reverse;

		.custom-logo-link img {
			margin-top: 1rem;
		}
	}

	.guernsey-menu {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
}

.page-social-icons {
	display: inline-block;
	list-style: none;
	margin: 0;
	padding: 0;

	li {
		display: inline-block;
		padding-top: 0;
	}

	img {
		margin: 0 0.5rem 1rem 0.5rem;
		width: 18px;
	}
}

.site-header {
	padding-left: 1rem;
	padding-right: 1rem;

	/* Moves hidden elements for mobile to their own line after logo & hambuger */
	.navbar {
		flex-wrap: wrap;

		a:nth-child(-n+2) {
  			order: 1;
			flex: 0 0 75%;
		}
	}

	.custom-logo {
		height: auto;
		margin-right: 1rem;
		width: 150px;
	}

	.search-trigger {
		padding-top: 0.6rem;

		a {
			font-family: proxima-nova, "sans-serif";
			font-size: 15px;
			font-weight: 700;
			text-transform: uppercase;
		}

		img {
			height: 25px;
			width: 25px;
		}
	}

	a {
		color: #ee3124 !important;
        transition: color .3s ease;
	}

	.nav-link {
		padding-top: 16px;
		padding-bottom: 0;
	}

	.dropdown-toggle::after {
		display: none;
	}
}

footer {
	background: #636262;
	margin-top: 2rem;
	padding: 1rem;

	.navbar {
		a {
			color: #858888;
			font-size: 0.7rem;
		}

		a:hover {
			color: #fff;
		}
	}

	.site-info {
		display: flex;
		flex-direction: column;
		justify-content: center;

		.navbar-nav {
			flex-direction: row;
			flex-wrap: wrap;
			justify-content: space-evenly;
		}
	}

	.social-icons {
		display: inline-block;
		list-style: none;
		margin-bottom: 0;
		text-align: center;

		li {
			display: inline-block;
  			margin-right: 10px;
		}

		img {
			margin: 1rem 0.5rem 1rem 0.5rem;
			width: 18px;
		}
	}
}

.hero-image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin-left: calc(var(--bs-gutter-x) * -.5);
    margin-right: calc(var(--bs-gutter-x) * -.5);
	min-height: 400px;
}

.related-items {	
	display:block;
	margin-top: 5rem;

	@media (min-width: 768px) {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1rem;
	}

	.item {
		box-shadow: 0px 1px 12px rgba(0, 0, 0, .12);
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: 306px;

		.text-box {
			padding: 1rem 1.5rem 2rem 1.5rem;

			a, strong {
				color: black;
				display: block;
				font-family: 'proxima-nova';
				font-size: 1.5rem;
				font-weight: 700;
				line-height: 1.7rem;
			}

			.eyebrow {
				color: rgb(238, 49, 36);
				display: block;
				font-size: 1rem;
				font-family: 'proxima-nova';
				margin-bottom: 0.5rem;
				font-weight: 900;
				text-transform: uppercase;
				
			}
			.tagline {
				color: rgb(238, 49, 36);
				display: block;
				font-family: 'proxima-nova';
				font-size: 1rem;
				margin-bottom: 0.5rem;
				
			
				
			}
		}

		img {
			width: calc(100vw - 3rem);
			height: auto;

			@media (min-width: 768px) {
				width: 100%;
			}
		}

		@media (min-width: 768px) {
			min-height: 406px;
		}
	}
}

.related-links {
	background-color: #f7f7f7;
	margin-left: calc(var(--bs-gutter-x) * -.5);
	margin-right: calc(var(--bs-gutter-x) * -.5);
	padding: 1.5rem 0 1.5rem 0;

	h2 {
		color: #b3b3b3;
		font-size: 1.2rem;
		margin-top: 2rem;
	}

	a {
		border-radius: 50px;
		display: inline-block;
		font-size: .875em;
		text-transform: uppercase;
		color: #636262;
		letter-spacing: 1px;
		font-weight: 900;
		transition: transform .25s ease;
		padding: 1rem;
		background-color: #fff;
		border: none;
		color: #333;
		box-shadow: 0px 1px 12px rgba(0, 0, 0, .12);
		transform: perspective(1px) scale(1);
		margin: .5rem;
		font-family: proxima-nova;

		&:hover {
			color: rgb(238, 49, 36);
			text-decoration: none;
		}
	}
}

/* Team Page */
.page-template-team {
	h2 {
		text-transform: uppercase;
		color: #b3b3b3;
		letter-spacing: 2px;
		font-size: 1.5em;
		margin: 5rem 0 2rem 0;
	}

	.member-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}

	.team-member {
		box-shadow: 0px 1px 12px rgba(0, 0, 0, .12);

		a {
			text-decoration: none;
		}

		.text-box {
			padding: 1rem;
			text-align: center;

			h3, .h3 {
				color: rgb(238, 49, 36);
				font-size: 1.3rem;
				margin-bottom: 0;
				text-transform: none;
			}

			span {
				color: #000;
				font-family: 'proxima-nova';
				font-size: 0.8rem;
				font-weight: bold;
				line-height: 0.9rem;
				text-transform: uppercase;
			}
		}
	}
}

.single-team {
	.team-header img {
		height: auto;
		margin-bottom: 2rem;
		width: 100%;
	}

	h1, .h1 {
		font-size: 3rem !important;
		margin-bottom: 0;
	}

	h2, .h2 {
		font-size: 1.5rem !important;
		margin-top: 0;
		margin-bottom: 2rem;
	}

	h3, .h3 {
		font-size: 1.125rem;
	}

	.sidebar {
		align-content: start;
		display: grid;
		grid-template-columns: 1fr;
		padding-left: 2rem;
	}
}

.single-projects {


		section {
			flex-direction:column-reverse;
		}

		.sidebar {
			p {
				margin-bottom: 2rem;
			}
			h3 {
				color: rgb(238, 49, 36);
				font-size: 1rem;
				font-family: 'proxima-nova';
				margin-bottom: 0;
				text-transform: none;
				text-transform: uppercase;
			}
	}
}

/* Homepage */
.home {
	.starburst-container {
	position: relative;
	display: inline-block;

	.map-svg {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		.hover-shape {
			fill: rgba(255, 255, 255, 0); /* Transparent by default */
			transition: fill 0.3s ease;
			cursor: pointer;
		}

		.hover-shape:hover {
			fill: rgba(255, 255, 0, 0.4); /* Yellow tint on hover */
			stroke: yellow;              /* Optional border */
			stroke-width: 2;
		}
	}

	.side-text {
		display: flex;
		flex-direction: column;
		justify-content: center;

		a {
			border: 1px solid #ee3124;
			border-radius: 50px;
			display: inline-block;
			font-family: "proxima-nova";
			font-weight: bold;
			margin: 1rem 0 1rem 0;
			padding: 0.6rem 2rem;
			text-transform: uppercase;
		}
	}

	.graybar {
		background-color: #e8e8e8;
		padding: 4rem 0 4rem 0;
		
		img {
			height: auto;
			width: 100%;
		}
	}
}

/* Landing Page */
.page-template-landing-page {
	.landing-content{
		padding-right: 3rem;
	}

	h1 {
		color: #ee3124;
		font-size: 4.5rem;
		margin-bottom: 0;
	}

	h2 {
		font-size: 1.75rem;
		margin-top: 0;
	}

	aside {
		padding-left: 3rem;
		border-left: solid thin #ee3124;

		h3, .h3 {
			font-size: 1.2rem;
		}

		hr {
			color: #ee3124;
			opacity: 1;
		}
	}

	.slick-slide img {
		width: 100% !important;
	}

}

/* Changes for desktop */
@media (min-width: 768px) {
	h2 {
		font-size: 2.5rem;
	}

	.site-header {
		.custom-logo {
			width: 200px;
		}
	}

    .hero-image {
        min-height: 500px;
    }

	footer {
		.navbar {
			a {
				font-size: 1rem;
			}
		}

		.social-icons {
			padding-left: 12rem;
		}

		.site-info {
			flex-direction: row;
		}
	}

	/* Wordpress Editor */
	.alignleft {
		float: left;
		margin: 0.5rem 1rem 0.5rem 0;
	}

	.alignright {
		float: right;
		margin: 0.5rem 0 0.5rem 1rem;
	}

	.single-team {
		.sidebar {
			grid-template-columns: 1fr 1fr;
			grid-column-gap: 1rem;
		}
	}

	.single-projects {
		section {
			flex-direction:row;
		}
	}
}

/* Add to your theme's CSS */
.infinite-scroll-loading {
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

/* Ensure touch targets are large enough */
.item {
    min-height: 120px; /* Ensures good touch target size */
}

/* Add some spacing for mobile */
@media (max-width: 768px) {
    .related-items-container {
        padding: 15px 10px;
    }
    
    .item {
        margin-bottom: 15px;
    }
    
    .infinite-scroll-loading {
        padding: 15px;
    }
}

/* Slick Slider slideshow */
.slick-slider {
	.slick-next {
		right: 5%;

		&::before {
			transform: rotate(45deg);
		}
	}

	.slick-prev {
		left: 5%;

		&::before {
			transform: rotate(-135deg);
		}
	}

	.slick-arrow {
		position: absolute;
		top: 50%;
		z-index: 20;
		appearance: none;
		width: 60px;
		height: 60px;
		border: none;
		background: rgba(0,0,0,0);
		font-size: 0;
		opacity: .7;
		transition: opacity .3s ease;
		transform: translateY(-50%);

		&::before {
			border-style: solid;
			border-width: .25em .25em 0 0;
			border-color: #fff;
			content: "";
			display: inline-block;
			height: 30px;
			left: .15em;
			position: relative;
			top: .15em;
			vertical-align: top;
			width: 30px;
			font-size: 24px;
		}
	}

	.slick-dots {
		position: absolute;
		width: 80%;
		bottom: 30px;
		display: flex !important;
		justify-content: center;
		align-items: center;
		padding: 0;
		margin: 0 auto;
		left: 50%;
		transform: translateX(-50%);

		li {
			list-style-type: none;
		}
	
		.slick-active button {
			opacity: 1
		}
	
		button {
			width: 35px;
			height: 3px;
			background-color: #fff;
			border: none;
			appearance: none;
			font-size: 0;
			margin: 0 5px;
			opacity: .5;
			transition: opacity .3s ease;
		}
	}

	.slick-slide {
		position: relative;
		width: 100%;

		.full-slide-link {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			z-index: 3
		}

		img {
			aspect-ratio: auto;
			width: 100vw;
		}
	}
}

/* WordPress */
.wp-block-button__link {
	border: 1px solid #ee3124;
    background-color: #fff;
    color: #ee3124;
	font-family: "proxima-nova";
    font-weight: bold;
	text-decoration: none !important;

	&:hover {
		background-color: #ee3124;
		color: #fff;
	}
}

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}
