/* FreeMultimediaSource — core.css */
/* High-Tech Minimalist / White Theme */

:root {
	--main-canvas: #ffffff;
	--surface-layer: #f8f9fa;
	--accent-vibe: #0055ff;
	--accent-vibe-soft: rgba(0, 85, 255, 0.08);
	--ink-bold: #0a0a0b;
	--ink-soft: #5e6672;
	--stroke-line: #eceef0;
	--shadow-drop: 0 10px 30px rgba(0, 0, 0, 0.03);
	--shadow-lift: 0 20px 50px rgba(0, 0, 0, 0.06);
	--radius-card: 16px;
	--radius-small: 10px;
	--ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
	--transition-base: 0.3s var(--ease-smooth);
	--gutter: clamp(16px, 4vw, 40px);
	--font-primary:
		'Inter', 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: var(--font-primary);
	font-weight: 300;
	font-size: 16px;
	line-height: 1.6;
	color: var(--ink-soft);
	background: var(--main-canvas);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
main {
	flex: 1 0 auto;
}
img,
svg {
	max-width: 100%;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color var(--transition-base);
}
button {
	font-family: inherit;
	cursor: pointer;
	border: none;
	background: none;
}
h1,
h2,
h3,
h4,
h5 {
	color: var(--ink-bold);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
}
h1 {
	font-size: clamp(2.4rem, 5.5vw, 4.6rem);
}
h2 {
	font-size: clamp(1.8rem, 3.6vw, 3rem);
}
h3 {
	font-size: clamp(1.25rem, 2vw, 1.6rem);
}
p {
	max-width: 64ch;
}

.wrap-outer-q77 {
	width: min(1240px, 100% - 2 * var(--gutter));
	margin-inline: auto;
}

/* ============ NAV ============ */
.nav-shell-a31 {
	position: sticky;
	top: 0;
	z-index: 80;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: saturate(180%) blur(14px);
	-webkit-backdrop-filter: saturate(180%) blur(14px);
	border-bottom: 1px solid var(--stroke-line);
}
.nav-inner-b42 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}
.nav-logo-c15 {
	font-weight: 700;
	font-size: 1.05rem;
	letter-spacing: -0.02em;
	color: var(--ink-bold);
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.nav-logo-c15::before {
	content: '';
	width: 12px;
	height: 12px;
	border-radius: 3px;
	background: linear-gradient(135deg, var(--accent-vibe), #2e7bff);
}
.nav-links-d88 {
	display: flex;
	gap: 30px;
	align-items: center;
}
.nav-link-x92 {
	font-size: 0.92rem;
	font-weight: 500;
	color: var(--ink-soft);
	position: relative;
	padding: 4px 0;
}
.nav-link-x92:hover,
.nav-link-x92.is-active {
	color: var(--ink-bold);
}
.nav-link-x92::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	height: 2px;
	width: 0;
	background: var(--accent-vibe);
	transition: width var(--transition-base);
}
.nav-link-x92:hover::after,
.nav-link-x92.is-active::after {
	width: 100%;
}
.btn-action-z11 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--ink-bold);
	color: #fff;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.9rem;
	letter-spacing: 0.01em;
	transition:
		transform var(--transition-base),
		background var(--transition-base),
		box-shadow var(--transition-base);
}
.btn-action-z11:hover {
	background: var(--accent-vibe);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lift);
}
.btn-ghost-y73 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 500;
	font-size: 0.9rem;
	border: 1px solid var(--stroke-line);
	color: var(--ink-bold);
	transition: all var(--transition-base);
}
.btn-ghost-y73:hover {
	border-color: var(--accent-vibe);
	color: var(--accent-vibe);
}
.nav-burger-k07 {
	display: none;
	width: 40px;
	height: 40px;
	border-radius: 10px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--stroke-line);
}
.nav-burger-k07 span {
	display: block;
	width: 18px;
	height: 2px;
	background: var(--ink-bold);
	position: relative;
}
.nav-burger-k07 span::before,
.nav-burger-k07 span::after {
	content: '';
	position: absolute;
	left: 0;
	width: 18px;
	height: 2px;
	background: var(--ink-bold);
}
.nav-burger-k07 span::before {
	top: -6px;
}
.nav-burger-k07 span::after {
	top: 6px;
}

@media (max-width: 880px) {
	.nav-burger-k07 {
		display: inline-flex;
	}
	.nav-links-d88 {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		border-bottom: 1px solid var(--stroke-line);
		flex-direction: column;
		gap: 0;
		padding: 12px var(--gutter);
		transform: translateY(-10px);
		opacity: 0;
		pointer-events: none;
		transition: all var(--transition-base);
	}
	.nav-links-d88 .nav-link-x92 {
		padding: 14px 0;
		border-bottom: 1px solid var(--stroke-line);
		width: 100%;
	}
	.nav-links-d88.is-open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.nav-cta-mobile-hide {
		display: none;
	}
}

/* ============ HERO ============ */
.hero-block-r22 {
	padding: clamp(60px, 10vw, 130px) 0 clamp(60px, 9vw, 110px);
	position: relative;
	overflow: hidden;
}
.hero-grid-w04 {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 60px;
	align-items: center;
}
.hero-kicker-t55 {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-vibe);
	font-weight: 500;
	padding: 8px 14px;
	border-radius: 999px;
	background: var(--accent-vibe-soft);
	margin-bottom: 24px;
}
.hero-title-v44 {
	margin-bottom: 26px;
}
.hero-sub-u81 {
	font-size: 1.12rem;
	max-width: 52ch;
	margin-bottom: 34px;
}
.hero-cta-row-e09 {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}
.hero-visual-n60 {
	position: relative;
	aspect-ratio: 1/1;
	border-radius: 32px;
	background: var(--surface-layer);
	border: 1px solid var(--stroke-line);
	overflow: hidden;
	display: grid;
	place-items: center;
}
.hero-visual-n60::before {
	content: '';
	position: absolute;
	inset: 0;
	background:
		radial-gradient(
			circle at 30% 20%,
			var(--accent-vibe-soft),
			transparent 55%
		),
		radial-gradient(circle at 75% 80%, rgba(10, 10, 11, 0.05), transparent 55%);
}
.wave-art-p33 {
	position: relative;
	width: 70%;
	height: 70%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 6px;
}
.wave-art-p33 i {
	display: block;
	flex: 1;
	background: linear-gradient(180deg, var(--accent-vibe), #0a0a0b);
	border-radius: 6px;
	animation: wavePulse 2.4s var(--ease-smooth) infinite;
}
@keyframes wavePulse {
	0%,
	100% {
		transform: scaleY(0.3);
	}
	50% {
		transform: scaleY(1);
	}
}
.wave-art-p33 i:nth-child(1) {
	animation-delay: 0s;
}
.wave-art-p33 i:nth-child(2) {
	animation-delay: 0.1s;
}
.wave-art-p33 i:nth-child(3) {
	animation-delay: 0.2s;
}
.wave-art-p33 i:nth-child(4) {
	animation-delay: 0.3s;
}
.wave-art-p33 i:nth-child(5) {
	animation-delay: 0.4s;
}
.wave-art-p33 i:nth-child(6) {
	animation-delay: 0.5s;
}
.wave-art-p33 i:nth-child(7) {
	animation-delay: 0.6s;
}
.wave-art-p33 i:nth-child(8) {
	animation-delay: 0.7s;
}
.wave-art-p33 i:nth-child(9) {
	animation-delay: 0.8s;
}
.wave-art-p33 i:nth-child(10) {
	animation-delay: 0.9s;
}
.wave-art-p33 i:nth-child(11) {
	animation-delay: 1s;
}
.wave-art-p33 i:nth-child(12) {
	animation-delay: 1.1s;
}

@media (max-width: 880px) {
	.hero-grid-w04 {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	.hero-visual-n60 {
		order: -1;
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}
}

/* ============ METRICS ============ */
.metrics-row-j12 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding: 40px 0;
	border-top: 1px solid var(--stroke-line);
	border-bottom: 1px solid var(--stroke-line);
}
.metric-cell-f66 {
	padding: 8px;
}
.metric-num-g48 {
	font-size: clamp(2rem, 3.4vw, 2.8rem);
	font-weight: 700;
	color: var(--ink-bold);
	letter-spacing: -0.03em;
	line-height: 1;
}
.metric-lbl-h20 {
	font-size: 0.88rem;
	margin-top: 10px;
	color: var(--ink-soft);
}
@media (max-width: 700px) {
	.metrics-row-j12 {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ============ GENERIC SECTION ============ */
.sect-block-m19 {
	padding: clamp(60px, 9vw, 110px) 0;
}
.sect-head-l03 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	flex-wrap: wrap;
	margin-bottom: 48px;
}
.sect-head-l03 h2 {
	max-width: 20ch;
}
.sect-head-l03 p {
	max-width: 44ch;
}
.sect-eyebrow-s77 {
	font-size: 0.78rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--accent-vibe);
	font-weight: 500;
	margin-bottom: 14px;
}

/* ============ CURATION GRID (CARDS) ============ */
.grid-tiles-o52 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
@media (max-width: 980px) {
	.grid-tiles-o52 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 600px) {
	.grid-tiles-o52 {
		grid-template-columns: 1fr;
	}
}

.tile-card-i84 {
	background: var(--surface-layer);
	border: 1px solid var(--stroke-line);
	border-radius: var(--radius-card);
	padding: 28px;
	transition:
		transform var(--transition-base),
		box-shadow var(--transition-base),
		border-color var(--transition-base);
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	overflow: hidden;
}
.tile-card-i84:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lift);
	border-color: transparent;
}
.tile-cover-q11 {
	aspect-ratio: 4/3;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(135deg, #0a0a0b, #1d2230);
	position: relative;
	display: flex;
	align-items: flex-end;
	padding: 14px;
}
.tile-cover-q11.tone-a {
	background: linear-gradient(135deg, #0055ff, #4a8dff);
}
.tile-cover-q11.tone-b {
	background: linear-gradient(135deg, #0a0a0b, #303441);
}
.tile-cover-q11.tone-c {
	background: linear-gradient(135deg, #e8eef9, #b6c9ec);
	color: var(--ink-bold);
}
.tile-cover-q11.tone-d {
	background: linear-gradient(135deg, #091133, #0055ff);
}
.tile-cover-q11.tone-e {
	background: linear-gradient(135deg, #ff6b35, #f0c808);
}
.tile-cover-q11.tone-f {
	background: linear-gradient(135deg, #1b4332, #52b788);
}
.tile-badge-r45 {
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.14);
	padding: 6px 10px;
	border-radius: 6px;
	backdrop-filter: blur(8px);
}
.tile-cover-q11.tone-c .tile-badge-r45 {
	background: rgba(10, 10, 11, 0.08);
	color: var(--ink-bold);
}
.tile-title-s19 {
	font-size: 1.18rem;
	color: var(--ink-bold);
	font-weight: 700;
	letter-spacing: -0.01em;
}
.tile-meta-t86 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid var(--stroke-line);
}
.tile-meta-t86 b {
	color: var(--ink-bold);
	font-weight: 500;
}

/* ============ ARTISTS ============ */
.artist-row-u29 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
@media (max-width: 900px) {
	.artist-row-u29 {
		grid-template-columns: repeat(2, 1fr);
	}
}
.artist-item-v62 {
	text-align: center;
	padding: 28px 20px;
	border-radius: var(--radius-card);
	border: 1px solid var(--stroke-line);
	background: #fff;
	transition: all var(--transition-base);
}
.artist-item-v62:hover {
	box-shadow: var(--shadow-drop);
	border-color: var(--accent-vibe);
}
.artist-avatar-w38 {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	margin: 0 auto 16px;
	background: linear-gradient(135deg, #0055ff, #0a0a0b);
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
}
.artist-name-y44 {
	color: var(--ink-bold);
	font-weight: 500;
	font-size: 1rem;
	margin-bottom: 4px;
}
.artist-role-z81 {
	font-size: 0.85rem;
	color: var(--ink-soft);
}

/* ============ STEINBERG PANEL ============ */
.stein-panel-c72 {
	margin-top: 40px;
	border: 1px solid var(--stroke-line);
	border-radius: 24px;
	padding: clamp(28px, 4vw, 48px);
	background: linear-gradient(135deg, var(--surface-layer), #fff);
	display: grid;
	grid-template-columns: 1.2fr auto;
	gap: 32px;
	align-items: center;
}
.stein-panel-c72 h3 {
	margin-bottom: 10px;
}
.stein-panel-c72 p {
	font-size: 0.98rem;
	max-width: 56ch;
}
.stein-tag-d51 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--accent-vibe);
	font-weight: 500;
	margin-bottom: 14px;
}
.stein-tag-d51::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--accent-vibe);
}
@media (max-width: 720px) {
	.stein-panel-c72 {
		grid-template-columns: 1fr;
	}
}

/* ============ FOOTER ============ */
.foot-shell-e80 {
	margin-top: auto;
	background: var(--surface-layer);
	border-top: 1px solid var(--stroke-line);
	padding: 70px 0 30px;
}
.foot-grid-f03 {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
	gap: 40px;
}
@media (max-width: 980px) {
	.foot-grid-f03 {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 560px) {
	.foot-grid-f03 {
		grid-template-columns: 1fr;
	}
}
.foot-slot-g77 h4 {
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 18px;
	color: var(--ink-bold);
}
.foot-slot-g77 p,
.foot-slot-g77 li {
	font-size: 0.92rem;
	color: var(--ink-soft);
	margin-bottom: 10px;
}
.foot-slot-g77 ul {
	list-style: none;
}
.foot-slot-g77 a:hover {
	color: var(--accent-vibe);
}
.foot-brand-h29 {
	font-weight: 700;
	color: var(--ink-bold);
	font-size: 1.1rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.foot-brand-h29::before {
	content: '';
	width: 11px;
	height: 11px;
	border-radius: 3px;
	background: linear-gradient(135deg, var(--accent-vibe), #2e7bff);
}
.foot-partner-i54 {
	margin-top: 14px;
	padding: 14px;
	border: 1px dashed var(--stroke-line);
	border-radius: 12px;
	font-size: 0.85rem;
	color: var(--ink-bold);
	background: #fff;
}
.foot-partners-k82 {
	position: relative;
	overflow: hidden;
	margin-top: 46px;
	padding: 28px 30px 26px;
	border: 1px solid var(--stroke-line);
	border-radius: 18px;
	background:
		radial-gradient(
			120% 140% at 0% 0%,
			rgba(0, 85, 255, 0.06),
			transparent 55%
		),
		radial-gradient(
			120% 140% at 100% 100%,
			rgba(46, 123, 255, 0.05),
			transparent 60%
		),
		linear-gradient(180deg, #fff, var(--surface-layer));
	box-shadow:
		0 1px 0 rgba(0, 0, 0, 0.02),
		0 10px 28px -20px rgba(0, 85, 255, 0.28);
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 22px 26px;
	align-items: start;
}
.foot-partners-k82::before {
	content: '';
	position: absolute;
	inset: 0 0 auto 0;
	height: 2px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--accent-vibe) 30%,
		#2e7bff 70%,
		transparent
	);
	opacity: 0.7;
}
.foot-partners-k82 .foot-partners-label-l37 {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-family: 'Manrope', sans-serif;
	font-weight: 700;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink-bold);
	white-space: nowrap;
	padding: 9px 16px 9px 14px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(0, 85, 255, 0.22);
	box-shadow:
		0 4px 14px -6px rgba(0, 85, 255, 0.35),
		inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.foot-partners-k82 .foot-partners-label-l37::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: radial-gradient(
		circle at 30% 30%,
		#5a9bff,
		var(--accent-vibe) 70%
	);
	box-shadow:
		0 0 0 3px rgba(0, 85, 255, 0.12),
		0 0 10px rgba(0, 85, 255, 0.45);
}
.foot-partners-k82 p {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.7;
	color: var(--ink-soft);
	max-width: 72ch;
}
.foot-partners-k82 a {
	position: relative;
	color: var(--ink-bold);
	font-weight: 600;
	text-decoration: none;
	padding: 1px 2px;
	background-image: linear-gradient(
		180deg,
		transparent 62%,
		rgba(0, 85, 255, 0.18) 62%,
		rgba(0, 85, 255, 0.18) 100%
	);
	background-size: 100% 100%;
	transition:
		background-size 0.25s ease,
		color 0.2s ease;
}
.foot-partners-k82 a:hover {
	color: var(--accent-vibe);
	background-image: linear-gradient(
		180deg,
		transparent 0%,
		rgba(0, 85, 255, 0.18) 0%,
		rgba(0, 85, 255, 0.18) 100%
	);
}
@media (min-width: 720px) {
	.foot-partners-k82 {
		grid-template-columns: auto 1fr;
		align-items: center;
	}
	.foot-partners-k82 p {
		grid-column: 2 / 3;
	}
}
.foot-bar-j63 {
	margin-top: 50px;
	padding-top: 22px;
	border-top: 1px solid var(--stroke-line);
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	font-size: 0.82rem;
	color: var(--ink-soft);
}
.foot-bar-j63 nav {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
}

/* ============ ARTICLE / LEGAL / BROADCAST ============ */
.page-hero-k09 {
	padding: clamp(70px, 11vw, 140px) 0 40px;
	border-bottom: 1px solid var(--stroke-line);
}
.page-hero-k09 h1 {
	max-width: 20ch;
	margin-bottom: 20px;
}
.page-hero-k09 p {
	font-size: 1.1rem;
	max-width: 60ch;
}
.breadcrumb-l28 {
	font-size: 0.82rem;
	color: var(--ink-soft);
	margin-bottom: 24px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}
.breadcrumb-l28 a:hover {
	color: var(--accent-vibe);
}
.breadcrumb-l28 span {
	opacity: 0.5;
}

.post-list-m71 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}
@media (max-width: 780px) {
	.post-list-m71 {
		grid-template-columns: 1fr;
	}
}
.post-item-n39 {
	border: 1px solid var(--stroke-line);
	border-radius: var(--radius-card);
	overflow: hidden;
	background: #fff;
	transition: all var(--transition-base);
	display: flex;
	flex-direction: column;
}
.post-item-n39:hover {
	box-shadow: var(--shadow-lift);
	transform: translateY(-3px);
}
.post-cover-o84 {
	aspect-ratio: 16/9;
	display: flex;
	align-items: flex-end;
	padding: 18px;
	color: #fff;
}
.post-body-p12 {
	padding: 24px 28px 28px;
}
.post-date-q27 {
	font-size: 0.8rem;
	color: var(--accent-vibe);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 10px;
}
.post-title-r51 {
	color: var(--ink-bold);
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: -0.01em;
	margin-bottom: 12px;
	line-height: 1.25;
}
.post-excerpt-s83 {
	font-size: 0.95rem;
	margin-bottom: 16px;
}
.post-more-t04 {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--accent-vibe);
}
.post-more-t04::after {
	content: ' →';
}

.prose-scope-u70 {
	max-width: 760px;
	margin: 0 auto;
	padding: 60px 0 80px;
}
.prose-scope-u70 h2 {
	margin: 48px 0 18px;
}
.prose-scope-u70 h3 {
	margin: 30px 0 14px;
}
.prose-scope-u70 p {
	margin-bottom: 18px;
	font-size: 1.02rem;
}
.prose-scope-u70 ul {
	margin: 0 0 22px 22px;
}
.prose-scope-u70 li {
	margin-bottom: 8px;
	font-size: 1.02rem;
}
.prose-scope-u70 blockquote {
	margin: 28px 0;
	padding: 22px 28px;
	border-left: 3px solid var(--accent-vibe);
	background: var(--surface-layer);
	border-radius: 0 12px 12px 0;
	color: var(--ink-bold);
	font-size: 1.05rem;
	font-weight: 500;
}
.prose-scope-u70 .meta-bar-v45 {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 0.85rem;
	color: var(--ink-soft);
	margin-bottom: 36px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--stroke-line);
}
.prose-scope-u70 .meta-bar-v45 b {
	color: var(--ink-bold);
	font-weight: 500;
}

/* ============ CONTACT ============ */
.contact-grid-w91 {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: 60px;
}
@media (max-width: 900px) {
	.contact-grid-w91 {
		grid-template-columns: 1fr;
	}
}
.form-stack-x18 {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.field-wrap-y52 {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.field-wrap-y52 label {
	font-size: 0.82rem;
	font-weight: 500;
	color: var(--ink-bold);
	letter-spacing: 0.02em;
}
.field-wrap-y52 input,
.field-wrap-y52 select,
.field-wrap-y52 textarea {
	font-family: inherit;
	font-size: 0.95rem;
	color: var(--ink-bold);
	padding: 14px 16px;
	border: 1px solid var(--stroke-line);
	border-radius: 12px;
	background: #fff;
	transition:
		border-color var(--transition-base),
		box-shadow var(--transition-base);
	width: 100%;
	outline: none;
}
.field-wrap-y52 textarea {
	min-height: 140px;
	resize: vertical;
}
.field-wrap-y52 input:focus,
.field-wrap-y52 select:focus,
.field-wrap-y52 textarea:focus {
	border-color: var(--accent-vibe);
	box-shadow: 0 0 0 4px var(--accent-vibe-soft);
}
.form-feedback-z06 {
	font-size: 0.88rem;
	color: var(--accent-vibe);
	margin-top: 6px;
	min-height: 18px;
}
.contact-card-a39 {
	background: var(--surface-layer);
	border: 1px solid var(--stroke-line);
	padding: 30px;
	border-radius: var(--radius-card);
	margin-bottom: 18px;
}
.contact-card-a39 h4 {
	font-size: 0.82rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--ink-bold);
}
.contact-card-a39 p {
	font-size: 0.98rem;
	color: var(--ink-soft);
}
.contact-card-a39 a {
	color: var(--ink-bold);
	font-weight: 500;
}
.map-embed-b58 {
	border-radius: var(--radius-card);
	overflow: hidden;
	border: 1px solid var(--stroke-line);
	aspect-ratio: 4/3;
	position: relative;
	background: var(--surface-layer);
}
.map-embed-b58 iframe,
.map-placeholder-c83 {
	width: 100%;
	height: 100%;
	border: 0;
}
.map-placeholder-c83 {
	display: grid;
	place-items: center;
	text-align: center;
	background:
		repeating-linear-gradient(
			45deg,
			transparent 0 18px,
			rgba(0, 85, 255, 0.04) 18px 19px
		),
		linear-gradient(135deg, #f0f4fb, #fff);
	color: var(--ink-soft);
	font-size: 0.9rem;
	padding: 30px;
}
.map-pin-d19 {
	width: 44px;
	height: 44px;
	border-radius: 50% 50% 50% 2px;
	transform: rotate(-45deg);
	background: var(--accent-vibe);
	margin-bottom: 14px;
	box-shadow: 0 14px 30px rgba(0, 85, 255, 0.3);
}

/* ============ MISC ============ */
.divider-line-e41 {
	height: 1px;
	background: var(--stroke-line);
	margin: 60px 0;
}
.tag-chip-f06 {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--surface-layer);
	font-size: 0.78rem;
	color: var(--ink-soft);
	border: 1px solid var(--stroke-line);
	margin-right: 6px;
	margin-bottom: 6px;
}
.related-block-g74 {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--stroke-line);
}
