/* Target Acquisitions — matches Fund / Investment Strategy page styling */

.ta-page .banner-section {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
}

.ta-page .banner-section img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ta-page .banner-content {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #fff;
	z-index: 2;
	width: 100%;
}

.ta-page .banner-heading {
	font-family: "Poltawski Nowy", serif;
	font-weight: 700;
	font-size: 65px;
	margin-bottom: 1rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.ta-page .banner-text {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 32px;
	margin-bottom: 0.5rem;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.ta-page .main-content-section {
	padding: 4rem 0;
}

.ta-page .sidebar-navigation {
	position: sticky;
	top: 120px;
	max-height: calc(100vh - 120px);
	overflow-y: auto;
	padding-right: 10px;
}

.ta-page .ta-sidebar-col {
	border-right: 1px solid #cfcdcd;
}

.ta-page .ta-content-col {
	padding-left: 24px;
}

.ta-page .ta-sidebar-list {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.ta-page .ta-sidebar-card {
	display: block;
	width: 100%;
	text-align: left;
	background: transparent;
	border: 1px solid transparent;
	border-radius: 16px;
	padding: 1.1rem 1.15rem 1.25rem;
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ta-page .ta-sidebar-card:hover {
	border-color: rgba(160, 103, 35, 0.35);
}

.ta-page .ta-sidebar-card.active {
	border-color: #ba762b;
	box-shadow: 0 0 0 1px rgba(186, 118, 43, 0.08);
}

.ta-page .ta-sidebar-card__title {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 1.3;
	color: #000;
	margin-bottom: 0.85rem;
}

.ta-page .ta-sidebar-card.active .ta-sidebar-card__title {
	color: #ba762b;
}

.ta-page .ta-sidebar-card__divider {
	margin: 0 0 1rem;
	padding: 0;
	height: 2px;
	background-color: #d9d9d9;
	border: none;
	opacity: 1;
}

.ta-page .ta-sidebar-card.active .ta-sidebar-card__divider {
	background: linear-gradient(90deg, #a06723 0%, #e0932c 50%, #a06723 100%);
}

.ta-page .ta-sidebar-card__body {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 1rem;
}

.ta-page .ta-sidebar-card__bullet {
	width: 15px;
	height: 15px;
	margin-top: 4px;
	flex-shrink: 0;
}

.ta-page .ta-sidebar-card__summary {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: #000;
}

.ta-page .ta-sidebar-card__metrics-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
}

.ta-page .ta-sidebar-card__dash {
	display: inline-block;
	width: 18px;
	height: 2px;
	background: linear-gradient(90deg, #a06723 0%, #e0932c 100%);
	flex-shrink: 0;
}

.ta-page .ta-acquisition-panel {
	display: none;
}

.ta-page .ta-acquisition-panel.active {
	display: block;
}

.ta-page .ta-metrics-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 2rem 0 2.5rem;
}

.ta-page .ta-metric-card {
	background: #faf8f5;
	border: 1px solid #ece3d6;
	border-radius: 12px;
	padding: 1rem 1.15rem;
}

.ta-page .ta-metric-card--wide {
	grid-column: 1 / -1;
}

.ta-page .ta-metric-label {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #8a6a45;
	margin-bottom: 0.35rem;
}

.ta-page .ta-metric-value {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.45;
	color: #000;
}

.ta-page .ta-metrics-meaning {
	margin-top: 3rem;
	scroll-margin-top: 140px;
}

.ta-page .ta-acq-eyebrow {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #000;
	margin-bottom: 1rem;
}

.ta-page .ta-acq-headline {
	font-family: "Poltawski Nowy", serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 1.2;
	color: #000;
	margin-bottom: 1.5rem;
}

.ta-page .ta-acq-return-profile {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	line-height: 35px;
	font-weight: 400;
	color: #000;
	margin-bottom: 2rem;
}

.ta-page .ta-acq-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	margin-bottom: 2rem;
}

.ta-page .ta-acq-stat-card {
	border: 1px solid #c9a56a;
	border-radius: 4px;
	padding: 1.25rem 1rem 1.1rem;
	text-align: center;
	min-height: 150px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.ta-page .ta-acq-stat-card__label {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #000;
	margin-bottom: 0.75rem;
}

.ta-page .ta-acq-stat-card__value {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a2744;
	margin-bottom: 0.75rem;
}

.ta-page .ta-acq-stat-card__desc {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	line-height: 1.45;
	color: #555;
	margin-top: auto;
}

.ta-page .ta-buyer-channels-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 2.5rem;
}

.ta-page .ta-buyer-channel-card {
	border: 1px solid #c9a56a;
	border-radius: 4px;
	padding: 0.85rem 0.75rem;
	text-align: center;
	min-height: 72px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.15rem;
}

.ta-page .ta-buyer-channel-card__num {
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: #000;
}

.ta-page .ta-buyer-channel-card__label {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	color: #000;
}

.ta-page .ta-metrics-meaning-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem 1.25rem;
	margin-bottom: 2rem;
}

.ta-page .ta-metrics-meaning-item__title {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #000;
	margin-bottom: 0.5rem;
}

.ta-page .ta-metrics-meaning-item__text {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	color: #000;
	margin: 0;
}

.ta-page .ta-acq-closing-summary {
	font-family: "Poppins", sans-serif;
	font-size: 20px;
	line-height: 35px;
	color: #000;
	margin-bottom: 0;
}

.ta-page .ta-acq-cta {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #d9d9d9;
}

.ta-page .ta-acq-cta__button {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0.85rem 1.25rem;
	background: #b37838;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	line-height: 1.35;
	transition: background 0.2s ease;
}

.ta-page .ta-acq-cta__button:hover {
	background: #9a6630;
	color: #fff;
}

.ta-page .ta-acq-cta__note {
	flex: 1;
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	line-height: 1.55;
	font-style: italic;
	color: #000;
	margin: 0;
}

.ta-page .ta-forward-disclosure {
	padding: 2.5rem 0 3rem;
	background: #fff;
	border-top: 1px solid #ececec;
}

.ta-page .ta-forward-disclosure p {
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #666;
	margin-bottom: 1rem;
	text-align: left;
}

.ta-page .ta-forward-disclosure p strong {
	font-weight: 600;
	color: #555;
}

.ta-page .sidebar-nav-link {
	color: #ba762b;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	padding: 0.75rem 0;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	font-size: 20px;
}

.ta-page .sidebar-nav-link.active,
.ta-page .sidebar-nav-link:hover {
	color: #a06723;
}

.ta-page .sidebar-divider {
	margin: 15px 0 15px 15px;
	padding: 0;
	height: 2px;
	background-color: #bfbfbf;
	border: none;
}

.ta-page .sub-nav-link {
	color: #000;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	padding: 0;
	text-decoration: none;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	font-size: 16px;
	line-height: 16px;
}

.ta-page .sub-nav-link:hover,
.ta-page .sub-nav-link.active {
	color: #ba762b;
}

.ta-page .sub-nav-link img {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	flex-shrink: 0;
}

.ta-page .content-heading {
	font-family: "Poltawski Nowy", serif;
	font-weight: 700;
	color: #000;
	font-size: 42px;
	margin-bottom: 2rem;
}

.ta-page .section-heading {
	font-family: "Poppins", sans-serif;
	color: #000;
	font-weight: 600;
	font-size: 32px;
	line-height: 45px;
	margin-bottom: 1rem;
}

.ta-page .body-text {
	font-family: "Poppins", sans-serif;
	color: #000;
	font-weight: 400;
	font-size: 20px;
	line-height: 35px;
	margin-bottom: 1.5rem;
}

.ta-page .gradient-line-lg {
	height: 4px;
	background: linear-gradient(90deg, #a06723 0%, #e0932c 50%, #a06723 100%);
	margin-bottom: 2rem;
}

.ta-page .gradient-line-sm {
	height: 2px;
	background: linear-gradient(90deg, #a06723 0%, #e0932c 50%, #a06723 100%);
	margin-bottom: 2rem;
}

.ta-page .ta-bullet-row {
	display: flex;
	align-items: flex-start;
	margin-bottom: 0.75rem;
}

.ta-page .ta-bullet-row img {
	width: 15px;
	height: 15px;
	margin-right: 12px;
	margin-top: 6px;
	flex-shrink: 0;
}

.ta-page .ta-bullet-row p {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-size: 20px;
	color: #000;
	margin: 0;
	line-height: 35px;
}

.ta-page .ta-states-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 1rem;
	margin: 1.5rem 0 2rem;
}

.ta-page .ta-state-card {
	background: #faf3ea;
	border: 1px solid #e8d4b8;
	border-radius: 10px;
	padding: 1rem 1.25rem;
	text-align: center;
}

.ta-page .ta-state-card strong {
	display: block;
	font-family: "Poppins", sans-serif;
	font-size: 22px;
	color: #a06723;
	margin-bottom: 0.25rem;
}

.ta-page .ta-state-card span {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: #555;
}

.ta-page .content-section {
	margin-bottom: 4rem;
}

.ta-page .content-section + .content-section {
	margin-top: 4rem;
}

@media (max-width: 991px) {
	.ta-page .banner-heading {
		font-size: 42px;
	}

	.ta-page .banner-text {
		font-size: 22px;
	}

	.ta-page .sidebar-navigation {
		position: static;
		max-height: none;
		margin-bottom: 2rem;
	}

	.ta-page .ta-sidebar-col {
		border-right: none;
		border-bottom: 1px solid #cfcdcd;
		margin-bottom: 2rem;
		padding-bottom: 1.5rem;
	}

	.ta-page .ta-content-col {
		padding-left: 12px;
	}

	.ta-page .ta-metrics-grid {
		grid-template-columns: 1fr;
	}

	.ta-page .ta-acq-stat-grid {
		grid-template-columns: 1fr;
	}

	.ta-page .ta-buyer-channels-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ta-page .ta-metrics-meaning-grid {
		grid-template-columns: 1fr;
	}

	.ta-page .ta-acq-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.ta-page .ta-acq-cta__button {
		width: 100%;
	}
}
