/* =========================================================================
   Twinco Client Perspectives — port of components/sections/ClientPerspectives.tsx
   ========================================================================= */
.elementor-widget-twinco_client_perspectives .elementor-widget-container { padding: 0; }

.twinco-cp { width: 100%; overflow: hidden; background-color: var(--twinco-surface); font-family: var(--twinco-font-sans); }
.twinco-cp__frame { margin-inline: auto; display: flex; width: 100%; max-width: 1440px; flex-direction: column; align-items: flex-start; padding: 100px 80px; }
.twinco-cp__inner { position: relative; display: flex; width: 1280px; max-width: 100%; flex-direction: column; align-items: center; gap: 50px; border-radius: var(--twinco-radius-card); padding: 24px; }
.twinco-cp__head { width: 100%; }
.twinco-cp__heading { width: 100%; line-height: 1; word-break: break-word; }
.twinco-cp__heading-blue { font-size: var(--twinco-text-h1); font-weight: 700; line-height: 1; color: var(--twinco-blue); }
.twinco-cp__heading-navy { font-size: var(--twinco-text-h1); font-weight: 400; line-height: 1; color: var(--twinco-navy); }

.twinco-cp__carousel {
	position: relative;
	display: flex;
	min-height: 500px;
	width: 1280px;
	max-width: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
	overflow: hidden;
	border-radius: var(--twinco-radius-card);
	border: 10px solid #fff;
	background: linear-gradient(180deg, #96c4ff 0%, #dcebfc 100%);
	padding: 56px 80px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	will-change: transform;
}
.twinco-cp__carousel:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(2, 27, 121, 0.18); }

.twinco-cp__content { display: none; width: 100%; max-width: 840px; flex-direction: column; align-items: center; gap: 32px; text-align: center; word-break: break-word; }
.twinco-cp__content.is-active { display: flex; }
.twinco-cp .twinco-cp__logo { display: block; height: 60px; width: 170.959px; flex-shrink: 0; }
.twinco-cp__quote { font-size: var(--twinco-text-title); font-weight: 400; line-height: 1.4; color: #000; }
.twinco-cp__person { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.twinco-cp .twinco-cp__photo { width: 88px; height: 88px; flex-shrink: 0; border-radius: 9999px; border: 3px solid #fff; object-fit: cover; box-shadow: 0 6px 16px rgba(2, 27, 121, 0.25); display: block; }
.twinco-cp__meta { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.twinco-cp__name { font-size: 20px; font-weight: 600; line-height: 1.2; color: var(--twinco-jet); }
.twinco-cp__role { font-size: var(--twinco-text-label); font-weight: 400; line-height: 1.3; color: var(--twinco-slate); }

.twinco-cp__controls { display: flex; align-items: center; gap: 16px; }
/* Same specificity fight as the Solutions carousel: the block theme + Elementor paint
   bare <button>s (0,1,1), hiding the inactive dots and tinting the arrow. Force at
   (0,2,0)/(0,3,0) + !important and kill background-image. */
.twinco-cp .twinco-cp__arrow,
.twinco-cp .twinco-cp__arrow:hover,
.twinco-cp .twinco-cp__arrow:focus,
.twinco-cp .twinco-cp__arrow:active,
.twinco-cp .twinco-cp__arrow:focus-visible {
	display: flex;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	background: none !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	padding: 0 !important;
	min-width: 0 !important;
	min-height: 0 !important;
	transition: filter 0.2s ease;
}
.twinco-cp .twinco-cp__arrow:hover { filter: brightness(1.1); }
.twinco-cp__arrow-prev { display: block; width: 36px; height: 36px; transform: rotate(90deg); }
.twinco-cp__arrow-next { display: block; width: 36px; height: 36px; transform: rotate(-90deg); }
.twinco-cp .twinco-cp__arrow img { display: block; width: 100%; height: 100%; }
.twinco-cp__dots { display: flex; align-items: center; gap: 8px; }
.twinco-cp .twinco-cp__dots .twinco-cp__dot,
.twinco-cp .twinco-cp__dots .twinco-cp__dot:focus,
.twinco-cp .twinco-cp__dots .twinco-cp__dot:active,
.twinco-cp .twinco-cp__dots .twinco-cp__dot:focus-visible {
	width: 10px !important;
	height: 10px !important;
	min-width: 0 !important;
	min-height: 0 !important;
	flex: 0 0 auto !important;
	border-radius: 9999px;
	background-color: rgba(2, 27, 121, 0.2) !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	padding: 0 !important;
	cursor: pointer;
	transition: all 0.3s ease;
}
.twinco-cp .twinco-cp__dots .twinco-cp__dot:hover { background-color: rgba(2, 27, 121, 0.4) !important; }
.twinco-cp .twinco-cp__dots .twinco-cp__dot.is-active {
	width: 26px !important;
	height: 10px !important;
	background-color: var(--twinco-blue) !important;
	background-image: none !important;
}

@media (max-width: 1023.98px) {
	.twinco-cp__inner { width: 100%; }
	.twinco-cp__carousel { min-height: 0; }
}
@media (max-width: 767.98px) {
	.twinco-cp__frame { padding: 48px 24px; }
	.twinco-cp__inner { gap: 32px; padding: 0; }
	.twinco-cp__carousel { gap: 28px; padding: 32px 20px; }
	.twinco-cp__content { gap: 24px; }
	.twinco-cp__quote { font-size: 18px; }
	.twinco-cp .twinco-cp__logo { height: 44px; width: 125px; }
	.twinco-cp .twinco-cp__photo { width: 72px; height: 72px; }
}
@media (max-width: 639.98px) {
	.twinco-cp__frame { padding-left: 16px; padding-right: 16px; }
}
