#main-content.bloomlab-homepage,
#main-content.bloomlab-homepage *,
#main-content.bloomlab-homepage *::before,
#main-content.bloomlab-homepage *::after {
	box-sizing: border-box;
}

#main-content.bloomlab-homepage {
	font-family: var(--bloom-font-family, "Plus Jakarta Sans", sans-serif) !important;
	width: 100%;
	max-width: 100%;
}

:root {
	--bloom-teal: #1A4B52;
	--bloom-green: #00D084;
	--bloom-peach: #E88B6A;
	--bloom-mint: #F2FAF7;
	--bloom-ice: #EEF9F9;
	--white: #FFFFFF;
	--bloom-standard-width: 1200px;
	--bloom-standard-radius: 64px;
	--bloom-side-padding: clamp(16px, 5vw, 60px);
	--bloom-transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.bloomlab-hero-outer {
	width: 100%;
	display: flex;
	justify-content: center;
	background: var(--bloom-mint);
}

.hero-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: var(--bloom-standard-width);
	margin: 0 auto;
	padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding);
	gap: 40px;
}

.hero-wrapper .content-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100%;
	z-index: 1;
}

.hero-wrapper .badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--bloom-mint);
	border: 1.5px solid rgba(26, 75, 82, 0.1);
	color: var(--bloom-teal);
	font-weight: 700;
	font-size: 13px;
	margin-bottom: 30px;
}

.hero-wrapper h1 {
	font-size: 2.2rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0;
	margin-top: 0;
	margin-bottom: 20px;
	color: var(--bloom-teal);
}

.hero-wrapper h1 span {
	color: var(--bloom-green);
}

.hero-wrapper .subtext {
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1.6;
	max-width: 540px;
	color: var(--bloom-teal);
	opacity: 0.9;
	margin: 0 0 30px;
}

.hero-wrapper .video-container {
	position: relative;
	width: 100%;
	max-width: 580px;
	border-radius: 32px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #000;
	filter: drop-shadow(0 30px 60px rgba(26, 75, 82, 0.12));
	cursor: pointer;
}

.hero-wrapper .video-container.playing {
	cursor: default;
}

.hero-video-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-wrapper .video-container .hero-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	background: var(--bloom-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	transition: transform 0.2s ease, background 0.2s ease;
	box-shadow: 0 8px 24px rgba(0, 208, 132, 0.35);
}

.hero-wrapper .video-container:hover .hero-play-btn {
	transform: translate(-50%, -50%) scale(1.08);
	background: #fff;
}

.hero-wrapper .video-container .hero-play-btn::after {
	content: '';
	border-style: solid;
	border-width: 14px 0 14px 22px;
	border-color: transparent transparent transparent #fff;
	margin-left: 6px;
	transition: border-color 0.2s ease;
}

.hero-wrapper .video-container:hover .hero-play-btn::after {
	border-color: transparent transparent transparent var(--bloom-green);
}

.hero-wrapper .cta-group {
	width: 100%;
	display: flex;
	justify-content: center;
}

.hero-wrapper .btn {
	padding: 18px 36px;
	border-radius: 20px;
	font-weight: 800;
	text-decoration: none;
	text-align: center;
	font-size: 1rem;
	transition: var(--bloom-transition);
}

.hero-wrapper .btn-primary {
	background: var(--bloom-teal);
	color: white;
}

.hero-wrapper .btn-primary:hover,
.hero-wrapper .btn-primary:focus-visible {
	background: #121212;
	color: #fff;
	transform: translateY(-2px);
	outline: none;
}

.bloomlab-brand-context {
	display: grid;
	grid-template-columns: minmax(170px, 0.32fr) minmax(0, 1fr);
	align-items: start;
	gap: clamp(24px, 4vw, 56px);
	width: 100%;
	margin: 0 0 64px;
	padding: 28px 0 40px;
	border-top: 3px solid rgba(52, 168, 83, 0.85);
	border-bottom: 1px solid rgba(26, 75, 82, 0.1);
}

.bloomlab-brand-kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #34A853;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.2;
	text-transform: uppercase;
}

.bloomlab-brand-kicker::before {
	content: '';
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: #34A853;
	box-shadow: 0 0 0 7px rgba(52, 168, 83, 0.11);
	flex: 0 0 auto;
}

.bloomlab-brand-copy {
	display: flex;
	flex-direction: column;
	gap: 18px;
	max-width: 900px;
}

.bloomlab-brand-lead,
.bloomlab-brand-reference {
	color: var(--bloom-teal);
	margin: 0;
}

.bloomlab-brand-lead {
	font-size: clamp(1.05rem, 1.4vw, 1.24rem);
	font-weight: 620;
	line-height: 1.65;
}

.bloomlab-brand-reference {
	max-width: 760px;
	font-size: 0.95rem;
	font-weight: 560;
	line-height: 1.6;
	opacity: 0.82;
}

.bloomlab-brand-reference a {
	color: #2f9f4f;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

.bloomlab-brand-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	list-style: none;
	margin: 0;
	padding: 0;
}

#main-content.bloomlab-homepage .bloomlab-brand-links li a {
	display: inline-flex !important;
	align-items: center;
	min-height: 34px;
	padding: 7px 12px;
	border: 1px solid rgba(52, 168, 83, 0.22);
	border-radius: 999px;
	background: #F7FCFA;
	color: #2f9f4f;
	font-size: 0.9rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bloomlab-brand-links a:hover,
.bloomlab-brand-links a:focus-visible {
	background: #34A853;
	border-color: #34A853;
	color: #fff;
	transform: translateY(-1px);
	outline: none;
}

.diag-section {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 40px 20px 80px;
	background: #F0FAFB;
}

.diag-inner {
	width: 100%;
	max-width: var(--bloom-standard-width);
	margin: 0 auto;
}

.diag-header {
	margin-bottom: 32px;
	text-align: center;
}

.diag-header .diag-tag {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0;
	color: #34A853;
	text-transform: uppercase;
	margin-bottom: 12px;
	display: inline-block;
}

.diag-header h2 {
	font-size: clamp(2rem, 6vw, 3.5rem);
	font-weight: 800;
	line-height: 1.15;
	color: #1A4B52;
	margin: 0 0 16px;
}

.diag-header h2 .diag-highlight {
	color: #00D084;
}

.headline-glow {
	height: 4px;
	width: 80px;
	background: linear-gradient(90deg, #1A4B52, #00D084);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}

.headline-glow::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
	animation: shine 3s infinite;
}

@keyframes shine {
	100% {
		left: 100%;
	}
}

.diag-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.glass-bento {
	background: #fff;
	border: 1px solid rgba(26, 75, 82, 0.08);
	transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
	box-shadow: 0 4px 20px rgba(26, 75, 82, 0.04);
	padding: 24px;
	border-radius: 32px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.glass-bento.bento-8,
.glass-bento.bento-4,
.glass-bento.bento-6 {
	grid-column: span 1;
}

.glass-bento .bento-icon {
	flex-shrink: 0;
	font-size: 2rem;
}

.glass-bento .bento-cat {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0;
	color: #94a3b8;
	margin: 0 0 8px;
}

.glass-bento .bento-text {
	font-size: 1rem;
	font-weight: 700;
	color: #1A4B52;
	line-height: 1.4;
	margin: 0;
}

.glass-bento.bento-8 .bento-text,
.glass-bento.bento-6 .bento-text {
	font-size: clamp(1.1rem, 2vw, 1.75rem);
}

.glass-bento .bento-highlight {
	color: #E88B6A;
}

.glass-bento .bento-underline {
	border-bottom: 2px solid #E88B6A;
}

.glass-bento.bento-green {
	border-left: 4px solid #00D084;
}

.diag-cta {
	margin-top: 48px;
	position: relative;
}

.diag-cta-glow {
	position: absolute;
	inset: 0;
	background: #00D084;
	filter: blur(60px);
	opacity: 0.1;
}

.diag-cta-box {
	background: #1A4B52;
	padding: 32px 24px;
	border-radius: 40px;
	text-align: center;
	position: relative;
	z-index: 10;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.diag-cta-box h3 {
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 0 16px;
	line-height: 1.3;
	color: #fff;
}

.diag-cta-box h3 .cta-highlight {
	color: #00D084;
}

.diag-cta-box p {
	font-size: 1.25rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 auto 32px;
	max-width: 672px;
	font-weight: 500;
}

.diag-source-link {
	color: #00D084;
	text-decoration: underline;
}

.bloomlab-products-outer {
	width: 100%;
	display: flex;
	justify-content: center;
	background: var(--white);
}

.bloomlab-container {
	width: 100%;
	max-width: var(--bloom-standard-width);
	margin: 0 auto;
	padding: 80px var(--bloom-side-padding);
}

.bloomlab-header {
	text-align: center;
	margin: 0 auto 60px;
	max-width: 900px;
}

.bloomlab-header h2 {
	font-size: clamp(2.8rem, 6vw, 3.8rem);
	font-weight: 800;
	color: var(--bloom-teal);
	margin: 0 0 24px;
	line-height: 1.1;
	letter-spacing: 0;
}

.bloomlab-header h2 span {
	color: var(--bloom-green);
}

.bloomlab-header p {
	font-size: clamp(1.25rem, 2.5vw, 1.6rem);
	font-weight: 600;
	color: var(--bloom-teal);
	opacity: 0.9;
	margin: 0;
}

.bloomlab-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 40px;
}

.bloomlab-card {
	background: #fff;
	border: 2px solid #F0F0F0;
	border-radius: 40px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.bloomlab-img-box {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--bloom-mint);
	border-radius: 24px;
	margin-bottom: 32px;
	overflow: hidden;
	text-decoration: none;
}

.bloomlab-img-box img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bloomlab-card h3 {
	font-size: 2.2rem;
	margin: 0 0 16px;
	font-weight: 800;
	color: var(--bloom-teal);
}

.bloomlab-card p {
	font-size: 1.25rem;
	font-weight: 500;
	margin: 0 0 32px;
	flex-grow: 1;
	color: #1A4B52;
}

.bloomlab-btn {
	background: var(--bloom-peach);
	color: #fff;
	padding: 22px;
	border-radius: 20px;
	font-weight: 800;
	font-size: 1.15rem;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	transition: 0.3s ease;
}

.bloomlab-btn:hover,
.bloomlab-btn:focus-visible {
	background: #121212;
	color: #fff;
	outline: none;
}

.bloomlab-guide-cta-row {
	max-width: 980px;
	margin: 28px auto 0;
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

.mobile-nowrap {
	white-space: normal;
}

.elite-testimonials {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 70px var(--bloom-side-padding);
	font-family: var(--bloom-font-family, "Plus Jakarta Sans", sans-serif);
	background: var(--bloom-ice);
}

.elite-testimonials .header-stack,
.elite-testimonials .kinetic-grid {
	width: 100%;
	max-width: var(--bloom-standard-width);
}

.header-stack {
	text-align: center;
	margin-bottom: 80px;
}

.header-stack h2 {
	font-size: clamp(2.5rem, 6vw, 4rem);
	color: var(--bloom-teal);
	font-weight: 800;
	letter-spacing: 0;
	margin: 0;
}

.kinetic-grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 40px;
	align-items: start;
}

.primary-column {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.secondary-column {
	display: flex;
	flex-direction: column;
	gap: 32px;
	padding-top: 60px;
}

.player-card {
	position: relative;
	border-radius: 48px;
	overflow: hidden;
	background: #000;
	cursor: pointer;
	transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-card:hover {
	transform: translateY(-15px) scale(1.02);
}

.card-meta {
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 3;
	pointer-events: none;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.badge-vitality {
	background: var(--bloom-green);
	color: white;
	padding: 8px 16px;
	border-radius: 100px;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
	display: inline-block;
	margin-bottom: 12px;
}

.outcome-text {
	color: white;
	font-size: 1.2rem;
	font-weight: 700;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.player-thumb {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-size: cover;
	background-position: center;
	transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
	opacity: 0.9;
}

.player-card:hover .player-thumb {
	transform: scale(1.1);
	opacity: 0.7;
}

.play-ring {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: var(--bloom-green);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 4;
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 0 40px rgba(0, 208, 132, 0.4);
}

.play-ring::after {
	content: '';
	border-style: solid;
	border-width: 14px 0 14px 24px;
	border-color: transparent transparent transparent #fff;
	margin-left: 6px;
}

.player-card:hover .play-ring {
	background: #fff;
	transform: translate(-50%, -50%) scale(1.1);
	box-shadow: 0 0 60px 10px rgba(0, 208, 132, 0.5);
}

.player-card:hover .play-ring::after {
	border-color: transparent transparent transparent var(--bloom-green);
}

.carousel-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 40px 0 60px;
	background-color: #f8fafc;
}

.carousel-inner {
	width: 100%;
	max-width: var(--bloom-standard-width);
	margin: 0 auto;
	padding: 0 var(--bloom-side-padding);
	position: relative;
	overflow: hidden;
}

.carousel-track {
	display: flex;
	gap: 20px;
	padding: 0;
	overflow-x: auto;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	cursor: grab;
	scrollbar-width: none;
}

.carousel-track:active {
	cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
	display: none;
}

.carousel-card {
	flex: 0 0 auto;
	width: 320px;
	height: 420px;
	scroll-snap-align: center;
	border-radius: 24px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
	border: 1px solid #eee;
}

.carousel-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.carousel-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #3297a6;
	border: 1px solid #eee;
	cursor: pointer;
	z-index: 10;
	font-size: 20px;
	font-weight: bold;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
	background: #3297a6;
	color: #fff;
	outline: none;
}

.carousel-arrow.left {
	left: 0;
}

.carousel-arrow.right {
	right: 0;
}

.carousel-dots {
	position: absolute;
	bottom: 25px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 6px;
	max-width: 90%;
	overflow-x: auto;
	padding: 5px;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cbd5e1;
	cursor: pointer;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: #3297a6;
	width: 20px;
	border-radius: 10px;
}

@media (min-width: 768px) {
	.diag-section {
		padding: 80px var(--bloom-side-padding) 80px;
	}

	.diag-header .diag-tag {
		font-size: 14px;
	}

	.diag-header h2 {
		line-height: 1.1;
		margin-bottom: 24px;
	}

	.diag-grid {
		grid-template-columns: repeat(12, 1fr);
		gap: 24px;
	}

	.glass-bento {
		padding: 40px;
		border-radius: 48px;
	}

	.glass-bento:hover {
		transform: translateY(-10px);
		border-color: var(--bloom-teal);
		border-width: 2px;
		box-shadow: 0 40px 80px -20px rgba(26, 75, 82, 0.12);
	}

	.glass-bento.bento-8 {
		grid-column: span 8;
	}

	.glass-bento.bento-4 {
		grid-column: span 4;
	}

	.glass-bento.bento-6 {
		grid-column: span 6;
	}

	.glass-bento.bento-8 .bento-icon {
		font-size: 3.75rem;
	}

	.glass-bento.bento-4 .bento-icon {
		font-size: 2.25rem;
	}

	.glass-bento.bento-6 .bento-icon {
		font-size: 1.5rem;
	}

	.glass-bento .bento-cat {
		font-size: 12px;
	}

	.glass-bento.bento-4 .bento-text,
	.glass-bento.bento-6 .bento-text {
		font-size: 1.25rem;
	}

	.diag-cta {
		margin-top: 80px;
	}

	.diag-cta-glow {
		filter: blur(100px);
	}

	.diag-cta-box {
		padding: 64px 48px;
		border-radius: 48px;
	}

	.diag-cta-box h3 {
		font-size: 3rem;
		margin-bottom: 24px;
	}

	.diag-cta-box p {
		margin-bottom: 40px;
	}
}

@media (min-width: 1024px) {
	.diag-header {
		text-align: left;
		margin-bottom: 64px;
	}

	.headline-glow {
		margin-left: 0;
	}
}

@media (min-width: 992px) {
	.hero-wrapper {
		flex-direction: row;
		padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding);
		gap: 60px;
		justify-content: space-between;
	}

	.hero-wrapper .content-left {
		align-items: flex-start;
		text-align: left;
		flex: 1.2;
	}

	.hero-wrapper h1 {
		font-size: clamp(2.5rem, 5vw, 3.8rem);
	}

	.hero-wrapper .subtext {
		font-size: 1.25rem;
	}

	.hero-wrapper .video-container {
		flex: 1;
		border-radius: var(--bloom-standard-radius);
	}

	.hero-wrapper .cta-group {
		justify-content: flex-start;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.hero-wrapper {
		gap: 30px;
	}

	.bloomlab-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {
	.bloomlab-hero-outer {
		background: var(--white);
	}

	.hero-wrapper {
		padding: var(--bloom-hero-padding-top-mobile, 40px) var(--bloom-side-padding) !important;
		width: 100% !important;
		max-width: 100% !important;
		gap: 30px;
		background: transparent !important;
	}

	.hero-wrapper .content-left {
		background: transparent !important;
		padding: 0;
		width: 100% !important;
		border-radius: 0;
		box-shadow: none !important;
	}

	.hero-wrapper .video-container {
		width: 100% !important;
		max-width: 100% !important;
		border-radius: 24px;
		filter: none !important;
		box-shadow: none !important;
	}

	.hero-wrapper h1 {
		font-size: clamp(2.5rem, 6vw, 3.5rem);
		width: 100%;
	}

	.hero-wrapper .subtext {
		font-size: 1.15rem;
		width: 100%;
	}

	.diag-section {
		padding: 40px var(--bloom-side-padding) 60px;
	}

	.bloomlab-container {
		padding: 40px var(--bloom-side-padding);
	}

	.bloomlab-header {
		margin-bottom: 45px;
	}

	.bloomlab-header h2 {
		font-size: 2.6rem;
	}

	.bloomlab-header p {
		font-size: 1.35rem;
	}

	.bloomlab-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.bloomlab-card {
		padding: 30px;
		border-radius: 35px;
	}

	.bloomlab-card h3 {
		font-size: 2.1rem;
	}

	.bloomlab-card p {
		font-size: 1.25rem;
	}

	.mobile-nowrap {
		white-space: nowrap;
	}

	.elite-testimonials {
		padding: 50px var(--bloom-side-padding);
	}

	.elite-testimonials .header-stack {
		margin-bottom: 48px;
	}

	.carousel-inner {
		padding: 0 var(--bloom-side-padding);
	}
}

@media (max-width: 968px) {
	.kinetic-grid {
		grid-template-columns: 1fr;
	}

	.secondary-column {
		padding-top: 0;
	}

	.player-card {
		border-radius: 32px;
	}

	.play-ring {
		width: 70px;
		height: 70px;
	}
}

@media (max-width: 767px) {
	.bloomlab-brand-context {
		grid-template-columns: 1fr;
		gap: 18px;
		margin-bottom: 44px;
		padding: 22px 0 30px;
		border-top-width: 2px;
	}

	.bloomlab-brand-kicker {
		font-size: 0.72rem;
		letter-spacing: 0;
	}

	.bloomlab-brand-lead {
		font-size: 1.02rem;
		line-height: 1.62;
	}

	.bloomlab-brand-links {
		gap: 8px;
	}

	.bloomlab-brand-links a {
		min-height: 32px;
		padding: 7px 10px;
		font-size: 0.84rem;
	}
}

@media (max-width: 768px) {
	.carousel-card {
		width: 280px;
		height: 370px;
	}

	.carousel-arrow {
		display: none;
	}
}
