/* ==========================================================================
   WINK product page styles
   Shared by every product page linked from products.php.
   The site ships a reduced Bootstrap subset (css/boot.min.css) that provides
   .container, .row, .col-md-4, .col-md-6, .col-lg-4, .col-lg-6, .text-center
   and .align-items-center only. The utilities below fill the gaps used here.
   ========================================================================== */

/* --- utility helpers ---------------------------------------------------- */
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.me-2 { margin-right: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.d-block { display: block; }
.lead { font-size: 1.2rem; font-weight: 400; }
.text-white { color: #fff !important; }
.text-muted { color: #6c757d !important; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
h3.h5 { font-size: 1.15rem; }

/* --- hero --------------------------------------------------------------- */
.hero-section {
	background: linear-gradient(135deg, #23395d 0%, #4571C0 60%, #5b86d6 100%);
	color: #fff;
	padding: 80px 0;
}

.hero-section a {
	color: #fff;
	text-decoration: underline;
}

.hero-section a.btn-primary,
.hero-section a.btn-outline-light-wink {
	text-decoration: none;
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 0.8rem;
	font-weight: 700;
	color: #4571C0;
	margin-bottom: 12px;
	display: block;
}

.hero-section .eyebrow {
	color: rgba(255,255,255,0.75);
}

/* --- section furniture -------------------------------------------------- */
.section-lead {
	font-size: 1.15rem;
	color: #4a4a4a;
	max-width: 820px;
}

.overview-section {
	padding: 70px 0;
	background: #fff;
}

.alt-section {
	background: #f8f9fa;
	padding: 70px 0;
}

.overview-callout {
	background: #f8f9fa;
	border-left: 5px solid #4571C0;
	border-radius: 0 8px 8px 0;
	padding: 30px;
	height: 100%;
}

.overview-callout h3 {
	font-size: 1.15rem;
	margin-bottom: 12px;
}

.overview-callout p:last-child,
.overview-callout ul:last-child {
	margin-bottom: 0;
}

/* --- cards -------------------------------------------------------------- */
.feature-card {
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.13);
}

.feature-icon {
	color: #4571C0;
	font-size: 2.5rem;
	margin-bottom: 20px;
}

.deployment-card {
	padding: 25px;
	margin-bottom: 30px;
	border-left: 4px solid #4571C0;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	height: 100%;
}

.highlight-box {
	background: #f8f9fa;
	border-left: 4px solid #4571C0;
	padding: 20px;
	margin-bottom: 30px;
	height: 100%;
}

.metric-card {
	text-align: center;
	padding: 30px;
	background: #fff;
	border-radius: 8px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.metric-card .number {
	font-size: 2.2rem;
	font-weight: bold;
	color: #4571C0;
}

/* --- numbered steps ----------------------------------------------------- */
.setup-step {
	background: #fff;
	padding: 25px 20px 20px;
	border-radius: 8px;
	margin-bottom: 30px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	position: relative;
	height: 100%;
}

.step-number {
	position: absolute;
	top: -15px;
	left: -15px;
	width: 40px;
	height: 40px;
	background: #4571C0;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
}

/* --- specification tables ----------------------------------------------- */
.specification-table {
	width: 100%;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	margin: 20px 0;
}

.specification-table table {
	width: 100%;
}

.specification-table th {
	background: #4571C0;
	color: #fff;
	padding: 15px;
	text-align: left;
}

.specification-table td {
	padding: 12px 15px;
	border-bottom: 1px solid #eee;
	vertical-align: top;
}

.specification-table tr:last-child td {
	border-bottom: none;
}

/* --- diagrams ----------------------------------------------------------- */
.arch-diagram {
	background: #0f1b2d;
	color: #d7e3f5;
	border-radius: 10px;
	padding: 28px;
	font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 0.85rem;
	line-height: 1.7;
	overflow-x: auto;
	margin: 20px 0;
}

.arch-diagram .node-label {
	color: #7fb2ff;
}

/* --- pills and banners -------------------------------------------------- */
.tool-pill {
	display: inline-block;
	padding: 8px 16px;
	background: #fff;
	border: 1px solid #dfe5ee;
	border-radius: 20px;
	margin: 5px 4px;
	font-weight: 500;
	font-size: 0.92rem;
}

.tool-pill i {
	color: #4571C0;
	margin-right: 6px;
}

.module-banner {
	background: linear-gradient(135deg, #1f3350 0%, #33538a 100%);
	color: #fff;
	border-radius: 10px;
	padding: 40px;
	margin: 20px 0;
}

.module-banner h3 {
	margin-bottom: 15px;
}

.module-banner a:not(.btn-primary) {
	color: #fff;
	text-decoration: underline;
}

.module-banner a.btn-primary {
	margin-top: 10px;
}

/* --- technical brief ---------------------------------------------------- */
.whitepaper-section {
	background: #f4f6f9;
	padding: 70px 0;
	border-top: 1px solid #e3e7ee;
}

.whitepaper {
	background: #fff;
	border-radius: 10px;
	padding: 45px;
	box-shadow: 0 6px 24px rgba(15,27,45,0.08);
	max-width: 980px;
	margin: 0 auto;
}

.whitepaper h2 {
	font-size: 1.9rem;
	margin-bottom: 6px;
}

.whitepaper .wp-meta {
	color: #6c757d;
	font-size: 0.9rem;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9ecef;
}

.whitepaper h3 {
	font-size: 1.25rem;
	margin-top: 34px;
	margin-bottom: 12px;
	color: #2c4a7c;
}

.whitepaper p,
.whitepaper ul {
	line-height: 1.8;
	color: #3d4450;
}

/* --- call to action ----------------------------------------------------- */
.cta-section {
	background: #4571C0;
	color: #fff;
	padding: 60px 0;
	text-align: center;
}

.btn-primary {
	background: #fff;
	color: #4571C0;
	padding: 15px 35px;
	border-radius: 4px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
}

.btn-outline-light-wink {
	border: 2px solid rgba(255,255,255,0.8);
	color: #fff;
	padding: 13px 30px;
	border-radius: 4px;
	font-weight: bold;
	text-decoration: none;
	display: inline-block;
	margin-left: 10px;
	transition: all 0.3s ease;
}

.btn-outline-light-wink:hover {
	background: rgba(255,255,255,0.15);
	color: #fff;
}

/* --- end of life notice ------------------------------------------------- */
.eol-notice {
	background: #dc3545;
	color: #fff;
	padding: 15px 0;
	text-align: center;
	font-weight: 500;
}

.eol-notice .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.eol-notice a {
	color: #fff;
	text-decoration: underline;
}

/* --- capability grid (numbered feature cards) ---------------------------- */
.capability-card {
	background: #fff;
	border-radius: 8px;
	padding: 30px;
	margin-bottom: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.13);
}

.capability-card .cap-number {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 1px;
	color: #4571C0;
	margin-bottom: 10px;
}

.capability-card h3 {
	font-size: 1.15rem;
	margin-bottom: 14px;
}

.capability-card p {
	color: #4a4a4a;
	margin-bottom: 0;
}

.capability-icon {
	color: #4571C0;
	font-size: 2rem;
	margin-bottom: 16px;
}

/* --- status chips -------------------------------------------------------- */
.state-strip {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 25px 0 10px;
}

.state-chip {
	flex: 1 1 160px;
	text-align: center;
	padding: 16px 12px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	font-weight: 600;
}

.state-chip span {
	display: block;
	font-weight: 400;
	font-size: 0.85rem;
	color: #6c757d;
	margin-top: 4px;
}

.state-online { border-top: 4px solid #2e9e5b; }
.state-unstable { border-top: 4px solid #d5a021; }
.state-intermittent { border-top: 4px solid #e07b39; }
.state-offline { border-top: 4px solid #c0392b; }
.state-longterm { border-top: 4px solid #6c757d; }

/* --- differentiator list and position table ------------------------------ */
.diff-list {
	background: #fff;
	border-radius: 10px;
	padding: 35px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.diff-list li {
	margin-bottom: 14px;
	line-height: 1.7;
}

.diff-list li:last-child {
	margin-bottom: 0;
}

.position-table {
	width: 100%;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	margin: 20px 0;
}

.position-table th {
	background: #4571C0;
	color: #fff;
	padding: 15px;
	text-align: left;
}

.position-table td {
	padding: 15px;
	border-bottom: 1px solid #eee;
	vertical-align: top;
}

.position-table tr:last-child td {
	border-bottom: none;
}

/* --- pairing banner and trust badges ------------------------------------- */
.pair-banner {
	background: #0f2547;
	color: #fff;
	padding: 30px 0;
	text-align: center;
}

.pair-banner a {
	color: #9dc3ff;
}

.trust-badges {
	margin: 25px 0;
}

.trust-badges span {
	display: inline-block;
	margin: 5px 22px 5px 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

.store-badges img {
	height: 46px;
	margin: 10px 12px 0 0;
}

/* --- age timeline (retention tiers) -------------------------------------- */
.timeline {
	background: #fff;
	border-radius: 10px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.timeline-row {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 14px 0;
	border-bottom: 1px solid #eef1f5;
}

.timeline-row:last-child {
	border-bottom: none;
}

.timeline-age {
	flex: 0 0 130px;
	font-weight: 700;
	color: #2c4a7c;
}

.timeline-bar {
	flex: 1 1 auto;
	height: 14px;
	border-radius: 7px;
	background: #4571C0;
}

.timeline-note {
	flex: 0 0 190px;
	color: #6c757d;
	font-size: 0.9rem;
	text-align: right;
}

/* --- diagram carousel ---------------------------------------------------- */
.diagram-carousel {
	margin: 20px 0;
}

.dc-viewport {
	position: relative;
	background: #0f1b2d;
	border-radius: 10px;
	overflow: hidden;
}

.dc-slide {
	display: none;
	margin: 0;
	padding: 22px 22px 16px;
}

.dc-slide.is-active {
	display: block;
	animation: dcFade 0.35s ease;
}

@keyframes dcFade {
	from { opacity: 0; }
	to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.dc-slide.is-active { animation: none; }
}

.dc-slide figcaption {
	color: #9db6d8;
	font-size: 0.88rem;
	line-height: 1.6;
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(255,255,255,0.09);
}

.dc-slide figcaption strong {
	color: #e8f0fb;
	font-weight: 600;
}

.dc-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-top: 12px;
}

.dc-btn {
	background: #fff;
	border: 1px solid #dfe5ee;
	color: #2c4a7c;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.dc-btn:hover {
	background: #eef3fb;
	border-color: #4571C0;
}

.dc-dots {
	display: flex;
	gap: 8px;
}

.dc-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: #cbd6e6;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.dc-dot.is-active {
	background: #4571C0;
	transform: scale(1.2);
}

.dc-counter {
	color: #6c757d;
	font-size: 0.85rem;
	min-width: 62px;
	text-align: center;
}

/* --- inline SVG diagram idiom -------------------------------------------- */
.dc-svg {
	width: 100%;
	height: auto;
	display: block;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.dc-svg .panel { fill: #16273f; stroke: #26405f; stroke-width: 1; }
.dc-svg .box { fill: #1c3355; stroke: #34568c; stroke-width: 1.5; }
.dc-svg .box-wink { fill: #24406b; stroke: #5b86d6; stroke-width: 2; }
.dc-svg .box-muted { fill: #182437; stroke: #2a3c56; stroke-width: 1.5; }
.dc-svg .box-warn { fill: #3a2415; stroke: #e07b39; stroke-width: 2; }
.dc-svg .box-ok { fill: #14301f; stroke: #2e9e5b; stroke-width: 2; }
.dc-svg .t { fill: #e8f0fb; font-size: 16px; font-weight: 600; }
.dc-svg .t-sm { fill: #9db6d8; font-size: 13.5px; font-weight: 400; }
.dc-svg .t-accent { fill: #7fb2ff; font-size: 13.5px; font-weight: 600; }
.dc-svg .t-warn { fill: #f0a973; font-size: 13.5px; font-weight: 600; }
.dc-svg .t-ok { fill: #6ecf9a; font-size: 13.5px; font-weight: 600; }
.dc-svg .t-head { fill: #ffffff; font-size: 14px; font-weight: 700; letter-spacing: 1.2px; }
.dc-svg .flow { stroke: #5b86d6; stroke-width: 2; fill: none; }
.dc-svg .flow-dash { stroke: #8aa9d4; stroke-width: 1.8; fill: none; stroke-dasharray: 6 5; }
.dc-svg .flow-warn { stroke: #e07b39; stroke-width: 2; fill: none; }
.dc-svg .flow-ok { stroke: #2e9e5b; stroke-width: 2; fill: none; }
.dc-svg .zone { fill: none; stroke: #3d5578; stroke-width: 1.2; stroke-dasharray: 5 5; }

/* --- use case panel inside a technical brief ------------------------------ */
.wp-usecase {
	background: #f4f7fc;
	border-left: 4px solid #4571C0;
	border-radius: 0 8px 8px 0;
	padding: 24px 26px;
	margin: 30px 0;
}

.wp-usecase h4 {
	font-size: 1.05rem;
	color: #2c4a7c;
	margin-bottom: 12px;
}

.wp-usecase p:last-child,
.wp-usecase ul:last-child {
	margin-bottom: 0;
}

.wp-usecase ul {
	margin-bottom: 0;
	padding-left: 20px;
}

.wp-usecase li {
	line-height: 1.7;
	color: #3d4450;
}

.wp-close {
	margin-top: 28px;
	padding-top: 18px;
	border-top: 1px solid #e9ecef;
	font-size: 0.95rem;
	color: #56606f;
}

/* --- product logos -------------------------------------------------------- */
.hero-logo {
	height: 52px;
	width: auto;
	display: block;
	margin-bottom: 18px;
	mix-blend-mode: screen;
}

.product-logo {
	height: 44px;
	width: auto;
	display: block;
	margin-bottom: 20px;
	border-radius: 4px;
}

/* --- screenshot gallery --------------------------------------------------- */
.shot {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(15,27,45,0.12);
	margin-bottom: 30px;
	height: 100%;
}

.shot img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 1px solid #e9ecef;
}

.shot figcaption {
	padding: 18px 20px;
	color: #4a4a4a;
	font-size: 0.94rem;
	line-height: 1.65;
}

.shot figcaption strong {
	display: block;
	color: #2c4a7c;
	margin-bottom: 6px;
}

/* ==========================================================================
   Bootstrap gap fill
   The site's boot.min.css ships only a handful of column and utility classes.
   Pages across the site use the standard Bootstrap vocabulary and silently get
   nothing. The rules below restore the parts that are actually used.
   ========================================================================== */

/* --- grid columns --------------------------------------------------------- */
.col { flex: 1 0 0%; }
.col-auto { flex: 0 0 auto; width: auto; }
.col-1 { flex: 0 0 auto; width: 8.33333333%; }
.col-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-3 { flex: 0 0 auto; width: 25%; }
.col-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-6 { flex: 0 0 auto; width: 50%; }
.col-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-9 { flex: 0 0 auto; width: 75%; }
.col-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 768px) {
	.col-md { flex: 1 0 0%; }
	.col-md-auto { flex: 0 0 auto; width: auto; }
	.col-md-1 { flex: 0 0 auto; width: 8.33333333%; }
	.col-md-2 { flex: 0 0 auto; width: 16.66666667%; }
	.col-md-3 { flex: 0 0 auto; width: 25%; }
	.col-md-5 { flex: 0 0 auto; width: 41.66666667%; }
	.col-md-7 { flex: 0 0 auto; width: 58.33333333%; }
	.col-md-8 { flex: 0 0 auto; width: 66.66666667%; }
	.col-md-9 { flex: 0 0 auto; width: 75%; }
	.col-md-10 { flex: 0 0 auto; width: 83.33333333%; }
	.col-md-11 { flex: 0 0 auto; width: 91.66666667%; }
	.col-md-12 { flex: 0 0 auto; width: 100%; }
}

@media (min-width: 992px) {
	.col-lg { flex: 1 0 0%; }
	.col-lg-auto { flex: 0 0 auto; width: auto; }
	.col-lg-1 { flex: 0 0 auto; width: 8.33333333%; }
	.col-lg-2 { flex: 0 0 auto; width: 16.66666667%; }
	.col-lg-3 { flex: 0 0 auto; width: 25%; }
	.col-lg-5 { flex: 0 0 auto; width: 41.66666667%; }
	.col-lg-7 { flex: 0 0 auto; width: 58.33333333%; }
	.col-lg-8 { flex: 0 0 auto; width: 66.66666667%; }
	.col-lg-9 { flex: 0 0 auto; width: 75%; }
	.col-lg-10 { flex: 0 0 auto; width: 83.33333333%; }
	.col-lg-11 { flex: 0 0 auto; width: 91.66666667%; }
	.col-lg-12 { flex: 0 0 auto; width: 100%; }
}

/* --- spacing -------------------------------------------------------------- */
.m-0 { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.my-3 { margin-top: 1rem; margin-bottom: 1rem; }
.my-4 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-5 { margin-top: 3rem; margin-bottom: 3rem; }
.me-1 { margin-right: 0.25rem; }
.me-3 { margin-right: 1rem; }
.ms-1 { margin-left: 0.25rem; }
.ms-2 { margin-left: 0.5rem; }
.ms-3 { margin-left: 1rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.pt-4 { padding-top: 1.5rem; }
.pb-4 { padding-bottom: 1.5rem; }

/* --- flex helpers --------------------------------------------------------- */
.d-flex { display: flex; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-start { justify-content: flex-start; }
.justify-content-between { justify-content: space-between; }
.align-items-start { align-items: flex-start; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }
.g-3 > [class*="col-"] { padding-top: 1rem; }
.g-4 > [class*="col-"] { padding-top: 1.5rem; }
.h-100 { height: 100%; }
.w-100 { width: 100%; }
.position-relative { position: relative; }

@media (min-width: 768px) {
	.justify-content-md-start { justify-content: flex-start; }
	.text-md-start { text-align: left; }
	.mt-md-0 { margin-top: 0 !important; }
}

@media (min-width: 992px) {
	.d-lg-block { display: block; }
}

/* --- type and color helpers ----------------------------------------------- */
.text-start { text-align: left; }
.text-end { text-align: right; }
.text-primary { color: #4571C0 !important; }
.text-success { color: #2e9e5b !important; }
.text-danger { color: #c0392b !important; }
.text-warning { color: #d5a021 !important; }
.text-info { color: #2c4a7c !important; }
.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }
.small { font-size: 0.875rem; }
.display-4 { font-size: 2.5rem; font-weight: 600; line-height: 1.2; }
.display-5 { font-size: 2.1rem; font-weight: 600; line-height: 1.25; }
.opacity-75 { opacity: 0.75; }
.list-unstyled { list-style: none; padding-left: 0; }
.bg-light { background-color: #f8f9fa; }
.bg-white { background-color: #fff; }
.bg-primary { background-color: #4571C0; }
.shadow-sm { box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 12px 32px rgba(0,0,0,0.18); }
.rounded-3 { border-radius: 10px; }
.border-0 { border: 0 !important; }
.table-responsive { overflow-x: auto; }

/* --- button sizes --------------------------------------------------------- */
.btn-lg { padding: 14px 32px; font-size: 1.05rem; }
.btn-sm { padding: 6px 14px; font-size: 0.875rem; }

/* --- alert component (used on solution pages) ----------------------------- */
.alert {
	padding: 20px 24px;
	border-radius: 8px;
	border-left: 4px solid #4571C0;
	background: #f4f7fc;
	margin-bottom: 24px;
}

.alert-heading {
	color: #2c4a7c;
	font-size: 1.15rem;
	margin-bottom: 10px;
}

.alert-info { border-left-color: #4571C0; background: #f4f7fc; }
.alert-success { border-left-color: #2e9e5b; background: #f1f8f4; }
.alert-warning { border-left-color: #d5a021; background: #fdf8ee; }
.alert-danger { border-left-color: #c0392b; background: #fdf2f1; }

/* --- solution and partner cards ------------------------------------------- */
.solution-link {
	color: #4571C0;
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	margin-top: 15px;
	transition: color 0.3s ease;
}

.solution-link:hover { color: #345999; }

.partner-links,
.cta-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin: 20px 0;
}

.partner-link-card,
.video-link-card {
	height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-link-card:hover,
.video-link-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 24px rgba(0,0,0,0.13);
}

.partner-link,
.video-link {
	color: #4571C0;
	text-decoration: none;
	font-weight: 600;
}

.partner-link:hover,
.video-link:hover { color: #345999; }

.compatibility-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
