/* ==========================================================================
   THE SLEEP CENTER — STORE LOCATION PAGES
   ========================================================================== */

:root {
	--tsc-store-navy: #102b4e;
	--tsc-store-navy-deep: #081c33;
	--tsc-store-red: #b7292f;
	--tsc-store-red-dark: #922128;
	--tsc-store-cream: #f7f3ec;
	--tsc-store-white: #ffffff;
	--tsc-store-muted: #5e6873;
	--tsc-store-shadow: 0 18px 50px rgba(8, 28, 51, 0.12);
	--tsc-store-container: 1180px;
}


/* ==========================================================================
   BOX SIZING
   ========================================================================== */

.tsc-store-page,
.tsc-store-page *,
.tsc-store-page *::before,
.tsc-store-page *::after {
	box-sizing: border-box;
}


/* ==========================================================================
   GENESIS / GUTENBERG PAGE RESET
   ========================================================================== */

/*
 * Genesis Full Width Content removes the sidebar but can still constrain
 * the page content. Store pages use their own full-width layout.
 */

body:has(.tsc-store-page) .site-inner,
body:has(.tsc-store-page) .content-sidebar-wrap,
body:has(.tsc-store-page) .content,
body:has(.tsc-store-page) article.entry,
body:has(.tsc-store-page) .entry-content {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}


/*
 * Hide the standard Genesis page title.
 * The store hero contains the page H1.
 */

body:has(.tsc-store-page) article.entry > .entry-header {
	display: none;
}


/* ==========================================================================
   STORE PAGE STRUCTURE
   ========================================================================== */

.tsc-store-page {
	position: relative;
	left: 50%;
	width: 100vw;
	max-width: none !important;

	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/*
 * Allow our custom store layout to control widths rather than Gutenberg's
 * constrained Group layout.
 */

.tsc-store-page.is-layout-constrained,
.tsc-store-page .is-layout-constrained {
	max-width: none;
}


.tsc-store-container {
	width: min(calc(100% - 40px), var(--tsc-store-container));
	max-width: var(--tsc-store-container) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}


/* ==========================================================================
   STORE HERO
   ========================================================================== */

.tsc-store-hero {
	position: relative;
	width: 100%;
	max-width: none !important;
	overflow: hidden;
	margin: 0 !important;
	padding: clamp(60px, 7vw, 100px) 0 clamp(80px, 8vw, 120px);

	background:
		linear-gradient(
			90deg,
			rgba(8, 28, 51, 0.035) 1px,
			transparent 1px
		),
		linear-gradient(
			rgba(8, 28, 51, 0.035) 1px,
			transparent 1px
		),
		var(--tsc-store-cream);

	background-size: 34px 34px;
}


/*
 * Red / navy accent line across top of hero.
 */

.tsc-store-hero::before,
.tsc-store-hero::after {
	content: "";
	position: absolute;
	top: 0;
	height: 6px;
}

.tsc-store-hero::before {
	left: 0;
	width: 54%;
	background: var(--tsc-store-red);
}

.tsc-store-hero::after {
	right: 0;
	width: 46%;
	background: var(--tsc-store-navy);
}


/* ==========================================================================
   HERO COLUMNS
   ========================================================================== */

/*
 * Applied to the Gutenberg Columns block.
 */

.tsc-store-hero__columns.wp-block-columns {
	align-items: center !important;
	gap: clamp(38px, 6vw, 76px);
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}


.tsc-store-hero__columns > .wp-block-column {
	min-width: 0;
	margin: 0;
}


/* ==========================================================================
   HERO COPY
   ========================================================================== */

.tsc-store-hero__copy {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
}


/* Small heading above H1 */

.tsc-store-eyebrow {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1rem;

	color: var(--tsc-store-red);

	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.4;
	text-transform: uppercase;
}

.tsc-store-eyebrow::before {
	content: "★";
	font-size: 0.72rem;
}


/* Main hero heading */

.tsc-store-hero h1 {
	max-width: 720px;
	margin: 0 0 1.2rem;

	color: var(--tsc-store-navy-deep);

	font-size: clamp(2.7rem, 5.5vw, 5.3rem);
	line-height: 1.03;
	letter-spacing: -0.035em;
}


/* Intro paragraph */

.tsc-store-lead {
	max-width: 660px;
	margin: 0;

	color: var(--tsc-store-muted);

	font-size: clamp(1.05rem, 1.7vw, 1.22rem);
	line-height: 1.7;
}


/* ==========================================================================
   HERO BUTTONS
   ========================================================================== */

.tsc-store-btn-row.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.7rem;
}


.tsc-store-btn-row .wp-block-button {
	margin: 0;
}


.tsc-store-btn-row .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	min-height: 50px;
	padding: 0.78rem 1.3rem;

	border: 2px solid transparent;
	border-radius: 999px;

	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;

	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease,
		background-color 0.2s ease;
}


.tsc-store-btn-row .wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(8, 28, 51, 0.18);
}


/* Primary button */

.tsc-store-btn--primary .wp-block-button__link {
	background: var(--tsc-store-red);
	color: var(--tsc-store-white);
}

.tsc-store-btn--primary .wp-block-button__link:hover {
	background: var(--tsc-store-red-dark);
}


/* Secondary button */

.tsc-store-btn--secondary .wp-block-button__link {
	border-color: var(--tsc-store-navy);
	background: var(--tsc-store-white);
	color: var(--tsc-store-navy);
}


/* ==========================================================================
   HERO PHOTO COLUMN
   ========================================================================== */

.tsc-store-hero__media {
	width: 100%;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: visible !important;
}


/*
 * Gutenberg wrapper around the Custom HTML block.
 */

.tsc-store-hero__media > .wp-block-html {
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
}


/* ==========================================================================
   STORE HERO PHOTO
   ========================================================================== */

.tsc-store-photo {
	position: relative;

	width: min(100%, 510px);
	max-width: 510px;

	margin: 0 0 0 auto;

	overflow: visible;
}


.tsc-store-photo__image {
	display: block;

	width: 100%;
	max-width: none;
	height: auto;

	aspect-ratio: 1 / 1.05;

	margin: 0;

	border-radius: 30px 30px 105px 30px;

	box-shadow: var(--tsc-store-shadow);

	object-fit: cover;
	object-position: center;
}


/* ==========================================================================
   STORE HERO BADGE
   ========================================================================== */

.tsc-store-photo__badge {
	position: absolute;
	left: -54px;
	bottom: 34px;
	z-index: 10;

	display: flex;

	width: 142px;
	height: 142px;

	flex-direction: column;
	align-items: center;
	justify-content: center;

	margin: 0;
	padding: 18px;

	border: 7px solid var(--tsc-store-cream);
	border-radius: 50%;

	background: var(--tsc-store-navy);

	box-shadow: 0 12px 30px rgba(8, 28, 51, 0.22);

	color: var(--tsc-store-white);
	text-align: center;
}


.tsc-store-photo__badge span {
	display: block;
	margin: 0;

	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	line-height: 1.25;
	text-transform: uppercase;
}


.tsc-store-photo__badge strong {
	display: block;
	margin-top: 5px;

	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	line-height: 1.1;
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 900px) {

	.tsc-store-hero__columns.wp-block-columns {
		gap: 42px;
	}

	.tsc-store-photo {
		width: min(100%, 580px);
		max-width: 580px;

		margin-left: 0;
	}

	.tsc-store-photo__badge {
		left: 20px;
		bottom: 20px;
	}
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 620px) {

	.tsc-store-container {
		width: min(
			calc(100% - 28px),
			var(--tsc-store-container)
		);
	}


	.tsc-store-hero {
		padding-top: 52px;
		padding-bottom: 70px;
	}


	.tsc-store-hero h1 {
		font-size: clamp(2.45rem, 13vw, 4rem);
	}


	.tsc-store-photo {
		width: 100%;
		max-width: none;
	}


	.tsc-store-photo__image {
		aspect-ratio: 4 / 4.3;

		border-radius:
			24px 24px 70px 24px;
	}


	.tsc-store-photo__badge {
		left: 16px;
		bottom: 16px;

		width: 108px;
		height: 108px;

		padding: 12px;

		border-width: 5px;
	}


	.tsc-store-photo__badge span {
		font-size: 0.59rem;
	}


	.tsc-store-photo__badge strong {
		font-size: 0.95rem;
	}


	.tsc-store-btn-row.wp-block-buttons {
		display: grid;
		grid-template-columns: 1fr;
	}


	.tsc-store-btn-row .wp-block-button,
	.tsc-store-btn-row .wp-block-button__link {
		width: 100%;
	}
}

/* ==========================================================================
   STORE QUICK INFO
   ========================================================================== */

.tsc-store-quickinfo-wrap {
	position: relative;
	z-index: 5;
	margin-top: -48px !important;
}


/*
 * Gutenberg Columns block.
 */

.tsc-store-quickinfo.wp-block-columns {
	gap: 0;
	width: 100%;
	overflow: hidden;

	margin: 0 !important;

	border: 1px solid rgba(8, 28, 51, 0.08);
	border-radius: 20px;

	background: var(--tsc-store-white);

	box-shadow: var(--tsc-store-shadow);
}


.tsc-store-quickinfo > .wp-block-column {
	margin: 0;
	padding: 1.65rem 1.85rem;
}


/* Divider between columns */

.tsc-store-quickinfo > .wp-block-column + .wp-block-column {
	border-left: 1px solid #dce2e8;
}


/* Small red label */

.tsc-store-label {
	margin: 0 0 0.4rem !important;

	color: var(--tsc-store-red);

	font-size: 0.69rem;
	font-weight: 900;
	letter-spacing: 0.13em;
	line-height: 1.4;
	text-transform: uppercase;
}


/* Remove Gutenberg paragraph spacing */

.tsc-store-quickinfo__item > *:last-child {
	margin-bottom: 0;
}


.tsc-store-quickinfo__item p:not(.tsc-store-label),
.tsc-store-quickinfo__item a {
	color: var(--tsc-store-navy-deep);

	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.55;
}


.tsc-store-quickinfo__item a {
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}


.tsc-store-quickinfo__item a:hover {
	color: var(--tsc-store-red);
}


/* ==========================================================================
   QUICK INFO — MOBILE
   ========================================================================== */

@media (max-width: 781px) {

	.tsc-store-quickinfo.wp-block-columns {
		gap: 0;
	}

	.tsc-store-quickinfo > .wp-block-column + .wp-block-column {
		border-left: 0;
		border-top: 1px solid #dce2e8;
	}
}


@media (max-width: 620px) {

	.tsc-store-quickinfo-wrap {
		margin-top: -28px !important;
	}

	.tsc-store-quickinfo > .wp-block-column {
		padding: 1.3rem 1.4rem;
	}
}

/* ==========================================================================
   STORE STORY
   ========================================================================== */

.tsc-store-section {
	padding: clamp(72px, 8vw, 120px) 0;
}

.tsc-store-story {
	background: var(--tsc-store-white);
}


.tsc-store-story__columns.wp-block-columns {
	align-items: center !important;
	gap: clamp(42px, 7vw, 90px);
	margin: 0 !important;
}


/* ==========================================================================
   STORY COPY
   ========================================================================== */

.tsc-store-story__content {
	max-width: 680px;
	margin: 0 !important;
}

.tsc-store-story__content h2 {
	margin: 0 0 1.2rem;

	color: var(--tsc-store-navy-deep);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.tsc-store-story__content p:not(.tsc-store-eyebrow) {
	margin: 0 0 1rem;

	color: var(--tsc-store-muted);

	font-size: 1rem;
	line-height: 1.75;
}

.tsc-store-story__content p:last-child {
	margin-bottom: 0;
}


/* ==========================================================================
   STORY FACTS CARD
   ========================================================================== */

.tsc-store-story__facts {
	margin: 0 !important;
	padding: clamp(1.6rem, 4vw, 2.4rem);

	border-radius: 22px;

	background: var(--tsc-store-navy-deep);

	box-shadow: var(--tsc-store-shadow);

	color: var(--tsc-store-white);
}


.tsc-store-story__facts h3 {
	margin: 0 0 1.3rem;

	color: var(--tsc-store-white);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.15;
}


/* Individual fact rows */

.tsc-store-fact {
	margin: 0 !important;
	padding: 1rem 0;

	border-top: 1px solid rgba(255, 255, 255, 0.14);
}


.tsc-store-fact:first-of-type {
	border-top: 0;
	padding-top: 0;
}


.tsc-store-fact:last-child {
	padding-bottom: 0;
}


.tsc-store-fact > * {
	margin-top: 0;
	margin-bottom: 0;
}


.tsc-store-fact__value {
	margin: 0 0 0.2rem !important;

	color: #ffd6d8;

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.45rem, 2.8vw, 2rem);
	font-weight: 700;
	line-height: 1.15;
}


.tsc-store-fact p:not(.tsc-store-fact__value) {
	margin: 0;

	color: rgba(255, 255, 255, 0.76);

	font-size: 0.92rem;
	line-height: 1.5;
}


/* ==========================================================================
   STORY — MOBILE
   ========================================================================== */

@media (max-width: 781px) {

	.tsc-store-story__columns.wp-block-columns {
		gap: 36px;
	}

	.tsc-store-story__content {
		max-width: none;
	}

	.tsc-store-story__facts {
		width: 100%;
	}
}

/* ==========================================================================
   STORE PRODUCTS
   ========================================================================== */

.tsc-store-products {
	background: var(--tsc-store-cream);
}


/* Intro */

.tsc-store-products__intro {
	max-width: 760px;
	margin: 0 0 2.4rem !important;
}

.tsc-store-products__intro h2 {
	margin: 0 0 1rem;

	color: var(--tsc-store-navy-deep);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.tsc-store-products__intro p:not(.tsc-store-eyebrow) {
	margin: 0;

	color: var(--tsc-store-muted);

	font-size: 1.05rem;
	line-height: 1.7;
}


/* ==========================================================================
   PRODUCT COLUMNS
   ========================================================================== */

.tsc-store-products__columns.wp-block-columns {
	align-items: stretch !important;
	gap: 1.3rem;
	margin: 0 !important;
}


/* ==========================================================================
   PRODUCT CARDS
   ========================================================================== */

.tsc-store-product-card.wp-block-column {
	position: relative;

	display: flex;
	flex-direction: column;

	margin: 0 !important;
	padding: 1.75rem;

	border: 1px solid rgba(8, 28, 51, 0.1);
	border-radius: 18px;

	background: var(--tsc-store-white);

	box-shadow: 0 10px 30px rgba(8, 28, 51, 0.06);
}


.tsc-store-product-card h3 {
	margin: 0 0 0.75rem;

	color: var(--tsc-store-navy-deep);

	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	line-height: 1.15;
}


.tsc-store-product-card p {
	margin: 0 0 1rem;

	color: var(--tsc-store-muted);

	font-size: 0.95rem;
	line-height: 1.65;
}


.tsc-store-product-card p:last-child {
	margin-bottom: 0;
}


/* Small brand label */

.tsc-store-product-card__label {
	margin-top: auto !important;
	margin-bottom: 0.45rem !important;
	padding-top: 1.15rem;

	border-top: 1px solid #e7ebef;

	color: var(--tsc-store-red) !important;

	font-size: 0.69rem !important;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.4 !important;
	text-transform: uppercase;
}


/*
 * Brand list paragraph directly after the label.
 */

.tsc-store-product-card__label + p {
	color: var(--tsc-store-navy-deep);

	font-size: 0.9rem;
	font-weight: 700;
	line-height: 1.6;
}


/* Subtle red accent */

.tsc-store-product-card::before {
	content: "";

	position: absolute;
	top: 0;
	left: 1.75rem;

	width: 44px;
	height: 4px;

	border-radius: 0 0 4px 4px;

	background: var(--tsc-store-red);
}


/* ==========================================================================
   PRODUCT CARDS — MOBILE
   ========================================================================== */

@media (max-width: 781px) {

	.tsc-store-products__columns.wp-block-columns {
		gap: 1rem;
	}

	.tsc-store-product-card.wp-block-column {
		padding: 1.5rem;
	}
}

/* ==========================================================================
   LOCAL OWNERSHIP
   ========================================================================== */

.tsc-store-ownership {
	background: var(--tsc-store-navy-deep);
	color: var(--tsc-store-white);
}


.tsc-store-ownership__columns.wp-block-columns {
	align-items: center !important;
	gap: clamp(42px, 7vw, 90px);
	margin: 0 !important;
}

/* Remove Gutenberg/theme spacing outside Local Ownership */

.tsc-store-page > .tsc-store-ownership,
.tsc-store-ownership.wp-block-group {
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	margin-block-start: 0 !important;
	margin-block-end: 0 !important;
}

/* Remove Genesis spacing between the final store section and footer */

body:has(.tsc-store-page) .site-inner,
body:has(.tsc-store-page) .content-sidebar-wrap,
body:has(.tsc-store-page) .content,
body:has(.tsc-store-page) article.entry,
body:has(.tsc-store-page) .entry-content {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

body:has(.tsc-store-page) .site-footer {
	margin-top: 0 !important;
}
/* ==========================================================================
   OWNERSHIP COPY
   ========================================================================== */

.tsc-store-ownership__content {
	margin: 0 !important;
}


.tsc-store-ownership__content h2 {
	margin: 0 0 1.2rem;

	color: var(--tsc-store-white);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}


.tsc-store-ownership__content p:not(.tsc-store-eyebrow) {
	margin: 0 0 1rem;

	color: rgba(255, 255, 255, 0.8);

	font-size: 1rem;
	line-height: 1.75;
}


.tsc-store-ownership__content p:last-child {
	margin-bottom: 0;
}


/* Light eyebrow for dark backgrounds */

.tsc-store-eyebrow--light {
	color: #ffd6d8;
}


/* ==========================================================================
   OWNERSHIP CARD
   ========================================================================== */

.tsc-store-ownership__card {
	margin: 0 !important;
	padding: clamp(1.6rem, 4vw, 2.4rem);

	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 22px;

	background: rgba(255, 255, 255, 0.06);

	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
}


.tsc-store-ownership__card h3 {
	margin: 0 0 1.4rem;

	color: var(--tsc-store-white);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.45rem, 2.4vw, 2rem);
	line-height: 1.15;
}


/* ==========================================================================
   OWNERSHIP FACTS
   ========================================================================== */

.tsc-store-ownership__fact {
	margin: 0 !important;
	padding: 1rem 0;

	border-top: 1px solid rgba(255, 255, 255, 0.14);
}


.tsc-store-ownership__fact:first-of-type {
	border-top: 0;
	padding-top: 0;
}


.tsc-store-ownership__fact:last-child {
	padding-bottom: 0;
}


.tsc-store-ownership__fact > * {
	margin-top: 0;
	margin-bottom: 0;
}


.tsc-store-ownership__label {
	margin: 0 0 0.2rem !important;

	color: #ffd6d8;

	font-size: 0.68rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	line-height: 1.4;
	text-transform: uppercase;
}


.tsc-store-ownership__value {
	margin: 0 !important;

	color: var(--tsc-store-white);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.2rem, 2vw, 1.55rem);
	font-weight: 700;
	line-height: 1.2;
}


/* ==========================================================================
   OWNERSHIP — MOBILE
   ========================================================================== */

@media (max-width: 781px) {

	.tsc-store-ownership__columns.wp-block-columns {
		gap: 36px;
	}

	.tsc-store-ownership__card {
		width: 100%;
	}
}

/* ==========================================================================
   PLAN YOUR VISIT
   ========================================================================== */

.tsc-store-visit {
	background: var(--tsc-store-white);
}

.tsc-store-visit__columns.wp-block-columns {
	align-items: stretch !important;
	gap: clamp(32px, 5vw, 64px);
	margin: 0 !important;
}


/* ==========================================================================
   VISIT CONTENT
   ========================================================================== */

.tsc-store-visit__content {
	margin: 0 !important;
}

.tsc-store-visit__content h2 {
	margin: 0 0 1.2rem;

	color: var(--tsc-store-navy-deep);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}

.tsc-store-visit__content h3 {
	margin: 1.6rem 0 0.45rem;

	color: var(--tsc-store-navy-deep);

	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	line-height: 1.2;
}

.tsc-store-visit__content p {
	color: var(--tsc-store-muted);
	font-size: 1rem;
	line-height: 1.7;
}

.tsc-store-visit__address {
	margin: 0 0 1.4rem !important;

	color: var(--tsc-store-navy-deep) !important;

	font-size: 1.05rem !important;
	font-weight: 700;
	line-height: 1.6 !important;
}

.tsc-store-visit__hours {
	margin: 0 !important;

	color: var(--tsc-store-muted);
}


/* ==========================================================================
   VISIT BUTTONS
   ========================================================================== */

.tsc-store-visit .tsc-store-btn-row {
	margin-top: 1.6rem;
}


/* ==========================================================================
   STORE MAP
   ========================================================================== */

.tsc-store-map {
	width: 100%;
	height: 100%;
	min-height: 520px;

	overflow: hidden;

	border: 1px solid rgba(8, 28, 51, 0.1);
	border-radius: 22px;

	background: #eef1f4;

	box-shadow: var(--tsc-store-shadow);
}

.tsc-store-map iframe {
	display: block;

	width: 100%;
	height: 100%;
	min-height: 520px;

	margin: 0;

	border: 0;
}


/* ==========================================================================
   VISIT — TABLET / MOBILE
   ========================================================================== */

@media (max-width: 781px) {

	.tsc-store-visit__columns.wp-block-columns {
		gap: 36px;
	}

	.tsc-store-map,
	.tsc-store-map iframe {
		min-height: 400px;
	}
}

@media (max-width: 620px) {

	.tsc-store-map,
	.tsc-store-map iframe {
		min-height: 340px;
	}
}

/* ==========================================================================
   FINAL STORE CTA
   ========================================================================== */

.tsc-store-cta-section {
	background: var(--tsc-store-white);
}

.tsc-store-cta {
	position: relative;
	overflow: hidden;

	margin: 0 !important;
	padding: clamp(42px, 6vw, 72px);

	border-radius: 30px;

	background: var(--tsc-store-red);

	color: var(--tsc-store-white);
}


/* Decorative star */

.tsc-store-cta::after {
	content: "★";

	position: absolute;
	top: -66px;
	right: 36px;

	color: rgba(255, 255, 255, 0.1);

	font-size: 13rem;
	line-height: 1;

	transform: rotate(14deg);

	pointer-events: none;
}


.tsc-store-cta > * {
	position: relative;
	z-index: 1;
}


.tsc-store-cta h2 {
	max-width: 800px;

	margin: 0 0 1rem;

	color: var(--tsc-store-white);

	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 4vw, 3.35rem);
	line-height: 1.08;
	letter-spacing: -0.025em;
}


.tsc-store-cta > p:not(.tsc-store-eyebrow) {
	max-width: 760px;

	margin: 0;

	color: rgba(255, 255, 255, 0.86);

	font-size: 1.05rem;
	line-height: 1.7;
}


/* Light outlined button */

.tsc-store-btn--light .wp-block-button__link {
	border-color: rgba(255, 255, 255, 0.7);
	background: transparent;
	color: var(--tsc-store-white);
}

.tsc-store-btn--light .wp-block-button__link:hover {
	border-color: var(--tsc-store-white);
	background: rgba(255, 255, 255, 0.1);
}


/* Secondary button becomes white inside CTA */

.tsc-store-cta .tsc-store-btn--secondary .wp-block-button__link {
	border-color: var(--tsc-store-white);
	background: var(--tsc-store-white);
	color: var(--tsc-store-red);
}

.tsc-store-cta .tsc-store-btn--secondary .wp-block-button__link:hover {
	background: #f7f7f7;
}


/* ==========================================================================
   FINAL CTA — MOBILE
   ========================================================================== */

@media (max-width: 620px) {

	.tsc-store-cta {
		padding: 36px 26px;
		border-radius: 22px;
	}

	.tsc-store-cta::after {
		top: -30px;
		right: -20px;
		font-size: 9rem;
	}
}