/*
Theme Name: Bare Bones Baseball - Impreza Child
Theme URI: https://barebonesbaseball.com/
Description: A performance-focused Impreza child theme for Bare Bones Baseball, with editable WPBakery components and WooCommerce styling.
Author: Bare Bones Baseball
Version: 1.0.0
Template: Impreza
Requires at least: 6.6
Tested up to: 7.1
Requires PHP: 8.0
Text Domain: barebones-impreza
*/

:root {
	--bbb-black: #050505;
	--bbb-ink: #101010;
	--bbb-graphite: #3a3a3a;
	--bbb-bone: #d8d0c4;
	--bbb-bone-light: #f1ece4;
	--bbb-dirt: #927b60;
	--bbb-line: rgba(216, 208, 196, 0.28);
	--bbb-shell: min(1240px, calc(100vw - 48px));
	--bbb-display: Rockwell, "Roboto Slab", "Arial Black", Georgia, serif;
	--bbb-condensed: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
	--bbb-body: Inter, Arial, Helvetica, sans-serif;
}

.bbb-shell {
	width: var(--bbb-shell);
	margin-inline: auto;
}

.bbb-theme-active .bbb-fullbleed-row,
.bbb-theme-active .bbb-fullbleed-row .vc_column_container,
.bbb-theme-active .bbb-fullbleed-row .vc_column-inner,
.bbb-theme-active .bbb-fullbleed-row .wpb_wrapper {
	margin: 0 !important;
	padding: 0 !important;
}

.bbb-theme-active .bbb-fullbleed-row > .l-section-h,
.bbb-theme-active .bbb-fullbleed-row > .vc_row,
.bbb-theme-active .bbb-fullbleed-row .l-section-h {
	max-width: none !important;
	padding: 0 !important;
}

.bbb-hero,
.bbb-manifesto,
.bbb-positions,
.bbb-story,
.bbb-pillar-section,
.bbb-gallery,
.bbb-cta,
.bbb-contact-card {
	box-sizing: border-box;
	font-family: var(--bbb-body);
}

.bbb-hero *,
.bbb-manifesto *,
.bbb-positions *,
.bbb-story *,
.bbb-pillar-section *,
.bbb-gallery *,
.bbb-cta *,
.bbb-contact-card * {
	box-sizing: border-box;
}

.bbb-hero h1,
.bbb-hero h2,
.bbb-manifesto h2,
.bbb-positions h2,
.bbb-story h2,
.bbb-pillar-section h2,
.bbb-gallery h2,
.bbb-cta h2,
.bbb-contact-card h2 {
	margin: 0;
	font-family: var(--bbb-display);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 0.94;
	text-transform: uppercase;
}

.bbb-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 20px;
	color: var(--bbb-bone);
	font-family: var(--bbb-condensed);
	font-size: 0.82rem;
	font-weight: 900;
	letter-spacing: 0.19em;
	line-height: 1.2;
	text-transform: uppercase;
}

.bbb-eyebrow::before {
	width: 36px;
	height: 3px;
	background: currentColor;
	content: "";
	transform: skewX(-24deg);
}

.bbb-eyebrow--dark {
	color: var(--bbb-black);
}

.bbb-button {
	display: inline-flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	padding: 15px 24px;
	border: 2px solid var(--bbb-bone);
	font-family: var(--bbb-condensed);
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.11em;
	line-height: 1.1;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.bbb-button:hover {
	transform: translateY(-3px);
}

.bbb-button:focus-visible,
.bbb-text-link:focus-visible,
.bbb-contact-card a:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 4px;
}

.bbb-button--bone {
	background: var(--bbb-bone);
	color: var(--bbb-black) !important;
	box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.65);
}

.bbb-button--bone:hover {
	background: var(--bbb-bone-light);
	color: var(--bbb-black) !important;
}

.bbb-text-link {
	display: inline-flex;
	align-items: center;
	color: var(--bbb-bone) !important;
	font-family: var(--bbb-condensed);
	font-size: 0.88rem;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-decoration: none !important;
	text-transform: uppercase;
}

.bbb-text-link span {
	font-size: 1.25rem;
	transition: transform 180ms ease;
}

.bbb-text-link:hover span {
	transform: translateX(5px);
}

/* Hero */
.bbb-hero {
	position: relative;
	min-height: clamp(680px, 88vh, 920px);
	overflow: hidden;
	background-color: var(--bbb-black);
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 44%, rgba(0, 0, 0, 0.2) 100%), var(--bbb-hero-image);
	background-position: center;
	background-size: cover;
	color: var(--bbb-bone);
	isolation: isolate;
}

.bbb-hero::before,
.bbb-hero::after {
	position: absolute;
	z-index: -1;
	content: "";
	pointer-events: none;
}

.bbb-hero::before {
	inset: 0;
	background-image: repeating-linear-gradient(100deg, transparent 0 90px, rgba(216, 208, 196, 0.025) 90px 92px);
}

.bbb-hero::after {
	right: -8vw;
	bottom: 82px;
	width: min(540px, 55vw);
	height: 3px;
	background: var(--bbb-bone);
	box-shadow: 0 11px 0 rgba(216, 208, 196, 0.35);
	transform: rotate(-7deg);
}

.bbb-hero__grain {
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.16;
	background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.6px, transparent 0.7px), radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.6px);
	background-position: 0 0, 9px 11px;
	background-size: 17px 19px, 23px 29px;
	mix-blend-mode: soft-light;
}

.bbb-hero__inner {
	display: grid;
	min-height: clamp(600px, calc(88vh - 72px), 840px);
	align-items: center;
	grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.65fr);
	gap: clamp(40px, 7vw, 110px);
	padding-block: clamp(100px, 14vh, 150px) 90px;
}

.bbb-hero__copy {
	max-width: 820px;
}

.bbb-hero h1 {
	max-width: 900px;
	color: var(--bbb-bone-light);
	font-size: clamp(3.2rem, 7.5vw, 7.6rem);
	text-wrap: balance;
}

.bbb-hero__text {
	max-width: 700px;
	margin: 30px 0 0;
	color: rgba(241, 236, 228, 0.78);
	font-size: clamp(1rem, 1.5vw, 1.25rem);
	line-height: 1.65;
}

.bbb-actions {
	display: flex;
	align-items: center;
	gap: 30px;
	margin-top: 38px;
	flex-wrap: wrap;
}

.bbb-hero__crest {
	position: relative;
	margin: 0;
	padding: 16px 16px 12px;
	border: 1px solid rgba(216, 208, 196, 0.5);
	background: rgba(216, 208, 196, 0.94);
	box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.62);
	transform: rotate(2deg);
}

.bbb-hero__crest::before {
	position: absolute;
	inset: 7px;
	border: 1px solid rgba(5, 5, 5, 0.32);
	content: "";
	pointer-events: none;
}

.bbb-hero__crest img {
	display: block;
	width: 100%;
	aspect-ratio: 0.82;
	object-fit: cover;
}

.bbb-hero__crest figcaption {
	padding: 13px 8px 4px;
	color: var(--bbb-black);
	font-family: var(--bbb-condensed);
	font-size: 0.7rem;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-align: center;
	text-transform: uppercase;
}

.bbb-hero__rail {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 3vw, 48px);
	padding: 18px 24px;
	border-top: 1px solid var(--bbb-line);
	background: rgba(5, 5, 5, 0.93);
	color: var(--bbb-bone);
	font-family: var(--bbb-condensed);
	font-size: clamp(0.72rem, 1.1vw, 0.9rem);
	font-weight: 900;
	letter-spacing: 0.24em;
	text-transform: uppercase;
}

.bbb-hero__rail i {
	display: block;
	width: 7px;
	height: 7px;
	background: var(--bbb-bone);
	transform: rotate(45deg);
}

/* Manifesto */
.bbb-manifesto {
	position: relative;
	padding-block: clamp(82px, 10vw, 150px);
	overflow: hidden;
	background: var(--bbb-bone);
	color: var(--bbb-black);
}

.bbb-manifesto::after {
	position: absolute;
	top: -110px;
	right: -45px;
	color: rgba(5, 5, 5, 0.045);
	font-family: var(--bbb-display);
	font-size: 24rem;
	font-weight: 900;
	line-height: 1;
	content: "BBB";
	transform: rotate(-8deg);
}

.bbb-manifesto__grid {
	position: relative;
	z-index: 1;
	display: grid;
	align-items: end;
	grid-template-columns: 1.35fr 0.65fr;
	gap: clamp(48px, 9vw, 150px);
}

.bbb-manifesto h2 {
	max-width: 840px;
	font-size: clamp(3rem, 6.4vw, 6.9rem);
}

.bbb-manifesto__text {
	margin: 0;
	padding: 22px 0 4px 24px;
	border-left: 5px solid var(--bbb-black);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.7;
}

/* Positions */
.bbb-positions {
	padding-block: clamp(88px, 10vw, 140px);
	background: var(--bbb-black);
	color: var(--bbb-bone);
}

.bbb-section-head {
	display: grid;
	align-items: end;
	grid-template-columns: 1fr minmax(280px, 0.55fr);
	gap: 60px;
	margin-bottom: 54px;
}

.bbb-section-head h2,
.bbb-story h2,
.bbb-pillar-section h2,
.bbb-gallery h2,
.bbb-cta h2,
.bbb-contact-card h2 {
	font-size: clamp(2.8rem, 5vw, 5.7rem);
}

.bbb-section-head > p {
	margin: 0;
	color: rgba(216, 208, 196, 0.7);
	line-height: 1.65;
}

.bbb-position-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	border-top: 1px solid var(--bbb-line);
	border-left: 1px solid var(--bbb-line);
}

.bbb-position-card {
	position: relative;
	min-height: 350px;
	padding: 30px 24px;
	overflow: hidden;
	border-right: 1px solid var(--bbb-line);
	border-bottom: 1px solid var(--bbb-line);
	background: #0b0b0b;
	transition: background-color 180ms ease, transform 180ms ease;
}

.bbb-position-card:hover {
	z-index: 2;
	background: #181818;
	transform: translateY(-8px);
}

.bbb-position-card::after {
	position: absolute;
	right: -22px;
	bottom: -35px;
	width: 100px;
	height: 100px;
	border: 1px solid rgba(216, 208, 196, 0.14);
	border-radius: 50%;
	box-shadow: 0 0 0 15px rgba(216, 208, 196, 0.025), 0 0 0 30px rgba(216, 208, 196, 0.02);
	content: "";
}

.bbb-position-card__code {
	display: block;
	margin-bottom: 84px;
	color: var(--bbb-bone-light);
	font-family: var(--bbb-display);
	font-size: clamp(3.2rem, 5vw, 5.2rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	line-height: 0.85;
	transform: skewX(-7deg);
}

.bbb-position-card h3 {
	margin: 0 0 13px;
	color: var(--bbb-bone);
	font-family: var(--bbb-condensed);
	font-size: 1.1rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.1;
	text-transform: uppercase;
}

.bbb-position-card p {
	margin: 0;
	color: rgba(216, 208, 196, 0.6);
	font-size: 0.86rem;
	line-height: 1.55;
}

.bbb-speed-line {
	margin: 28px 0 0;
	padding: 18px 24px;
	background: var(--bbb-bone);
	color: var(--bbb-black);
	font-family: var(--bbb-condensed);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.09em;
	line-height: 1.5;
	text-transform: uppercase;
}

.bbb-speed-line strong {
	font-size: 1rem;
}

/* Story split */
.bbb-story {
	padding-block: clamp(90px, 10vw, 150px);
	background: var(--bbb-graphite);
	color: var(--bbb-bone);
}

.bbb-story__grid {
	display: grid;
	align-items: center;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(50px, 8vw, 120px);
}

.bbb-story__photo {
	position: relative;
	margin: 0;
}

.bbb-story__photo::before {
	position: absolute;
	inset: 20px -20px -20px 20px;
	z-index: 0;
	border: 2px solid var(--bbb-bone);
	content: "";
}

.bbb-story__photo img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	aspect-ratio: 1.18;
	filter: grayscale(0.8) contrast(1.1);
	object-fit: cover;
}

.bbb-story__copy > p:not(.bbb-eyebrow) {
	max-width: 560px;
	margin: 28px 0;
	color: rgba(216, 208, 196, 0.74);
	font-size: 1.03rem;
	line-height: 1.75;
}

.bbb-story blockquote {
	margin: 38px 0 0;
	padding: 24px 0 0;
	border-top: 1px solid var(--bbb-line);
	color: var(--bbb-bone-light);
	font-family: var(--bbb-condensed);
	font-size: clamp(1.2rem, 2vw, 1.8rem);
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1.25;
	text-transform: uppercase;
}

/* Pillars */
.bbb-pillar-section {
	padding-block: clamp(88px, 10vw, 145px);
	background: var(--bbb-bone-light);
	color: var(--bbb-black);
}

.bbb-pillar-section > .bbb-shell > h2 {
	max-width: 840px;
}

.bbb-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 68px;
	border-top: 2px solid var(--bbb-black);
	border-bottom: 2px solid var(--bbb-black);
}

.bbb-pillars article {
	position: relative;
	min-height: 310px;
	padding: 34px 32px 46px;
	border-right: 1px solid rgba(5, 5, 5, 0.25);
}

.bbb-pillars article:last-child {
	border-right: 0;
}

.bbb-pillars span {
	display: block;
	margin-bottom: 56px;
	font-family: var(--bbb-condensed);
	font-size: 0.8rem;
	font-weight: 900;
	letter-spacing: 0.2em;
}

.bbb-pillars h3 {
	margin: 0 0 16px;
	font-family: var(--bbb-display);
	font-size: clamp(1.55rem, 2.5vw, 2.4rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 1;
	text-transform: uppercase;
}

.bbb-pillars p {
	margin: 0;
	color: rgba(5, 5, 5, 0.68);
	line-height: 1.65;
}

/* Gallery */
.bbb-gallery {
	padding-block: clamp(88px, 10vw, 145px);
	overflow: hidden;
	background: var(--bbb-black);
	color: var(--bbb-bone);
}

.bbb-gallery header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 52px;
}

.bbb-gallery header .bbb-eyebrow {
	margin-bottom: 0;
	order: 2;
}

.bbb-gallery__grid {
	display: grid;
	grid-auto-rows: 250px;
	grid-template-columns: repeat(12, 1fr);
	gap: 14px;
}

.bbb-gallery__item {
	position: relative;
	margin: 0;
	overflow: hidden;
	background: #151515;
}

.bbb-gallery__item::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(216, 208, 196, 0.22);
	box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.3);
	content: "";
}

.bbb-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	filter: saturate(0.72) contrast(1.08);
	object-fit: cover;
	transition: filter 250ms ease, transform 500ms ease;
}

.bbb-gallery__item:hover img {
	filter: saturate(1) contrast(1.04);
	transform: scale(1.035);
}

.bbb-gallery__item--1 {
	grid-column: span 5;
	grid-row: span 2;
}

.bbb-gallery__item--2 {
	grid-column: span 3;
}

.bbb-gallery__item--3 {
	grid-column: span 4;
}

.bbb-gallery__item--4 {
	grid-column: span 7;
}

.bbb-gallery__item--5,
.bbb-gallery__item--6 {
	grid-column: span 6;
}

/* CTA */
.bbb-cta {
	position: relative;
	overflow: hidden;
	background-color: var(--bbb-graphite);
	background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.8) 62%, rgba(5, 5, 5, 0.35)), var(--bbb-cta-image);
	background-position: center 38%;
	background-size: cover;
	color: var(--bbb-bone);
}

.bbb-cta__inner {
	display: grid;
	min-height: 540px;
	align-items: center;
	grid-template-columns: 1fr auto;
	gap: 64px;
	padding-block: clamp(90px, 10vw, 140px);
}

.bbb-cta__inner > div {
	max-width: 790px;
}

.bbb-cta__inner p:not(.bbb-eyebrow) {
	max-width: 650px;
	margin: 26px 0 0;
	color: rgba(216, 208, 196, 0.76);
	font-size: 1.05rem;
	line-height: 1.7;
}

.bbb-cta .bbb-button {
	min-width: 250px;
	flex-direction: column;
	gap: 8px;
}

.bbb-cta .bbb-button small {
	font-size: 0.72rem;
	letter-spacing: 0.12em;
}

/* Contact */
.bbb-contact-card {
	display: grid;
	width: var(--bbb-shell);
	margin: clamp(70px, 9vw, 130px) auto;
	padding: clamp(40px, 7vw, 90px);
	grid-template-columns: 1fr minmax(280px, 0.7fr);
	gap: clamp(50px, 9vw, 130px);
	background: var(--bbb-bone);
	color: var(--bbb-black);
}

.bbb-contact-card p:not(.bbb-eyebrow) {
	margin: 22px 0 0;
	font-weight: 700;
}

.bbb-contact-card__actions {
	display: grid;
	align-content: center;
	gap: 12px;
}

.bbb-contact-card__actions a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 0;
	border-bottom: 2px solid var(--bbb-black);
	color: var(--bbb-black) !important;
	font-family: var(--bbb-condensed);
	font-size: 1.2rem;
	font-weight: 900;
	text-decoration: none !important;
}

.bbb-contact-card__actions span {
	font-size: 0.7rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

/* Impreza header/footer integration */
.bbb-theme-active .l-header.bg_transparent:not(.sticky) .w-nav-anchor,
.bbb-theme-active .l-header.bg_transparent:not(.sticky) .w-text,
.bbb-theme-active .l-header.bg_transparent:not(.sticky) .w-icon-link {
	color: var(--bbb-bone);
}

.bbb-theme-active .l-header .w-nav-anchor {
	font-family: var(--bbb-condensed);
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bbb-theme-active .l-footer {
	border-top: 1px solid rgba(216, 208, 196, 0.16);
	background: var(--bbb-black);
	color: var(--bbb-bone);
}

/* Reveal enhancement. Content stays visible if JavaScript is unavailable. */
.bbb-js .bbb-reveal {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 600ms ease, transform 600ms ease;
}

.bbb-js .bbb-reveal.is-visible {
	opacity: 1;
	transform: none;
}

@media (max-width: 1100px) {
	.bbb-hero__inner {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 40px;
	}

	.bbb-position-grid {
		grid-template-columns: repeat(6, 1fr);
	}

	.bbb-position-card {
		grid-column: span 2;
	}

	.bbb-position-card:nth-child(4),
	.bbb-position-card:nth-child(5) {
		grid-column: span 3;
	}
}

@media (max-width: 800px) {
	:root {
		--bbb-shell: min(100% - 32px, 1240px);
	}

	.bbb-hero {
		min-height: auto;
		background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.98) 72%), var(--bbb-hero-image);
		background-position: 62% center;
	}

	.bbb-hero__inner {
		min-height: auto;
		grid-template-columns: 1fr;
		padding-block: 116px 64px;
	}

	.bbb-hero__crest {
		display: none;
	}

	.bbb-hero__rail {
		gap: 16px;
		justify-content: flex-start;
		overflow-x: auto;
	}

	.bbb-manifesto__grid,
	.bbb-section-head,
	.bbb-story__grid,
	.bbb-cta__inner,
	.bbb-contact-card {
		grid-template-columns: 1fr;
	}

	.bbb-manifesto__text {
		max-width: 600px;
	}

	.bbb-position-grid {
		grid-template-columns: 1fr 1fr;
	}

	.bbb-position-card,
	.bbb-position-card:nth-child(4),
	.bbb-position-card:nth-child(5) {
		grid-column: auto;
	}

	.bbb-position-card:last-child {
		grid-column: 1 / -1;
	}

	.bbb-pillars {
		grid-template-columns: 1fr;
	}

	.bbb-pillars article {
		min-height: 0;
		border-right: 0;
		border-bottom: 1px solid rgba(5, 5, 5, 0.25);
	}

	.bbb-pillars article:last-child {
		border-bottom: 0;
	}

	.bbb-pillars span {
		margin-bottom: 28px;
	}

	.bbb-gallery__grid {
		grid-auto-rows: 230px;
		grid-template-columns: 1fr 1fr;
	}

	.bbb-gallery__item--1,
	.bbb-gallery__item--2,
	.bbb-gallery__item--3,
	.bbb-gallery__item--4,
	.bbb-gallery__item--5,
	.bbb-gallery__item--6 {
		grid-column: auto;
		grid-row: auto;
	}

	.bbb-gallery__item--1 {
		grid-row: span 2;
	}

	.bbb-cta__inner {
		align-content: center;
		gap: 42px;
	}

	.bbb-cta .bbb-button {
		width: min(100%, 340px);
	}
}

@media (max-width: 560px) {
	.bbb-hero h1 {
		font-size: clamp(2.75rem, 14vw, 4.1rem);
	}

	.bbb-actions {
		align-items: flex-start;
		flex-direction: column;
	}

	.bbb-button {
		width: 100%;
	}

	.bbb-hero__rail i:nth-of-type(3),
	.bbb-hero__rail span:last-child {
		display: none;
	}

	.bbb-position-grid,
	.bbb-gallery__grid {
		grid-template-columns: 1fr;
	}

	.bbb-position-card,
	.bbb-position-card:last-child {
		min-height: 0;
		grid-column: auto;
	}

	.bbb-position-card__code {
		margin-bottom: 44px;
	}

	.bbb-story__photo::before {
		inset: 12px -10px -12px 10px;
	}

	.bbb-gallery header {
		align-items: flex-start;
		flex-direction: column;
	}

	.bbb-gallery header .bbb-eyebrow {
		order: 0;
	}

	.bbb-gallery__item--1 {
		grid-row: auto;
	}

	.bbb-contact-card {
		width: calc(100% - 32px);
		padding: 36px 24px;
	}

	.bbb-contact-card__actions a {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bbb-js .bbb-reveal,
	.bbb-button,
	.bbb-text-link span,
	.bbb-position-card,
	.bbb-gallery__item img {
		transition: none !important;
	}

	.bbb-js .bbb-reveal {
		opacity: 1;
		transform: none;
	}
}

