/* ===============================
    TRANSPARENT NAV
================================= */

.jiAKFG {
	background-color: transparent !important;
	backdrop-filter: none !important;
}

header .sc-faUpoM svg path {
	fill: #fff !important;
}

header .cqniDd {
	background-color: transparent;
}

header .hDsBsM {
	color: #fff;
}
/* ===== NAV SCROLLED STATE ===== */

body.nav-scrolled .jiAKFG {
	background-color: #ffffff !important;
	backdrop-filter: none !important;
}

body.nav-scrolled header .hDsBsM {
	color: #6a6a6a !important;
}

body.nav-scrolled header .sc-faUpoM svg path {
	fill: #000000 !important;
}

body.nav-scrolled header .cqniDd {
	background-color: #ffffff !important;
}
.jiAKFG,
header .hDsBsM,
header .sc-faUpoM svg path {
	transition: background-color 0.3s ease, color 0.3s ease, fill 0.3s ease;
}
/* ===== When mega menu is open ===== */
body.nav-open .jiAKFG {
	background-color: #fff !important;
	backdrop-filter: none !important;
}

body.nav-open header .hDsBsM {
	color: #6a6a6a !important;
}

/* icons */
body.nav-open header .sc-faUpoM svg path {
	fill: #000 !important;
}
/* =========================
    NAV OPEN: FORCE HOVER COLORS
========================= */

/* Top nav text (WOMEN / MEN / KIDS / BABY) */
body.nav-open header .hDsBsM,
body.nav-open header .hDsBsM:hover,
body.nav-open header .hDsBsM:focus,
body.nav-open header .hDsBsM:active,
body.nav-open header a .hDsBsM,
body.nav-open header a:hover .hDsBsM,
body.nav-open header button:hover .hDsBsM,
body.nav-open header [role="button"]:hover .hDsBsM,
body.nav-open header [role="tab"]:hover .hDsBsM {
	color: #6a6a6a !important;
}

/* If the clickable thing itself is the text node (sometimes it is) */
body.nav-open header a,
body.nav-open header a:hover,
body.nav-open header a:focus,
body.nav-open header a:active,
body.nav-open header button,
body.nav-open header button:hover,
body.nav-open header button:focus,
body.nav-open header button:active {
	color: #6a6a6a !important;
}

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

:root {
	--hero-crop-desktop: 83%; /* shows street/people like Figma */
	--hero-crop-mobile: 72%;
	--hero-pad-desktop: 25px; /* matches your .section_inner padding */
	--hero-pad-mobile: 14px;
}

/* HERO WRAP */
/* Base */
.nsoHero {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/* Desktop */
@media (min-width: 813px) {
	.nsoHero {
		height: 600px; /* fixed height like you want */
		aspect-ratio: auto; /* explicitly disable ratio */
	}
}

/* HERO IMAGE (keep <img>, but crop like background-position) */
.nsoHero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;

	/* ✅ THIS IS THE CROP FIX */
	object-position: center var(--hero-crop-desktop);
}

/* 2-layer gradient like the mock (bottom fade + subtle left vignette) */
.nsoHero::before,
.nsoHero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

/* subtle left vignette */
.nsoHero::before {
	background: linear-gradient(
		to right,
		rgba(0, 0, 0, 0.55) 0%,
		rgba(0, 0, 0, 0.18) 28%,
		rgba(0, 0, 0, 0) 62%
	);
}

/* bottom fade */
.nsoHero::after {
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.55) 18%,
		rgba(0, 0, 0, 0) 62%
	);
}

/* ===============================
    BREADCRUMBS 
================================= */

.nsoHero .fr-breadcrumbs {
	position: relative;
	top: 18px;
	left: -24px;
	right: 0;
	z-index: 2;
	padding: 0 var(--hero-pad-desktop);
}

/* makes breadcrumb text readable on bright areas */
.nsoHero .fr-breadcrumbs,
.nsoHero .fr-breadcrumbs a {
	color: rgba(255, 255, 255, 0.85);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

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

.nsoHero__content {
	position: relative;
	left: 0;
	right: 0;
	bottom: -300px;
	z-index: 3;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
}

.nsoHero__left {
	max-width: 720px;
}

.nsoHero__jp {
	margin: 0 0 15px 0;
	font-size: 16px;
	line-height: 16px;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.nsoHero__headline {
	margin: 0;
	font-size: 56px;
	line-height: 56px;
	letter-spacing: 0.02em;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.nsoHero__right {
	text-align: right;
	padding-bottom: 6px;
	min-width: 260px;
}

.nsoHero__opening {
	margin: 0;
	font-size: 33px;
	line-height: 33px;
	letter-spacing: 0.05em;
	font-weight: 500;
	text-transform: uppercase;
	color: #e60012;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* ===============================
    MOBILE HERO
================================= */
@media (max-width: 812px) {
	.nsoHero {
		height: 520px;
		aspect-ratio: auto;
	}

	.nsoHero__img {
		object-position: center var(--hero-crop-mobile);
	}

	.nsoHero .fr-breadcrumbs {
		padding: 0 var(--hero-pad-mobile);
		top: 10px;
	}

	.nsoHero__content {
		flex-direction: column;
		align-items: flex-start;
		bottom: 14px;
		gap: 14px;
		padding: 0 var(--hero-pad-mobile);
	}

	.nsoHero__headline {
		font-size: 38px;
		line-height: 40px;
	}

	.nsoHero__right {
		text-align: left;
		min-width: 0;
		padding-bottom: 0;
	}

	.nsoHero__opening {
		font-size: 16px;
		line-height: 20px;
	}

	.nsoHero .fr-breadcrumbs {
		position: absolute;
		top: 18px;
		left: 0;
		right: 0;
		z-index: 2;
		padding: 0 var(--hero-pad-desktop);
	}

	.nsoHero__content {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 34px;
		z-index: 2; /* above gradients */
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		gap: 24px;
		padding: 0 var(--hero-pad-desktop);
	}
}

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

.nsoInfo {
	background: #fff;
	/* border-bottom: 2px solid #ff0000; */
}

.nsoInfo__inner {
	max-width: 1200px;
	margin: 0 auto;
	/* padding: 58px 60px 70px;
    display: grid; */
	/* grid-template-columns: 1fr 1fr; */
	padding: 0 193px 70px;
	display: flex;
	column-gap: 75px;
	justify-content: center;
	align-items: start;
}

/* LEFT */
.nsoInfo__body {
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.01em;
	color: #000;
}

.nsoInfo__body--spaced {
	margin-top: 32px;
}

/* RIGHT base typography */
.nsoInfo__right {
	color: #000;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.01em;
}

.nsoInfo__block {
	margin-bottom: 18px;
}

/* “UNIQLO Bryant Park” */
.nsoInfo__title {
	font-size: 18px;
	line-height: 20px;
	letter-spacing: 0.01em;
	margin: 0 0 6px 0;
}

.nsoInfo__link {
	display: block;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.01em;
	text-decoration: underline; /* underline links */
	color: #000;
}

.nsoInfo__link-margin {
	margin: 10px 0;
}

/* ===============================
    EXCLUSIVE OFFERS SECTION
================================= */

.nsoEventsHeader {
	background-color: #f4f4f4;
	padding: 40px 0;
	border-bottom: 2px solid #ff0000;
	border-top: 2px solid #ff0000;
}

.nsoExclusiveOffers {
	padding: 40px 0;
	text-transform: uppercase;
}

.nsoEventsHeader .fr-imagePlusText_heading {
	font-size: 17px;
	line-height: 20px;
}

.nsoEventsHeader .fr-imagePlusText_body {
	font-size: 9px;
	line-height: 12px;
	letter-spacing: 0.5px;
	color: #6a6a6a;
}

.nsoEventsHeader__inner,
.nsoExclusiveOffers__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 4px 0 40px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
}

.nsoEventsHeader__left,
.nsoExclusiveOffers__left {
	min-width: 0;
}

/* OPENING WEEKEND EVENTS */
.nsoEventsHeader__title,
.nsoExclusiveOffers__title {
	margin: 0 0 15px 0;
	font-size: 28px;
	line-height: 15px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #000;
	font-weight: normal;
}

/* Only at BRYANT PARK from 3/6 - 3/9 */
.nsoEventsHeader__sub,
.nsoExclusiveOffers__sub {
	margin: 0;
	font-size: 12px;
	line-height: 18px;
	letter-spacing: 0.02em;
	color: #000;
}

.nsoEventsHeader__sub strong,
.nsoExclusiveOffers__sub strong {
	font-weight: 700;
}

/* スペシャルイベント */
.nsoEventsHeader__jp,
.nsoExclusiveOffers__jp {
	font-size: 16px;
	line-height: 15px;
	letter-spacing: normal;
	color: #6b6b6b;
	white-space: nowrap;
}

/* Exclusive Opening Offers - Product Grid  */
.nsoOffersGridWrap {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 40px;
}

/* PC: 4 columns x 2 rows, 3px white gaps */
.nsoOffersGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 3px; /* white gap */
	background: #ffffff; /* ensures gaps are white */
}

.nsoOffersCard {
	background: #ffffff;
}

.nsoOffersCard__imgWrap {
	background: #f4f4f4;
	position: relative;
}

.nsoOffersCard__badge {
	position: absolute;
	width: 42px;
	height: auto;
	left: 7px;
	top: 7px;
}

.nsoOffersCard__img {
	display: block;
	width: 100%;
	height: auto;
}

.nsoOffersCard__body {
	padding: 10px 12px 14px 0px;
}

.nsoOffersCard__meta {
	margin: 0 0 4px 0;
	font-size: 9px;
	line-height: 10px;
	letter-spacing: 0.02em;
	color: #6a6a6a;
	text-transform: uppercase;
}

.nsoOffersCard__name {
	margin: 0 0 6px 0;
	font-size: 11px;
	line-height: 14px;
	letter-spacing: 0.01em;
	color: #000;
}

.nsoOffersCard__priceRow {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin: 0;
	font-size: 13px;
	line-height: 15px;
	letter-spacing: 0.26px;
}

.nsoOffersCard__priceSale {
	color: #ee0000;
	font-weight: 500;
}

.nsoOffersCard__priceWas {
	font-weight: 300;
	text-decoration: line-through;
	color: #000;
	opacity: 0.9;
}

/* MOBILE: one row, horizontal scroll, no gaps */
@media (max-width: 812px) {
	.nsoOffersGridWrap {
		padding: 0 0 0 18px;
	}

	.nsoOffersCard__imgWrap {
		background: #f4f4f4;
	}

	.nsoOffersCard__badge {
		width: 32px;
		left: 5px;
		top: 5px;
	}

	.nsoOffersGrid {
		display: flex;
		gap: 0; /* no gap between products */
		background: transparent;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
	}

	.nsoOffersCard {
		flex: 0 0 43%; /* shows partial next card like mock */
		scroll-snap-align: start;
	}

	.nsoOffersCard__body {
		padding: 10px 12px 0px 0px;
	}

	/* optional: hide scrollbar (safe-ish) */
	.nsoOffersGrid::-webkit-scrollbar {
		height: 0;
	}
}

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

.nsoStoreMap {
	border-bottom: 1px solid #cfcfcf;
	border-top: 1px solid #cfcfcf;
	padding: 50px 0 60px 0;
}

.nsoStoreMap__title {
	margin: 0 0 28px;
	font-size: 28px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: normal;
	line-height: 50px;
}

.nsoStoreMap__title-preview {
	line-height: 29px;
	letter-spacing: 0.05em;
}

/* ===============================
    FAQ SECTION
================================= */

.nsoFAQ__title {
	font-size: 28px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	font-weight: normal;
}

.fr-linkButton.-m {
	max-width: 224px;
	margin: 0 auto;
}

.fr-accordion_checkBox:checked + .fr-accordion_heading {
	padding-bottom: 0;
}

.fr-accordion_checkBox:checked + .fr-accordion_heading + .fr-accordion_content {
	padding-top: 0;
}

/* ===============================
    UTME SECTION
================================= */
.utmeSection__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 0 57px;
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: center;
}

.utmeSection__inner.pt-none {
	padding-top: 0;
}

/* IMAGE AREA */
.utmeSection__images--pc {
	display: flex;
	gap: 8px;
}

.utmeSection__images--pc img {
	width: 100%;
	max-width: 50%;
	height: auto;
}

.utmeSection__images--sp {
	display: none;
}

.utmeSection__images--sp img {
	width: 100%;
	height: auto;
}

/* LABEL */
.utmeSection__label {
	font-size: 10px;
	line-height: 10px;
	letter-spacing: 0.07em;
	margin-bottom: 20px;
	position: relative;
	padding-left: 30px;
	color: #ee0000;
	font-weight: 500;
}

.utmeSection__label::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 21px;
	height: 1px;
	background: #ee0000;
}

/* TITLE */
.utmeSection__title {
	font-size: 28px;
	line-height: 32px;
	letter-spacing: 0.05em;
	margin: 0 0 20px;
	font-weight: normal;
}

/* DESCRIPTION */
.utmeSection__desc {
	font-size: 14px;
	line-height: 20px;
	margin: 0;
}

/* BOTTOM SECTION */
.utmeSection__bottom {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 90px 42px;
}

.utmeSection__bottomInner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

/* MADE FOR TEXT */
.utmeSection__bottomLeft {
	font-size: 32px;
	line-height: 38px;
	letter-spacing: 0.02em;
	font-family: "adobe-garamond-pro", serif;
}

.utmeSection__ny {
	color: #ee0000;
}

/* Bottom paragraph */
.utmeSection__bottomRight {
	font-size: 14px;
	line-height: 20px;
}

/* ===============================
    MADE IN NY CAST SECTION
================================= */
.meetCast {
	background: #fff;
}

article.meetCast__card:hover {
	cursor: pointer;
}

.meetCast__inner {
	padding: 0 0 60px 179px;
}

/* Desktop layout: kicker on left, grid on right */
.meetCast__row {
	display: grid;
	grid-template-columns: 34px 1fr;
	column-gap: 22px;
	align-items: start;
}

/* Kicker (PC: vertical text + vertical line above it) */
.meetCast__kicker {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding-top: 4px;
}

.meetCast__kickerLine {
	width: 1px;
	height: 21px;
	background: #ee0000;
	display: block;
}

.meetCast__kickerText {
	color: #ee0000;
	font-size: 10px; /* PC spec */
	line-height: 10px; /* PC spec */
	letter-spacing: 0.15em; /* PC spec */
	text-transform: uppercase;
	font-weight: 500;

	writing-mode: sideways-lr;
	transform: rotate(180deg);
	white-space: nowrap;
}

/* Grid */
.meetCast__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.meetCast__card-quote {
	margin: 0;
	position: relative;
}

.meetCast__quote {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.meetCast__quote p {
	font-family: "Libre Baskerville";
	font-size: 16px;
	line-height: 21px;
}

.meetCast__imgWrap {
	position: relative;
	overflow: hidden;
	background: #f2f2f2;
}

.meetCast__img {
	display: block;
	width: 100%;
	height: auto;
}

/* Desktop overlay */
.meetCast__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 21px;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

/* Mobile below text (hidden on desktop) */
.meetCast__below {
	display: none;
	padding: 10px 0 0;
}

/* Typography */
.meetCast__name {
	font-size: 14px;
	line-height: normal;
	letter-spacing: 0.02em;
	font-weight: 500;
	margin: 0px 0 3px;
}

.meetCast__role {
	font-size: 12px;
	line-height: normal;
	letter-spacing: 0.02em;
	margin: 0 0 10px;
}

.meetCast__link {
	font-size: 12px;
	line-height: 12px;
	text-decoration: underline;
	color: inherit;
	font-weight: normal;
	display: inline;
}

.profile_modalGrid.-contents01 {
	margin-top: 0;
}

.profile_modalGrid h5,
.profile_modalGrid .profile_lead {
	font-family: "adobe-garamond-pro";
}

.profile_modalGrid .profile_lead {
	font-style: italic;
}

/* ===============================
    STAY CONNECTED SECTION
================================= */
.stayConnected {
	background: #f4f4f4;
}

.stayConnected__inner {
	max-width: 980px;
	margin: 0 auto;
	padding: 36px 24px;
	text-align: center;
}

.stayConnected__text {
	margin: 0;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.01em;
	color: #000;
}

/* ===============================
    UPCOMING STORES SECTION
================================= */
.upcomingStores__title {
	margin: 0 0 28px;
	font-size: 28px;
	letter-spacing: 0.02em;
	line-height: 50.4px;
	font-weight: normal;
	text-transform: uppercase;
}

.upcomingStores__cityTitle {
	margin: 0 0 22px;
	font-size: 22px;
	letter-spacing: 0.02em;
}

/* Rows */
.upcomingStores__row {
	display: flex;
	margin-bottom: 34px;
	justify-content: center;
}

.upcomingStores__row--two {
	margin-bottom: 0;
}

.upcomingStores__item {
	display: flex;
	gap: 12px;
	/* padding: 0 49px 0 49px; */
	/* flex: 1; */
}

.upcomingStores__divider {
	width: 1px;
	background: #cfcfcf;
	margin: 0px 47px;
}

.upcomingStores__divider-1 {
	margin-left: 63px;
}

.upcomingStores__divider-3 {
	margin-left: 30px;
}

.upcomingStores__sectionRule {
	border: 0;
	border-top: 1px solid #cfcfcf;
	margin: 8px 0 34px;
}

/* Icon */
.upcomingStores__pin {
	width: 13px;
	height: 17px;
	flex-shrink: 0;
	margin-top: 3px;
}

/* Text */
.upcomingStores__place {
	font-size: 16px;
	font-weight: 500;
	line-height: 20px;
	margin-bottom: 6px;
}

.upcomingStores__open {
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
	margin-bottom: 12px;
}

.upcomingStores__learn {
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	text-decoration: underline;
	color: #000;
}

a.js-trackEvent.u-Hover.fr-bff-product_link.js-fr-bff-product_slidelink,
a.js-trackEvent.fr-bff-product_innerLink.js-fr-bff-product_innerLink,
a.fr-bff-product_inner.js-trackEvent {
	cursor: default;
	pointer-events: none;
}

/* ===============================
    NSO BODY BANNER (PC + SP)
=============================== */

.nsoBanner {
	position: relative;
}

.nsoBanner__inner {
	position: absolute;
	inset: 0; /* cover the banner */
	pointer-events: none;
}

.nsoBanner__img {
	display: block;
	width: 100%;
	height: auto;
}

/* Show PC image by default */
.nsoBanner__img--pc {
	display: block;
}
.nsoBanner__img--sp {
	display: none;
}

.nsoBanner__overlay {
	position: absolute;
	/*                left: 87px; 
*/
	left: 25px;
	bottom: 34px;
	/*                bottom: 40px;        
*/
	color: #fff;
	max-width: 520px;
}

/* — BRAND NEW SERVICE */
.nsoBanner__kicker {
	margin: 0 0 13px 0;
	font-size: 10px;
	line-height: 10px;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	white-space: nowrap; /* keep it on one line */
	font-weight: 500;
	color: #ee0000;
	padding-left: 30px;
}

p.nsoBanner__kicker:before {
	content: "";
	position: absolute;
	left: 0;
	top: 5px;
	width: 21px;
	height: 1px;
	background: #ee0000;
	/* padding-left: 30px; */
}

/* EMBROIDERY NOW AVAILABLE */
.nsoBanner__title {
	margin: 0 0 13px 0;
	font-size: 28px;
	line-height: normal; /* "auto" equivalent for CSS */
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-weight: 500;
}

/* Description */
.nsoBanner__desc {
	margin: 0;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0;
	font-weight: 400;
}

/* MOBILE */
@media (max-width: 812px) {
	.nsoBanner {
		max-width: 100%;
	}

	/* swap images */
	.nsoBanner__img--pc {
		display: none;
	}
	.nsoBanner__img--sp {
		display: block;
	}

	.nsoBanner__overlay {
		left: 20px;
		right: 20px;
		bottom: 22px;
		max-width: none;
	}

	.nsoBanner__kicker {
		font-size: 10px;
		line-height: 10px;
	}

	.nsoBanner__title {
		font-size: 22px;
		line-height: 25px;
		letter-spacing: 0.05em;
	}

	.nsoBanner__desc {
		font-size: 14px;
		line-height: 20px;
	}
}

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

@media (max-width: 812px) {
	.nsoHero {
		min-height: 520px;
	}

	.nsoHero__content {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		bottom: 14px;
		padding: 0 14px;
	}

	.nsoHero__right {
		text-align: left;
	}

	.nsoHero__headline {
		font-size: 35px;
		line-height: 36px;
	}

	.nsoHero__opening {
		font-size: 20px;
		line-height: 24px;
	}

	.nsoHero__jp {
		font-size: 13px;
		margin-bottom: 12px;
		line-height: 15px;
		letter-spacing: normal;
	}

	.nsoInfo__inner {
		padding: 0 0 36px 0;
		display: block;
	}
	.nsoInfo__meta {
		white-space: normal !important;
	}

	.nsoInfo__body--spaced-bottom {
		margin-bottom: 32px;
	}
	.nsoEventsHeader,
	.nsoExclusiveOffers {
		padding: 0 0 36px;
	}
	.nsoEventsHeader__inner,
	.nsoExclusiveOffers__inner {
		padding: 36px 18px 12px;
		flex-direction: column;
		gap: 5px;
	}

	.nsoEventsHeader .fr-imagePlusText_heading {
		font-size: 14px;
		line-height: 18px;
	}

	/* Order: JP first, then title, then sub */

	.nsoEventsHeader__left,
	.nsoExclusiveOffers__left {
		order: 2;
	}

	.nsoEventsHeader__title,
	.nsoExclusiveOffers__title {
		margin-bottom: 12px;
		font-size: 22px;
		line-height: 24px;
	}

	.nsoEventsHeader__sub,
	.nsoExclusiveOffers__sub {
		font-size: 12px;
		line-height: 20px;
		margin-top: 35px;
	}

	.nsoEventsHeader__jp,
	.nsoExclusiveOffers__jp {
		font-size: 14px;
		line-height: 15.4px;
		order: 1;
		white-space: normal;
	}

	.nsoEventsHeader .fr-imagePlusText_body {
		font-size: 10px;
	}

	.fr-imagePlusTextParent.-grid.-large.-grid-mobile {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	.-grid-mobile .fr-imagePlusText {
		display: block;
	}

	.-grid-mobile.-grid.-large .fr-imagePlusText_imgWrap {
		width: 100%;
	}

	.-grid-mobile.-grid .fr-imagePlusText_content.pl {
		padding-left: 0;
	}
	.-grid-mobile.-grid .fr-imagePlusText_content.pr {
		padding-left: 0;
	}

	.-grid .fr-imagePlusText:last-child {
		border-bottom: 0;
	}

	.fr-imagePlusTextParent.-grid.-large.-grid-mobile.fr-sp-px-1g {
		padding-left: 18px;
		padding-right: 18px;
	}

	.nsoStoreMap {
		padding: 34px 0 37px;
	}

	.nsoStoreMap__title {
		margin: 0 0 28px;
		font-size: 22px;
		letter-spacing: 0.05em;
		line-height: 25px;
	}

	.utmeSection__inner {
		grid-template-columns: 1fr;
		padding: 0 20px 33px;
		gap: 27px;
	}

	.utmeSection__images--pc {
		display: none;
	}

	.utmeSection__images--sp {
		display: block;
	}

	/* LABEL MOBILE */
	.utmeSection__label {
		font-size: 10px;
		line-height: 10px;
		letter-spacing: 0.15em;
	}

	/* TITLE MOBILE */
	.utmeSection__title {
		font-size: 22px;
		line-height: 25px;
		letter-spacing: 0.05em;
		margin: 0 0 10px;
	}

	/* Bottom layout stack */
	.utmeSection__bottomInner {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	/* MADE FOR MOBILE */
	.utmeSection__bottomLeft {
		font-size: 24px;
		line-height: 28px;
		letter-spacing: 0.02em;
	}

	.utmeSection__bottom {
		padding: 0 20px 0;
	}

	.meetCast__inner {
		padding: 23px 14px 40px;
	}

	.meetCast__kickerText {
		font-size: 10px; /* mobile spec */
		line-height: 10px;
		letter-spacing: 3px;
	}

	.meetCast__grid {
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}

	.meetCast__overlay {
		display: none;
	}

	.meetCast__below {
		display: block;
		color: #000;
	}

	.meetCast__name {
		font-size: 16px; /* mobile spec */
	}

	.meetCast__link {
		font-size: 14px; /* mobile spec */
		color: #000;
	}

	/* Mobile: kicker becomes horizontal at top (like your mobile mock) */
	.meetCast__row {
		grid-template-columns: 1fr;
		row-gap: 14px;
	}

	.meetCast__kicker {
		flex-direction: row;
		justify-content: flex-start;
		gap: 10px;
		padding-top: 0;
	}

	.meetCast__kickerLine {
		width: 21px;
		height: 1px;
	}

	.meetCast__kickerText {
		font-size: 10px;
		line-height: 14px;
		letter-spacing: 0.05em;
		writing-mode: initial;
		transform: none;
	}

	.meetCast__grid {
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}

	/* Mobile: no overlay, text below image */
	.meetCast__overlay {
		display: none;
	}

	.meetCast__below {
		display: block;
		color: #000;
		padding: 6px 0 15px;
	}

	.meetCast__name {
		font-size: 16px; /* mobile spec */
		margin-bottom: 0;
		line-height: normal;
	}

	.meetCast__role {
		font-size: 10px;
		line-height: 16px;
		letter-spacing: 0.02em;
		margin: 0px 0 6px;
	}

	.meetCast__link {
		font-size: 14px; /* mobile spec */
		color: #000;
		line-height: 12px;
	}
	.stayConnected__inner {
		max-width: 520px;
		padding: 33px 18px 15px;
	}

	.stayConnected__text {
		font-size: 14px;
	}

	.fr-linkButton {
		width: 100%;
		max-width: 320px;
		min-width: 0;
		height: 56px;
	}

	/* .fr-sp-px-1g {
        padding-left: 18px;
        padding-right: 18px;
    } */

	.fr-accordion_heading {
		font-size: 14px;
	}

	.upcomingStores__title {
		margin: 0 0 28px;
		font-size: 22px;
		line-height: 26px;
	}

	.upcomingStores__row {
		gap: 20px;
		margin-bottom: 0;
	}

	.upcomingStores__item {
		padding: 0;
	}

	.upcomingStores__pin {
		width: 28px;
		height: 28px;
	}

	.upcomingStores__divider {
		display: none;
	}

	.sectionMobile__padding {
		padding-left: 39px;
		padding-right: 39px;
	}

	.tabsBorderRight__mobile {
		border-right: 1px solid var(--color-border-tertiary) !important;
	}

	.tabsBorderLeft__mobile {
		border-left: 1px solid var(--color-border-tertiary);
	}

	.-default .fr-anchorButton_item,
	.-small .fr-anchorButton_item {
		width: calc((100% - 3px) / 2);
	}

	.meetCast__quote {
		top: 35%;
	}

	.-grid .fr-imagePlusText:first-child {
		border: none;
	}
}

/* ===============================
FULL WIDTH SECTIONS
================================= */

.section_inner {
	min-width: 320px;
}

@media screen and (min-width: 813px) {
	.section_inner {
		max-width: 1226px;
		margin-right: auto;
		margin-left: auto;
		padding-right: 25px;
		padding-left: 25px;
	}
}

@media screen and (min-width: 813px) {
	.fr-accordion {
		width: 100%;
		max-width: initial;
		margin-right: initial;
		margin-left: initial;
	}

	p.fr-imagePlusText_body.fr-sp-mt-m.fr-pc-mt-xs {
		margin: 40px 0 21px 0;
	}
	.-grid .fr-imagePlusText.tile-4,
	.-grid .fr-imagePlusText.tile-5,
	.-grid .fr-imagePlusText.tile-6 {
		margin-top: 0;
	}
	.-grid
		.fr-imagePlusText.tile-4
		p.fr-imagePlusText_body.fr-sp-mt-xxs.fr-pc-mt-xs {
		margin-bottom: 0;
	}
}

/* ===============================
MOBILE + TABLET
================================= */
@media screen and (min-width: 813px) and (max-width: 1024px) {
	.nsoInfo__inner {
		max-width: 812px;
		padding: 0 102px 70px;
	}
	.nsoInfo__meta {
		white-space: normal !important;
	}
}

/* Anchor for absolute label positioning */
.utmeSection__images--pc {
	position: relative;
}

/* Make sure images don't cover the label */
.utmeSection__images--pc > img {
	display: block;
	position: relative;
	z-index: 1;
}

/* Labels (render ABOVE the images) */
.utmeSection__images--pc::before,
.utmeSection__images--pc::after {
	position: absolute;
	bottom: 9px;
	z-index: 3;
	display: block;
	color: #fff;
	font-size: 10px;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: 0.01em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
	pointer-events: none;
	white-space: nowrap;
}

/* Left label */
.utmeSection__images--pc::before {
	content: "Lauren Martin";
	left: 8px;
}

/* Right label */
.utmeSection__images--pc::after {
	content: "New York Public Library";
	left: calc(50% + 18px);
	white-space: pre-line; /* THIS enables the line break */
}
/* Desktop */
.nsoOffersCard__imgWrap {
	width: 100%;
	height: 389px; /* same as your original */
	overflow: hidden;
	position: relative;
	background: #f4f4f4;
}

.nsoOffersCard__img {
	width: 100%;
	height: 100%;
	object-fit: cover; /* or cover if you want no gray ever */
	display: block;
}

/* Mobile */
@media (max-width: 500px) {
	.nsoOffersCard__imgWrap {
		height: 225px; /* same as your original */
	}
}
