.mm-authority-team-widget {
	margin: 2.5rem 0;
	padding: clamp(1.5rem, 4vw, 2rem);
	border-radius: var(--mm-radius-xl, 1.5rem);
	background: var(--mm-blue-50, #eef5ff);
	border: 1px solid var(--mm-border, #dce4ef);
}

.mm-authority-team-widget__inner {
	display: grid;
	gap: 1.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.mm-authority-team-widget__inner {
		grid-template-columns: 160px 1fr;
	}
}

.mm-authority-team-widget__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: var(--mm-radius-lg, 1rem);
	object-fit: cover;
}

.mm-authority-team-widget__name {
	margin: 0 0 0.35rem;
	font-size: 1.35rem;
}

.mm-authority-team-widget__role {
	margin: 0 0 0.75rem;
	color: var(--mm-text-muted, #64748b);
}

.mm-authority-team-widget__bio {
	margin: 0 0 0.75rem;
}

.mm-authority-team-widget__links {
	margin: 0;
	font-size: 0.9375rem;
}

.mm-authority-location-card,
.mm-authority-cta,
.mm-authority-faq {
	margin: 2.5rem 0;
	padding: clamp(1.5rem, 4vw, 2rem);
	border-radius: var(--mm-radius-xl, 1.5rem);
	border: 1px solid var(--mm-border, #dce4ef);
	background: #fff;
}

.mm-authority-cta--report {
	background: linear-gradient(135deg, var(--mm-navy-900, #0b1d39), var(--mm-blue-800, #123f8c));
	color: #fff;
}

.mm-authority-cta--report h2,
.mm-authority-cta--report p {
	color: rgba(255, 255, 255, 0.92);
}

.mm-authority-cta--csuite {
	background: var(--mm-surface-soft, #f8fbff);
}

/* Local Business Spotlight */
.mm-spotlight {
	margin: 2.5rem 0;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	border-radius: var(--mm-radius-xl, 1.5rem);
	border: 1px solid var(--mm-border, #dce4ef);
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 42%);
	box-shadow: var(--mm-shadow-sm, 0 2px 8px rgba(11, 29, 57, 0.06));
}

.mm-spotlight__header {
	margin-bottom: 1.25rem;
}

.mm-spotlight__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--mm-blue-700, #1553b7);
}

.mm-spotlight__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	color: var(--mm-navy-900, #0b1d39);
}

.mm-spotlight__lead {
	margin: 0;
	color: var(--mm-text-muted, #64748b);
	font-size: 0.95rem;
}

.mm-spotlight__layout {
	width: 100%;
}

.mm-spotlight__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	table-layout: fixed;
}

.mm-spotlight__table,
.mm-spotlight__table tbody {
	display: block;
	width: 100%;
}

.mm-spotlight__row {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.75rem;
	align-items: stretch;
}

.mm-spotlight__cell {
	display: block;
	vertical-align: top;
	padding: 0;
	min-width: 0;
}

.mm-spotlight__cell--media {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: stretch;
}

.mm-spotlight__cell--info {
	width: auto;
	padding-left: 0;
	vertical-align: top;
}

.mm-spotlight__media-stack {
	display: grid;
	grid-template-rows: 1fr 1fr;
	gap: 25px;
	width: auto;
	height: 100%;
	min-height: 0;
	padding-bottom: 25px;
	box-sizing: border-box;
	justify-items: center;
	align-content: center;
}

.mm-spotlight__media-stack .mm-spotlight__gallery,
.mm-spotlight__media-stack .mm-spotlight__map-panel {
	height: 100%;
	width: auto;
	max-width: 100%;
	max-height: 100%;
	aspect-ratio: 1 / 1;
	justify-self: center;
	align-self: center;
	min-height: 0;
	min-width: 0;
}

.mm-spotlight__media-stack .mm-spotlight__gallery {
	position: relative;
}

.mm-spotlight__media-stack .mm-spotlight__slides {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.mm-spotlight__media-stack .mm-spotlight__slide img {
	width: 100%;
	height: 100%;
}

.mm-spotlight__media-stack .mm-spotlight__map-panel {
	display: flex;
	flex-direction: column;
}

.mm-spotlight__media-stack .mm-spotlight__iframe-wrap--map {
	flex: 1 1 auto;
	min-height: 0;
}

.mm-spotlight__gallery {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	border-radius: var(--mm-radius-lg, 1rem);
	overflow: hidden;
	border: 1px solid var(--mm-border, #dce4ef);
	box-shadow: var(--mm-shadow-sm, 0 2px 8px rgba(11, 29, 57, 0.06));
	background: var(--mm-blue-50, #f3f7ff);
}

.mm-spotlight__gallery[hidden] {
	display: none !important;
}

.mm-spotlight__slides {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background: var(--mm-blue-50, #f3f7ff);
}

.mm-spotlight__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 0.65s ease;
	pointer-events: none;
	border-radius: inherit;
	overflow: hidden;
}

.mm-spotlight__slide.is-active {
	opacity: 1;
	z-index: 1;
	pointer-events: auto;
}

.mm-spotlight__slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.35s ease;
}

.mm-spotlight__slide img.is-ready {
	opacity: 1;
}

.mm-spotlight__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0.4rem;
	display: flex;
	justify-content: center;
	gap: 0.35rem;
	z-index: 2;
}

.mm-spotlight__dot {
	width: 0.45rem;
	height: 0.45rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.55);
	cursor: pointer;
}

.mm-spotlight__dot.is-active {
	background: #fff;
	box-shadow: 0 0 0 2px rgba(11, 29, 57, 0.18);
}

.mm-spotlight__gbp-card {
	background: #fff;
	border: 1px solid var(--mm-border, #dce4ef);
	border-radius: var(--mm-radius-lg, 1rem);
	padding: 0 0 25px;
	box-shadow: var(--mm-shadow-sm, 0 2px 8px rgba(11, 29, 57, 0.06));
	overflow: hidden;
	height: 100%;
	min-height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

.mm-spotlight__info-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.mm-spotlight__info-table th,
.mm-spotlight__info-table td {
	padding: 0.55rem 0.75rem;
	border-bottom: 1px solid var(--mm-border, #dce4ef);
	text-align: left;
	vertical-align: top;
}

.mm-spotlight__info-table tr:last-child th,
.mm-spotlight__info-table tr:last-child td {
	border-bottom: 0;
}

.mm-spotlight__info-table th {
	width: 34%;
	font-weight: 600;
	color: var(--mm-navy-900, #0b1d39);
	background: var(--mm-surface-soft, #f8fbff);
}

.mm-spotlight__info-table td {
	color: var(--mm-text-muted, #64748b);
	line-height: 1.5;
}

.mm-spotlight__info-table td a {
	color: inherit;
	text-decoration: none;
}

.mm-spotlight__info-table td a:hover {
	color: var(--mm-blue-600, #1c65d8);
}

.mm-spotlight__info-table__head th {
	width: auto;
	background: #fff;
	border-bottom: 1px solid var(--mm-border, #dce4ef);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--mm-navy-900, #0b1d39);
	padding: 0.75rem;
}

.mm-spotlight__info-name {
	font-size: 1rem;
	font-weight: 600;
	color: var(--mm-navy-900, #0b1d39) !important;
}

.mm-spotlight__info-name a {
	color: inherit;
}

.mm-spotlight__info-name a:hover {
	color: var(--mm-blue-600, #1c65d8);
}

.mm-spotlight__google-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.65rem;
	height: 1.65rem;
	margin-right: 0.45rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid #dadce0;
	color: #4285f4;
	font-weight: 700;
	font-size: 0.85rem;
	vertical-align: middle;
	box-shadow: 0 1px 2px rgba(60, 64, 67, 0.15);
}

.mm-spotlight__rating {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 0.4rem;
	margin: 0;
	font-size: 0.875rem;
	color: var(--mm-navy-900, #0b1d39);
}

.mm-spotlight__stars {
	color: #fbbc04;
	letter-spacing: 0.05em;
	font-size: 0.95rem;
}

.mm-spotlight__review-count {
	color: var(--mm-text-muted, #64748b);
}

.mm-spotlight__description {
	margin: 0;
}

.mm-spotlight__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	padding: 0.75rem;
	margin-top: auto;
	border-top: 1px solid var(--mm-border, #dce4ef);
	background: var(--mm-surface-soft, #f8fbff);
}

.mm-spotlight__map-panel {
	background: #fff;
	border: 1px solid var(--mm-border, #dce4ef);
	border-radius: var(--mm-radius-lg, 1rem);
	overflow: hidden;
	box-shadow: var(--mm-shadow-sm, 0 2px 8px rgba(11, 29, 57, 0.06));
}

.mm-spotlight__map-label {
	padding: 0.65rem 0.9rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--mm-text-muted, #64748b);
	border-bottom: 1px solid var(--mm-border, #dce4ef);
	background: var(--mm-surface-soft, #f8fbff);
}

.mm-spotlight__iframe-wrap {
	position: relative;
	width: 100%;
	background: #e8eef5;
}

.mm-spotlight__iframe-wrap--map {
	flex: 1 1 auto;
	min-height: 0;
}

.mm-spotlight__iframe-wrap iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.mm-spotlight__map {
	display: block;
	width: 100%;
	height: 100%;
}

.mm-spotlight__link--google,
.mm-spotlight__link--apple {
	display: none;
}

.mm-spotlight--google .mm-spotlight__link--google,
.mm-spotlight--apple .mm-spotlight__link--apple {
	display: inline-flex;
}

.mm-authority-location-card--placeholder {
	background: #fff7ed;
	border-color: #fed7aa;
}

.mm-authority-location-card__meta {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.mm-authority-location-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1rem;
}

.mm-authority-faq__list {
	display: grid;
	gap: 0.75rem;
}

.mm-authority-faq__item {
	border: 1px solid var(--mm-border, #dce4ef);
	border-radius: 0.85rem;
	padding: 0.35rem 1rem;
	background: #fff;
}

.mm-authority-faq__item summary {
	cursor: pointer;
	font-weight: 600;
	padding: 0.65rem 0;
}

.mm-authority-faq__answer {
	padding-bottom: 0.85rem;
	color: var(--mm-text-muted, #5a6472);
}

@media (max-width: 767px) {
	.mm-spotlight__row {
		grid-template-columns: auto 1fr;
		gap: 0.5rem;
		align-items: stretch;
	}

	.mm-spotlight__cell--info {
		padding-left: 0;
	}

	.mm-spotlight__media-stack {
		gap: 25px;
		height: 100%;
	}

	.mm-spotlight__info-table,
	.mm-spotlight__info-table tbody,
	.mm-spotlight__info-table tr {
		display: block;
		width: 100%;
	}

	.mm-spotlight__info-table th,
	.mm-spotlight__info-table td {
		display: block;
		width: 100%;
	}

	.mm-spotlight__info-table th {
		border-bottom: 0;
		padding-bottom: 0.2rem;
	}

	.mm-spotlight__info-table td {
		padding-top: 0.15rem;
		padding-bottom: 0.75rem;
	}

	.mm-spotlight__info-table__head th {
		border-bottom: 1px solid var(--mm-border, #dce4ef);
		padding-bottom: 0.75rem;
		margin-bottom: 0;
	}

	.mm-authority-cta .mm-btn,
	.mm-authority-location-card__actions .mm-btn,
	.mm-spotlight__actions .mm-btn {
		width: 100%;
	}
}
