.dj-team-grid-section {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding: 88px 24px 0;
	background: var(--color-white);
	box-sizing: border-box;
	overflow: hidden;
}

.dj-team-grid-inner {
	width: min(1600px, 100%);
	max-width: 1600px !important;
	margin: 0 auto;
	box-sizing: border-box;
}

.dj-team-grid-header {
	margin: 0 0 48px;
}

.dj-team-grid-heading {
	max-width: 720px;
	color: var(--color-black);
	font-size: 61px;
	font-weight: 800 !important;
	line-height: 68px;
	letter-spacing: -1.22px;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.dj-team-grid-intro {
	max-width: 620px;
	color: var(--color-black);
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 32px;
}

.dj-team-grid-border {
	position: relative;
	margin: 0;
	width: 100%;
	height: 20px;
}

.dj-team-grid-border::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 47%;
	height: 4px;
	background: var(--color-black);
	transform: translateY(-50%);
}

.dj-team-grid-border img {
	position: absolute;
	right: 0;
	top: 35%;
	width: 24px;
	height: auto;
	display: block;
	transform: translateY(-50%);
}

.dj-team-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 64px 64px;
}

.dj-team-card {
	margin: 0;
}

.dj-team-card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 16px;
	overflow: hidden;
	background: var(--color-neutral-100);
}

.dj-team-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.dj-team-card-name {
	color: var(--color-black);
	font-size: 20px;
	font-weight: 800 !important;
	line-height: 28px;
	letter-spacing: -0.4px;
	margin: 0 0 4px;
}

.dj-team-card-region {
	color: var(--color-black);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin: 0 0 16px;
}

.dj-team-card-phone {
	color: var(--color-primary-500);
	font-size: 15px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.03px;
	margin: 0;
}

.dj-team-card-phone a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
}

.dj-team-card-phone a::before {
	content: "";
	width: 20px;
	height: 20px;
	flex: 0 0 16px;
	background-image: url('/wp-content/uploads/2026/06/Icon-L.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 0;
}

@media (max-width: 1135px) {
	.dj-team-grid-section {
		padding: 80px 40px 0;
	}

	.dj-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px 24px;
	}
}

@media (max-width: 767px) {
	.dj-team-grid-section {
		padding: 48px 16px 0;
	}

	.dj-team-grid-header {
		margin-bottom: 24px;
	}

	.dj-team-grid-heading {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.56px;
		margin-bottom: 8px;
	}

	.dj-team-grid-intro {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 16px;
	}

	.dj-team-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.dj-team-card-name {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: -0.36x;
	}

	.dj-team-card-region {
		margin: 0 0 8px;
	}

	.dj-team-card-phone {
		line-height: 20px;
	}
}

/* =============================
   Team Grid - Editor Styles
============================= */

.editor-styles-wrapper .dj-team-grid-section {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	padding: 88px 24px 0 !important;
	background: var(--color-white);
	box-sizing: border-box;
	overflow: hidden;
}

.editor-styles-wrapper .dj-team-grid-inner {
	width: 100% !important;
	max-width: 1600px !important;
	margin: 0 auto !important;
	box-sizing: border-box;
}

.editor-styles-wrapper .dj-team-grid-header {
	margin: 0 0 48px;
}

.editor-styles-wrapper .dj-team-grid-heading {
	max-width: 720px;
	color: var(--color-black);
	font-size: 61px;
	font-weight: 800 !important;
	line-height: 68px;
	letter-spacing: -1.22px;
	text-transform: uppercase;
	margin: 0 0 16px;
}

.editor-styles-wrapper .dj-team-grid-intro {
	max-width: 620px;
	color: var(--color-black);
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	margin: 0 0 32px;
}

.editor-styles-wrapper .dj-team-grid-border {
	position: relative;
	margin: 0;
	width: 100%;
	height: 20px;
}

.editor-styles-wrapper .dj-team-grid-border::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 47%;
	height: 4px;
	background: var(--color-black);
	transform: translateY(-50%);
}

.editor-styles-wrapper .dj-team-grid-border img {
	position: absolute;
	right: 0;
	top: 35%;
	width: 24px;
	height: auto;
	display: block;
	object-fit: initial;
	transform: translateY(-50%);
}

.editor-styles-wrapper .dj-team-grid {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 64px 64px;
}

.editor-styles-wrapper .dj-team-card {
	margin: 0;
}

.editor-styles-wrapper .dj-team-card-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 16px;
	overflow: hidden;
	background: var(--color-neutral-100);
}

.editor-styles-wrapper .dj-team-card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.editor-styles-wrapper .dj-team-card-name {
	color: var(--color-black);
	font-size: 20px;
	font-weight: 800 !important;
	line-height: 28px;
	letter-spacing: -0.4px;
	margin: 0 0 4px;
}

.editor-styles-wrapper .dj-team-card-region {
	color: var(--color-black);
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	margin: 0 0 16px;
}

.editor-styles-wrapper .dj-team-card-phone {
	color: var(--color-primary-500);
	font-size: 15px;
	font-weight: 600;
	line-height: 24px;
	letter-spacing: 0.03px;
	margin: 0;
}

.editor-styles-wrapper .dj-team-card-phone a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: inherit;
	text-decoration: none;
}

.editor-styles-wrapper .dj-team-card-phone a::before {
	content: "";
	width: 20px;
	height: 20px;
	flex: 0 0 16px;
	background-image: url('/wp-content/uploads/2026/06/Icon-L.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-right: 0;
}

@media (max-width: 1135px) {
	.editor-styles-wrapper .dj-team-grid-section {
		padding: 96px 40px 0 !important;
	}

	.editor-styles-wrapper .dj-team-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 48px 24px;
	}
}

@media (max-width: 767px) {
	.editor-styles-wrapper .dj-team-grid-section {
		padding: 48px 16px 0 !important;
	}

	.editor-styles-wrapper .dj-team-grid-header {
		margin-bottom: 24px;
	}

	.editor-styles-wrapper .dj-team-grid-heading {
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.56px;
		margin-bottom: 8px;
	}

	.editor-styles-wrapper .dj-team-grid-intro {
		font-size: 16px;
		line-height: 20px;
		margin-bottom: 16px;
	}

	.editor-styles-wrapper .dj-team-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.editor-styles-wrapper .dj-team-card-name {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: -0.36px;
	}

	.editor-styles-wrapper .dj-team-card-region {
		margin: 0 0 8px;
	}

	.editor-styles-wrapper .dj-team-card-phone {
		line-height: 20px;
	}
}