/* ============================================
   TRAIL NINE MEDIA — CHILD THEME STYLES
   ============================================ */

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
	/* Brand */
	--tnm-green:      #00541C;
	--tnm-green-dark: #003d14;
	--tnm-blue:       var(--tnm-green); /* deprecated alias — kept for old refs */

	/* Backgrounds */
	--tnm-dark:       #0d0d0d;
	--tnm-card-dark:  #1a1a1a;
	--tnm-light:      #f7f7f7;

	/* Text */
	--tnm-text:       #1a1a1a;
	--tnm-muted:      #666666;

	/* Spacing scale */
	--tnm-space-xs:   24px;
	--tnm-space-sm:   48px;
	--tnm-space-md:   72px;
	--tnm-space-lg:   96px;

	/* Typography */
	--tnm-lh-body:    1.75;
	--tnm-lh-tight:   1.1;
	--tnm-lh-loose:   1.85;
}

/* Global */
body, p, .entry-content, .site-content {
	color: #000000;
}

.site-title,
.site-description {
	display: none;
}

/* Header logo size */
.custom-logo {
	width: 160px;
	height: auto;
}

/* Nav font size */
.main-navigation .menu-item a,
.main-navigation a {
	font-size: 1rem;
}

/* Suppress Twenty Seventeen down-arrow scroll indicator in nav */
.navigation-top .menu-scroll-down,
.menu-scroll-down {
	display: none;
}

/* Remove logo from header */
.site-header .custom-logo-link,
.site-branding .custom-logo-link,
a.custom-logo-link {
	display: none !important;
}

/* Remove WordPress footer credit */
.site-info {
	display: none !important;
}

/* ============================================
 GLOBAL PAGE STYLES
 ============================================ */

/* Hide footer widgets and WordPress credit only */
.site-footer .widget-area,
.site-info {
	display: none !important;
}

/* Hide header banner image on all inner pages — homepage only */
body:not(.home) .custom-header-media,
body:not(.home) .custom-header,
.home .custom-header-media,
.home .custom-header {
	display: none !important;
}

/* Homepage video placeholder (reel goes here at deploy) */
.tnm-video-placeholder {
	background: #0d0d0d;
	min-height: 400px;
}

/* ============================================
   REELS PAGE — cinematic dark grid
   ============================================ */

/* Suppress default page chrome on Reels so the dark section owns the page */
.page-id-395 .tnm-page__header,
.page-id-395 .tnm-page__title {
	display: none !important;
}
.page-id-395 .tnm-page__inner {
	max-width: none;
	padding: 0;
}
.page-id-395 .tnm-page {
	background: #0d0d0d;
}

/* Full-bleed dark section */
.tnm-reels-section {
	background: #0d0d0d;
	color: #ffffff;
	padding: 90px 24px 96px;
}

.tnm-reels-section__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Section header */
.tnm-reels-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 64px;
}

.tnm-reels-header__eyebrow {
	display: inline-block;
	color: var(--tnm-green);
	font-size: 0.78em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	margin-bottom: 14px;
}

.tnm-reels-header__title {
	color: #ffffff;
	font-size: clamp(2.2em, 5vw, 3.2em);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 18px;
	line-height: 1.05;
}

.tnm-reels-header__title::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: var(--tnm-green);
	margin: 20px auto 0;
}

.tnm-reels-header__intro {
	color: #999999 !important;
	font-size: 1.02em;
	line-height: 1.8;
	font-weight: 400;
	margin: 0;
	text-align: center;
}

/* 2-column grid — uniform cells; odd trailing card stays column 1 */
.tnm-reels {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	gap: 48px 44px;
}

/* Reel cards — equal size regardless of native video dimensions */
.tnm-reel-item {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #1a1a1a;
	border: 1px solid #2a2a2a;
	border-radius: 8px;
	overflow: hidden;
	transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.tnm-reel-item:hover {
	transform: translateY(-6px);
	border-color: var(--tnm-green);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.tnm-reel-embed {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: #000000;
}

.tnm-reel-embed iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 0;
}

/* Card meta — pinned to bottom so all meta blocks align across the row */
.tnm-reel-meta {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 22px 26px 24px;
	border-top: 1px solid #242424;
}

.tnm-reel-cat {
	display: inline-block;
	color: var(--tnm-green);
	font-size: 0.72em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	margin-bottom: 8px;
}

.tnm-reel-label {
	font-size: 1.15em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #ffffff;
	margin: 0;
	word-break: normal;
	overflow-wrap: normal;
}

@media (max-width: 768px) {
	.tnm-reels-section {
		padding: 64px 18px 72px;
	}
	.tnm-reels-header {
		margin-bottom: 44px;
	}
	.tnm-reels {
		gap: 36px 32px;
	}
}

/* Recent Work (page 41): break out of the constrained standard
   page wrapper so the full-bleed dark reels section spans full width,
   and drop the 60vh min-height that left dead space before the footer. */
.page-id-41 .tnm-page {
	min-height: 0;
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.page-id-41 .tnm-page__inner {
	max-width: none;
	padding: 0;
}

/* Kill Twenty Seventeen's #content padding (88px top / 52px bottom) and the
   white .site-content-contain bg so the dark reels section and green CTA sit
   flush — no white band above the section or between the CTA and footer. */
.page-id-41 .site-content-contain {
	background: #0d0d0d !important;
}
.page-id-41 #content.site-content {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

/* Footer: collapse Twenty Seventeen's white bg/border/margin-top (3em) so the
   green CTA flows straight into the dark footer with no white strip. */
.page-id-41 .site-footer {
	background: #0d0d0d !important;
	border-top: 0 !important;
	margin: 0 !important;
}
.page-id-41 .site-footer .wrap {
	background: #0d0d0d !important;
	margin: 0 auto !important;
}

.page-id-41 .tnm-page__content {
	display: block;
}

/* Mobile: stack reels to one column below 480px */
@media (max-width: 480px) {
	.tnm-reels {
		grid-template-columns: 1fr;
	}
}

/* Standard page layout */
.tnm-page {
	background: #ffffff;
	min-height: 60vh;
}

.tnm-page__inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 60px 40px;
}

.tnm-page__title {
	font-size: 2em;
	font-weight: 700;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
	border-bottom: 2px solid #000000;
	padding-bottom: 16px;
}

.tnm-page__content p {
	color: #000000;
	font-size: 1em;
	line-height: 1.8;
	margin-bottom: 1.4em;
}

/* Responsive */
@media (max-width: 768px) {
	.tnm-page__inner {
		padding: 40px 20px;
	}

	.tnm-page__title {
		font-size: 1.5em;
	}
}

/* ============================================
   TEAM PAGE
   ============================================ */
.tnm-team {
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.tnm-team-member {
	display: flex;
	flex-direction: row;
	gap: 50px;
	align-items: flex-start;
}

.tnm-team-member__photo {
	flex: 0 0 240px;
	height: 300px;
	overflow: hidden;
}

.tnm-team-member__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
	filter: grayscale(20%);
}

.tnm-team-member__info {
	flex: 1;
}

.tnm-team-member__name {
	font-size: 1.4em;
	font-weight: 700;
	color: #000000;
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.tnm-team-member__title {
	font-size: 0.85em;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	color: #666666;
	margin-bottom: 20px;
	font-weight: 600;
}

.tnm-team-member__bio p {
	font-size: 0.95em;
	line-height: 1.8;
	color: #000000;
	margin-bottom: 1.2em;
}

@media (max-width: 768px) {
	.tnm-team-member {
		flex-direction: column;
	}

	.tnm-team-member__photo {
		flex: 0 0 auto;
		width: 100%;
		max-width: 280px;
	}
}

/* ============================================
 OUR SERVICES PAGE
 ============================================ */
.tnm-services {
	max-width: 1200px;
	margin: 0 auto;
}

.tnm-services__intro {
	font-size: 1.02em;
	color: #999999 !important;
	margin: 0;
	line-height: 1.8;
	text-align: center;
}

/* Dark page bg (Our Services) — cover every wrapper so no white/black gap shows */
.page-id-321,
.page-id-321 .site-content-contain,
.page-id-321 .site-content,
.page-id-321 .tnm-page,
.page-id-321 .tnm-page__inner {
	background: #0d0d0d;
}

/* Suppress default WP page title (we render our own header) */
.page-id-321 .tnm-page__title,
.page-id-321 .entry-title,
.page-id-321 .page-title {
	display: none !important;
}

/* Pull CTA flush to the dark section — no black gap below the cards or CTA */
.page-id-321 .tnm-page {
	min-height: 0;
}

.page-id-321 .tnm-page__inner {
	padding-bottom: 0;
}

/* Make the wider grid usable inside the constrained page inner */
.page-id-321 .tnm-page__inner {
	max-width: 1200px;
}

/* CTA is the clean end — remove all trailing space below it before the footer */
.page-id-321 .tnm-page__inner {
	padding-bottom: 0 !important;
}

.page-id-321 .site-content {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.page-id-321 .tnm-page {
	padding-bottom: 0 !important;
	margin-bottom: 0 !important;
}

.page-id-321 .tnm-services-cta {
	margin-bottom: 0;
}

/* Footer: collapse Twenty Seventeen's white bg, border, margin-top (3em).
   Keep vertical padding so the global dark footer social bar can breathe. */
.page-id-321 .site-footer {
	background: #0d0d0d !important;
	border-top: 0 !important;
	margin: 0 !important;
}
.page-id-321 .site-footer .wrap {
	background: #0d0d0d !important;
	margin: 0 auto !important;
}

/* Header (dark section) — symmetric vertical rhythm (header band reads ~80px
   top/bottom; total top = page-inner 60px + 20px). */
.tnm-services__header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto;
	padding: 20px 0 56px;
}

.tnm-services__heading {
	color: #ffffff;
	font-size: clamp(2.2em, 5vw, 3.2em);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	line-height: 1.05;
	margin: 0 0 18px;
}

.tnm-services__heading::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: var(--tnm-green);
	margin: 20px auto 0;
}

/* Grid sits in a LIGHT section (#f7f7f7) for visual breathing room between
   the dark header above and green CTA below. Full-bleed light band. */
.tnm-services__grid {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	background: #f7f7f7;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: stretch;
	margin-bottom: 0;
	padding: 88px max(24px, calc(50vw - 600px));
	box-sizing: border-box;
}

.tnm-service-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 100%;
	text-align: left;
	background: #ffffff;
	padding: 44px 40px;
	border: 0;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tnm-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.tnm-service-card__icon {
	font-size: 36px;
	line-height: 1;
	color: var(--tnm-green);
	margin-bottom: 24px;
}

.tnm-service-card__title {
	font-size: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #1a1a1a;
	margin: 0;
	line-height: 1.35;
}

.tnm-service-card__divider {
	width: 100%;
	height: 0;
	border: 0;
	border-top: 1px solid #e4e4e4;
	margin: 18px 0;
}

.tnm-service-card__desc {
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.75;
	color: #1a1a1a !important;
	margin: 0;
}

/* Full-width green CTA bar — lifted with top accent border + subtle texture */
.tnm-services-cta {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
	background:
		linear-gradient(rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0)) ,
		var(--tnm-green);
	border-top: 3px solid #ffffff;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	padding: 96px 24px;
}

.tnm-services-cta__inner {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.tnm-services-cta__heading {
	color: #ffffff;
	font-size: 1.6em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 28px;
}

.tnm-services-cta__button {
	display: inline-block;
	padding: 16px 48px;
	border: 2px solid #ffffff;
	border-bottom-width: 3px;
	color: var(--tnm-green);
	background: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.85em;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tnm-services-cta__button:hover {
	background: var(--tnm-green);
	color: #ffffff;
	border-color: #ffffff;
}

@media (max-width: 860px) {
	.tnm-services__grid {
		grid-template-columns: repeat(2, 1fr);
		padding: 56px max(20px, calc(50vw - 360px));
	}
}

/* ============================================
 CONTACT PAGE (two-panel)
 ============================================ */
.page-id-93 .entry-title,
.page-id-93 .page-title,
.tnm-contact-page .entry-title {
	display: none !important;
}

.tnm-contact-page {
	--fr-accent: var(--tnm-green);
	background: #f7f7f7;
	padding: 70px 24px 90px;
}

.tnm-contact-page__header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 40px;
}

.tnm-contact-page__title {
	color: #111111;
	font-size: clamp(1.8em, 4vw, 2.4em);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 12px;
}

.tnm-contact-page__subtitle {
	color: #777777;
	font-size: 1.05rem;
	margin: 0;
}

/* Rounded two-panel container */
.tnm-contact-panels {
	display: flex;
	align-items: stretch;
	max-width: 1000px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Left dark info panel */
.tnm-contact-info {
	flex: 0 0 35%;
	background: #1a1a1a;
	color: #ffffff;
	padding: 40px;
}

.tnm-contact-info__heading {
	color: #ffffff;
	font-size: 1.3em;
	font-weight: 700;
	margin: 0 0 12px;
}

.tnm-contact-info__sub {
	color: #aaaaaa;
	font-size: 0.95rem;
	line-height: 1.6;
	margin: 0 0 40px;
}

.tnm-contact-info__list {
	list-style: none;
	margin: 0 0 50px;
	padding: 0;
}

.tnm-contact-info__list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	color: #ffffff;
	font-size: 0.9rem;
	line-height: 1.5;
	padding: 10px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tnm-contact-info__list li:last-child {
	border-bottom: 0;
}

.tnm-contact-info__list li i {
	color: var(--tnm-green);
	font-size: 1.1em;
	width: 20px;
	text-align: center;
}

.tnm-contact-info__list a {
	color: #ffffff;
	text-decoration: none;
}

.tnm-contact-info__list a:hover {
	color: var(--fr-accent);
}

.tnm-contact-info__social {
	display: flex;
	gap: 22px;
}

.tnm-contact-info__social a {
	color: var(--fr-accent);
	font-size: 1.4em;
	transition: opacity 0.2s ease;
}

.tnm-contact-info__social a:hover {
	opacity: 0.7;
}

/* Right form panel */
.tnm-contact-form {
	flex: 1 1 65%;
	padding: 40px;
}

.tnm-contact-form .wpforms-container {
	max-width: none;
	margin: 0;
}

/* Underline-style inputs (no boxes) */
.tnm-contact-form .wpforms-field input,
.tnm-contact-form .wpforms-field textarea {
	border: 0 !important;
	border-bottom: 1px solid #cccccc !important;
	border-radius: 0 !important;
	background: transparent !important;
	padding: 10px 2px !important;
	font-size: 0.95em !important;
	width: 100% !important;
	color: #000000 !important;
	box-shadow: none !important;
}

.tnm-contact-form .wpforms-field input:focus,
.tnm-contact-form .wpforms-field textarea:focus {
	border-bottom-color: var(--tnm-green) !important;
	outline: none !important;
}

.tnm-contact-form .wpforms-field textarea {
	min-height: 120px !important;
	resize: vertical;
}

.tnm-contact-form .wpforms-submit-container button {
	display: inline-block !important;
	width: auto !important;
	background: #00541C !important;
	color: #ffffff !important;
	border: none !important;
	padding: 14px 36px !important;
	text-transform: uppercase !important;
	letter-spacing: 0.1em !important;
	font-size: 0.85rem !important;
	font-weight: 600 !important;
	border-radius: 4px !important;
	cursor: pointer !important;
	transition: all 0.25s ease !important;
}

.tnm-contact-form .wpforms-submit-container button:hover,
.tnm-contact-form .wpforms-submit-container button:focus {
	background: #003d14 !important;
	color: #ffffff !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 6px 20px rgba(0, 84, 28, 0.35) !important;
}

@media (max-width: 768px) {
	.tnm-contact-panels {
		flex-direction: column;
	}
	.tnm-contact-info {
		flex: 1 1 auto;
	}
}



/* ============================================
 FUN RAISING PAGE (cinematic landing)
 ============================================ */
.tnm-fr {
	/* Fun Raising palette (page-scoped; NO brand green/blue here) */
	--fr-pink: #E8A0BF;
	--fr-orange: #F4854E;
	--fr-lightblue: #5BB8D4;
	--fr-darkblue: #1A3A5C;
	--fr-accent: var(--fr-orange);   /* primary accent */
	--fr-accent-2: var(--fr-lightblue);
	--fr-accent-3: var(--fr-pink);
	--fr-dark: var(--fr-darkblue);   /* section bg */
	--fr-card: #16304b;              /* card bg (slightly deeper dark blue) */
}

/* Let sections go full-bleed regardless of the theme container */
.tnm-fr section {
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
	width: 100vw;
}

/* 1. Hero (image only) */
.tnm-fr-hero {
	background-color: var(--fr-dark);
	background-size: cover;
	background-position: center;
	min-height: 360px;
	max-height: 500px;
	height: 56vh;
}

/* 2. Intro + Overview (two-column) */
.tnm-fr-intro {
	background: var(--fr-dark);
	padding: 80px 24px;
}

.tnm-fr-intro__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

.tnm-fr-intro__left {
	flex: 0 0 40%;
}

.tnm-fr-intro__right {
	flex: 0 0 calc(60% - 60px);
}

.tnm-fr-intro__title {
	color: #ffffff;
	font-size: clamp(1.6em, 3vw, 2.2em);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin: 0 0 16px;
	line-height: 1.15;
}

.tnm-fr-intro__sub {
	color: #cfe3ee;
	font-size: clamp(1em, 2vw, 1.2em);
	font-weight: 300;
	letter-spacing: 0.03em;
	margin: 0 0 14px;
}

.tnm-fr-intro__tagline {
	color: var(--fr-accent);
	font-style: italic;
	font-size: clamp(1em, 1.8vw, 1.15em);
	margin: 0;
}

.tnm-fr-intro__right p {
	color: #d6e2ec;
	font-size: 1rem;
	line-height: 1.8;
	font-weight: 400;
	text-align: left;
	margin: 0 0 1.4em;
}

.tnm-fr-intro__right p:last-child {
	margin-bottom: 0;
}

/* Shared section heading + label */
.tnm-fr-heading {
	color: var(--fr-accent);
	text-align: center;
	font-size: clamp(1.6em, 4vw, 2.2em);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	margin: 0 0 18px;
}

.tnm-fr-label {
	display: block;
	color: var(--fr-accent);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.8em;
	font-weight: 700;
	margin-bottom: 22px;
}

/* 3. The Format — dark section matching the act card backgrounds */
.tnm-fr-format {
	background: var(--fr-dark);
	padding: 90px 24px;
}

.tnm-fr-format__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.tnm-fr-format__sub {
	color: #cfe3ee;
	text-align: center;
	font-size: 1.05rem;
	line-height: 1.75;
	max-width: 700px;
	margin: 0 auto 50px;
}

.tnm-fr-acts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	align-items: stretch;
}

.tnm-fr-act {
	background: var(--fr-card);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 8px;
	padding: 40px;
	text-align: left;
	transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.tnm-fr-act:hover {
	border-color: var(--fr-accent-2);
	transform: translateY(-4px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.tnm-fr-act__label {
	color: var(--fr-accent-2);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.8em;
	font-weight: 700;
	margin-bottom: 14px;
}

.tnm-fr-act__title {
	color: #ffffff;
	font-size: 1.3em;
	font-weight: 700;
	margin: 0 0 16px;
}

.tnm-fr-act__desc {
	color: #aaaaaa;
	font-size: 0.9rem;
	line-height: 1.75;
	margin: 0;
}

/* 4. Tone & Style */
.tnm-fr-tone {
	background: var(--fr-dark);
	padding: 90px 24px;
}

.tnm-fr-tone__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.tnm-fr-quote {
	font-size: clamp(1.5em, 4vw, 2.2em);
	font-style: italic;
	font-weight: 700;
	color: #ffffff;
	line-height: 1.3;
	margin: 0 0 40px;
	border: 0;
	padding: 0;
}

.tnm-fr-tone__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.tnm-fr-tone__list li {
	color: #d6e2ec;
	font-size: 1.05rem;
	line-height: 1.7;
	padding: 14px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tnm-fr-tone__list li:last-child {
	border-bottom: 0;
}

/* 5. Why It Matters (light section for visual separation) */
.tnm-fr-why {
	background: #f7f7f7;
	padding: 90px 24px;
}

.tnm-fr-why__inner {
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.tnm-fr-stats {
	display: flex;
	justify-content: center;
	gap: 60px;
	flex-wrap: wrap;
	margin: 40px 0 50px;
}

.tnm-fr-stat {
	flex: 1 1 280px;
	max-width: 380px;
}

.tnm-fr-stat__num {
	color: #C75A28;
	font-size: clamp(3em, 9vw, 5em);
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.02em;
}

.tnm-fr-stat__desc {
	color: #1a1a1a;
	font-size: 1rem;
	line-height: 1.6;
	margin-top: 16px;
}

.tnm-fr-why__copy p {
	color: #333333;
	font-size: 1.05rem;
	line-height: 1.85;
	margin: 0 0 1.3em;
}

.tnm-fr-why__copy p:last-child {
	margin-bottom: 0;
}

/* 6. CTA */
.tnm-fr-cta {
	background: var(--fr-dark);
	border-top: 3px solid var(--fr-accent);
	padding: 80px 24px;
}

.tnm-fr-cta__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.tnm-fr-cta__heading {
	color: #ffffff;
	font-size: clamp(1.4em, 3.4vw, 2em);
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 36px;
}

.tnm-fr-cta__buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

.tnm-fr-btn {
	display: inline-block;
	width: auto;
	padding: 14px 36px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
	font-weight: 600;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s ease;
}

.tnm-fr-btn--solid {
	background: var(--fr-orange);
	color: #ffffff;
	border: 2px solid var(--fr-orange);
}

.tnm-fr-btn--solid:hover,
.tnm-fr-btn--solid:focus {
	background: #ffffff;
	color: var(--fr-orange);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(244, 133, 78, 0.35);
}

.tnm-fr-btn--outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid #ffffff;
}

.tnm-fr-btn--outline:hover,
.tnm-fr-btn--outline:focus {
	background: #ffffff;
	color: var(--fr-accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

@media (max-width: 860px) {
	.tnm-fr-acts {
		grid-template-columns: 1fr;
	}
	.tnm-fr-stats {
		gap: 40px;
	}
	.tnm-fr-intro__inner {
		flex-direction: column;
		gap: 28px;
	}
	.tnm-fr-intro__left,
	.tnm-fr-intro__right {
		flex: 1 1 100%;
	}
}

/* ============================================
 NAV BAR LOGO (horizontal, left) + menu (right)
 ============================================ */
/* Fun Raising: suppress any default page/entry title between nav and hero */
.page-id-387 .entry-title,
.page-id-387 .page-title,
.page-id-387 .entry-header {
	display: none !important;
}

/* Force a single clean row: logo left, menu right, vertically centered */
.navigation-top .tnm-nav-wrap {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 24px;
	min-height: 84px;
	padding-top: 0;
	padding-bottom: 0;
}

.tnm-nav-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	line-height: 0;
}

.tnm-nav-logo img {
	max-height: 45px;
	width: auto;
	height: auto;
	display: block;
}

/* Menu sits to the right; override Twenty Seventeen block/clear/full-width */
.navigation-top .tnm-nav-wrap .main-navigation {
	display: flex !important;
	align-items: center;
	clear: none !important;
	flex: 0 1 auto;
	width: auto;
	margin: 0;
}

.navigation-top .tnm-nav-wrap .main-navigation > div,
.navigation-top .tnm-nav-wrap .main-navigation .menu-side-menu-container {
	width: auto;
	margin: 0;
}

.navigation-top .tnm-nav-wrap .main-navigation .menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: flex-end;
	padding: 0;
	margin: 0;
}

.navigation-top .tnm-nav-wrap .main-navigation .menu li {
	margin: 0;
	white-space: nowrap;
}

.navigation-top .tnm-nav-wrap .main-navigation .menu li a {
	padding-left: 14px;
	padding-right: 14px;
}

/* Widen nav wrap a touch so logo + 7 items fit one row */
.navigation-top .tnm-nav-wrap {
	max-width: 1200px;
}

/* ============================================
   FOOTER — social icon bar (all pages)
   ============================================ */
.tnm-social {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	margin: 8px auto 32px;
	padding: 0;
}

.tnm-social__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	color: #ffffff;
	border: 2px solid #ffffff;
	font-size: 1.15rem;
	text-decoration: none;
	box-shadow: none;
	transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.tnm-social__link:hover,
.tnm-social__link:focus {
	color: #ffffff;
	background-color: var(--tnm-green);
	border-color: var(--tnm-green);
	transform: translateY(-3px);
}

.tnm-social__link i {
	line-height: 1;
}

@media (max-width: 768px) {
	.tnm-social {
		gap: 22px;
		margin: 8px auto 28px;
	}
	.tnm-social__link {
		width: 44px;
		height: 44px;
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.tnm-social {
		gap: 18px;
	}
	.tnm-social__link {
		width: 42px;
		height: 42px;
		font-size: 1.05rem;
	}
}

/* ============================================
   CONTRAST & VISUAL HIERARCHY PASS (global)
   Tokens: #0d0d0d dark bg · #1a1a1a cards · #f7f7f7 light bg
           #cccccc body-on-dark · #1a1a1a body-on-light · #00541C accent
   ============================================ */

/* Global dark footer so white social icons read on every page */
.site-footer {
	background: #0d0d0d !important;
	border-top: 0 !important;
}
.site-footer .wrap {
	padding-top: 36px !important;
	padding-bottom: 40px !important;
}

/* Footer social bar spacing on dark footer */
.tnm-social {
	margin: 0 auto 16px;
}

/* Body text contrast tokens */
.tnm-reels-header__intro,
.tnm-reel-label--muted {
	color: #cccccc !important;
}

/* Body copy on light sections reads dark */
.tnm-service-card__desc,
.tnm-service-card__title {
	color: #1a1a1a;
}

/* Nav: white bar globally; dark, readable links against white */
.navigation-top {
	background: #ffffff !important;
	border-top: 0 !important;
	border-bottom: 1px solid #e4e4e4 !important;
}

.navigation-top .main-navigation a,
.navigation-top .main-navigation .menu-item a {
	color: #1a1a1a !important;
}

.navigation-top .main-navigation a:hover,
.navigation-top .main-navigation .menu-item a:hover,
.navigation-top .main-navigation .current-menu-item > a {
	color: var(--tnm-green) !important;
}

@media (max-width: 480px) {
	.tnm-services__grid {
		grid-template-columns: 1fr;
		padding: 48px 20px;
		gap: 20px;
	}
	.tnm-services-cta {
		padding: 56px 20px;
	}
	.tnm-service-card {
		padding: 26px;
	}
}

/* ============================================
   HOME HERO — dark, headline + CTA left, cameraman right
   ============================================ */
.tnm-home-hero {
	background: #0d0d0d;
	min-height: 75vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
	box-sizing: border-box;
}

/* Full-bleed background video hero */
.tnm-home-hero--video {
	position: relative;
	overflow: hidden;
	min-height: 85vh;
}

.tnm-home-hero__video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: 0;
}

.tnm-home-hero__inner {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 56px;
}

.tnm-home-hero__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	align-self: center;
	padding-left: 60px;
}

.tnm-home-hero__headline {
	color: #ffffff;
	font-size: clamp(2.4em, 5vw, 4em);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0.01em;
	margin: 0 0 36px;
}

.tnm-home-hero__cta {
	display: inline-block;
	background: var(--tnm-green);
	color: #ffffff;
	padding: 16px 44px;
	border: 2px solid var(--tnm-green);
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.85em;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tnm-home-hero__cta:hover,
.tnm-home-hero__cta:focus {
	background: var(--tnm-green-dark);
	color: #ffffff;
	border-color: var(--tnm-green-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 84, 28, 0.35);
}

.tnm-home-hero__media {
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
}

.tnm-home-hero__media img {
	max-width: 100%;
	max-height: 60vh;
	height: auto;
	width: auto;
	display: block;
}

.tnm-home-hero__logo {
	max-width: 320px !important;
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* ============================================
   HOME ABOUT — two-column (text left, image right)
   ============================================ */
.tnm-about {
	background: #ffffff;
	padding: 88px 24px;
}

.tnm-about__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 56px;
}

.tnm-about__text {
	align-self: center;
}

.tnm-about__media {
	align-self: center;
}

.tnm-about__text p {
	color: #1a1a1a;
	font-size: 1.02rem;
	line-height: var(--tnm-lh-loose);
	margin: 0 0 18px;
}

.tnm-about__text p:last-child {
	margin-bottom: 0;
}

.tnm-about__media {
	display: flex;
	justify-content: center;
	align-items: center;
}

.tnm-about__media img {
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 860px) {
	.tnm-about {
		padding: 64px 20px;
	}
	.tnm-about__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.tnm-about__text {
		order: 1;
	}
	.tnm-about__media {
		order: 2;
	}
	.tnm-about__media img {
		max-width: 460px;
		margin: 0 auto;
	}
	.tnm-home-hero__inner {
		grid-template-columns: 1fr;
		gap: 32px;
		text-align: center;
	}
	.tnm-home-hero__text {
		order: 1;
		padding-left: 0;
		align-items: center;
	}
	.tnm-home-hero__media {
		order: 2;
		justify-content: center;
	}
	.tnm-home-hero__media img {
		max-width: 420px;
	}
}

@media (max-width: 480px) {
	.tnm-home-hero {
		min-height: 0;
		padding: 48px 20px;
	}
	.tnm-home-hero__media img {
		max-width: 100%;
	}
}

/* ============================================
   THE TEAM PAGE — banner + alternating cards
   ============================================ */

/* Suppress default WP page title (banner carries the heading) */
.page-id-61 .tnm-page__header,
.page-id-61 .tnm-page__title,
.page-id-61 .entry-title,
.page-id-61 .page-title {
	display: none !important;
}
.page-id-61 .tnm-page__inner {
	max-width: none;
	padding: 0;
}

/* Full-width banner */
.tnm-team-banner {
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.tnm-team-banner__title {
	color: #ffffff;
	font-size: clamp(2.2em, 6vw, 3.6em);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	margin: 0;
	text-align: center;
}

/* Cards wrapper */
.tnm-team-cards {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 24px;
	display: flex;
	flex-direction: column;
	gap: 56px;
}

.tnm-team-card {
	display: flex;
	align-items: stretch;
	gap: 44px;
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
	padding: 44px;
}

.tnm-team-card--reverse {
	flex-direction: row-reverse;
}

.tnm-team-card__photo {
	flex: 0 0 250px;
}

.tnm-team-card__photo img {
	width: 250px;
	height: 320px;
	object-fit: cover;
	border-radius: 10px;
	display: block;
}

.tnm-team-card__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.tnm-team-card__name {
	font-size: 1.7em;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0 0 4px;
	letter-spacing: 0.01em;
}

.tnm-team-card__role {
	font-size: 0.85em;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--tnm-green);
	margin: 0 0 20px;
}

.tnm-team-card__bio p {
	font-size: 0.96rem;
	line-height: var(--tnm-lh-loose);
	color: #1a1a1a !important;
	margin: 0 0 16px;
}

.tnm-team-card__bio p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.tnm-team-cards {
		padding: 56px 20px;
		gap: 40px;
	}
	.tnm-team-card,
	.tnm-team-card--reverse {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 28px;
		padding: 32px 26px;
	}
	.tnm-team-card__photo {
		flex: 0 0 auto;
	}
	.tnm-team-card__body {
		text-align: left;
	}
	.tnm-team-card__bio p {
		text-align: left;
	}
}

@media (max-width: 480px) {
	.tnm-team-banner {
		min-height: 300px;
	}
	.tnm-team-card__photo img {
		width: 220px;
		height: 280px;
	}
}

/* Fun Raising: keep nav active/hover off-palette green away from this page */
.page-id-387 .navigation-top .main-navigation .current-menu-item > a,
.page-id-387 .navigation-top .main-navigation a:hover {
	color: #F4854E !important;
}

/* ============================================
   HOME ABOUT STRIP (dark, single line + green underline)
   ============================================ */
.tnm-about-strip {
	background: #ffffff;
	padding: 80px 24px;
}

.tnm-about-strip__inner {
	max-width: 880px;
	margin: 0 auto;
	text-align: center;
}

/* Two-column variant: copy left, logo right */
.tnm-about-strip__inner--two-col {
	max-width: 1140px;
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	align-items: center;
	gap: 60px;
	text-align: left;
}

.tnm-about-strip__inner--two-col .tnm-about-strip__copy p {
	text-align: left;
}

.tnm-about-strip__logo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.tnm-about-strip__logo img {
	max-width: 100%;
	width: auto;
	height: auto;
	max-height: 320px;
	display: block;
}

/* Drop the centered green divider in two-col layout */
.tnm-about-strip__inner--two-col::after {
	display: none;
}

@media (max-width: 768px) {
	.tnm-about-strip__inner--two-col {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.tnm-about-strip__inner--two-col .tnm-about-strip__copy p {
		text-align: left;
	}
	.tnm-about-strip__logo img {
		max-height: 220px;
	}
}

.tnm-about-strip__copy p {
	color: #2a2a2a;
	font-size: clamp(1rem, 1.15vw, 1.0625rem);
	font-weight: 400;
	line-height: var(--tnm-lh-loose);
	margin: 0 0 1.25em;
}

.tnm-about-strip__copy p:first-child {
	color: #0d0d0d;
	font-size: clamp(1.2rem, 2vw, 1.5rem);
	font-weight: 600;
	line-height: 1.45;
	letter-spacing: -0.01em;
	margin-bottom: 0.9em;
}

.tnm-about-strip__copy p:last-child {
	margin-bottom: 0;
}

.tnm-about-strip__copy strong {
	color: #0d0d0d;
}

/* See Our Work — full-width dark section with single button */
.tnm-seework {
	background: #0d0d0d;
	padding: 72px 24px;
	text-align: center;
}

.tnm-seework__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.tnm-seework__headline {
	color: #ffffff;
	font-size: clamp(1.9em, 4vw, 3em);
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0.02em;
	margin: 0 0 36px;
}

.tnm-seework__button {
	display: inline-block;
	background: var(--tnm-green);
	color: #ffffff;
	padding: 16px 44px;
	border: 2px solid var(--tnm-green);
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.85em;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tnm-seework__button:hover,
.tnm-seework__button:focus {
	background: var(--tnm-green-dark);
	color: #ffffff;
	border-color: var(--tnm-green-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 84, 28, 0.35);
}

.tnm-about-strip__inner::after {
	content: "";
	display: block;
	width: 70px;
	height: 3px;
	background: var(--tnm-green);
	margin: 36px auto 0;
}

/* ============================================
   HOME CTA STRIP (green)
   ============================================ */
.tnm-cta-strip {
	background: var(--tnm-green);
	padding: 80px 24px;
}

/* Home page: collapse the white #content padding / .site-content-contain bg
   and footer white bg/border/margin so the green CTA strip flows straight into
   the dark footer — matching Recent Work (green CTA -> thin line -> dark footer). */
.home .site-content-contain {
	background: #0d0d0d !important;
}
.home #content.site-content {
	padding-bottom: 0 !important;
}
.home .site-footer {
	background: #0d0d0d !important;
	border-top: 0 !important;
	margin: 0 !important;
}
.home .site-footer .wrap {
	background: #0d0d0d !important;
	margin: 0 auto !important;
}

.tnm-cta-strip__inner {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.tnm-cta-strip__heading {
	color: #ffffff;
	font-size: clamp(1.6em, 4vw, 2.4em);
	font-weight: 700;
	letter-spacing: 0.02em;
	margin: 0 0 32px;
}

.tnm-cta-strip__button {
	display: inline-block;
	background: #ffffff;
	color: #0d0d0d;
	padding: 16px 48px;
	border: 2px solid #ffffff;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.85em;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.tnm-cta-strip__button:hover,
.tnm-cta-strip__button:focus {
	background: #f0f0f0;
	color: var(--tnm-green);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================
   FOOTER NAV ROW (below social icons)
   ============================================ */
.tnm-footer-nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px 28px;
	margin-top: 20px;
}

.tnm-footer-nav__link {
	color: #999999;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	box-shadow: none;
	transition: color 0.2s ease;
}

.tnm-footer-nav__link:hover,
.tnm-footer-nav__link:focus {
	color: var(--tnm-green);
}

@media (max-width: 480px) {
	.tnm-footer-nav {
		gap: 8px 18px;
	}
	.tnm-footer-nav__link {
		font-size: 11px;
	}
}

/* Copyright line */
.tnm-copyright {
	color: #555555;
	font-size: 0.75rem;
	text-align: center;
	margin: 16px 0 0;
	letter-spacing: 0.04em;
}

/* ============================================
   SITEWIDE BUTTON POLISH (2026-06-27)
   Excludes Fun Raising orange buttons (.tnm-fr-btn*).
   ============================================ */

/* Primary button — green bg, white text */
.btn-primary,
.wp-block-button__link,
a.button,
input[type="submit"],
.tnm-home-hero__cta,
.tnm-seework__button {
	display: inline-block;
	width: auto;
	background: #00541C;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 14px 36px;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus,
a.button:hover,
a.button:focus,
input[type="submit"]:hover,
input[type="submit"]:focus,
.tnm-home-hero__cta:hover,
.tnm-home-hero__cta:focus,
.tnm-seework__button:hover,
.tnm-seework__button:focus {
	background: #003d14;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 84, 28, 0.35);
}

/* CTA-bar button — inside green #00541C CTA sections: white bg, green text */
.tnm-services-cta__button,
.tnm-cta-strip__button {
	display: inline-block;
	width: auto;
	background: #ffffff;
	color: #00541C;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 0.85rem;
	font-weight: 600;
	padding: 14px 36px;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.25s ease;
}

.tnm-services-cta__button:hover,
.tnm-services-cta__button:focus,
.tnm-cta-strip__button:hover,
.tnm-cta-strip__button:focus {
	background: #f0f0f0;
	color: #00541C;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   BEHIND THE LENS — BTS Photo Grid
   ============================================================ */

.tnm-bts {
	background: var(--tnm-dark);
	padding: var(--tnm-space-lg) 0;
}

.tnm-bts__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--tnm-space-xs);
}

.tnm-bts__header {
	text-align: center;
	margin-bottom: var(--tnm-space-sm);
}

.tnm-bts__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin: 0 0 12px;
	line-height: var(--tnm-lh-tight);
}

.tnm-bts__intro {
	color: rgba(255, 255, 255, 0.6);
	font-size: 1rem;
	margin: 0;
	line-height: var(--tnm-lh-body);
}

.tnm-bts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.tnm-bts__item {
	margin: 0;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 4 / 3;
	background: #111;
}

.tnm-bts__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease;
}

.tnm-bts__item:hover img {
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.tnm-bts__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 8px;
	}
}

@media (max-width: 480px) {
	.tnm-bts__grid {
		grid-template-columns: 1fr;
	}
}
