.post-overview-card {
	position: relative;
	display: block;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	padding: 18px 18px 18px 18px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.post-overview-card:hover {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
	transform: translateY(-2px);
}

.post-overview-card .po-card-inner {
	display: grid;
	grid-template-columns: 1fr 240px;
	gap: 18px;
	align-items: center;
}

.post-overview-card .po-card-inner.po-card-inner--full {
	grid-template-columns: 1fr;
}

.post-overview-card .po-title {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 600;
	color: #111827;
	line-height: 1.25;
}

.post-overview-card .po-excerpt {
	margin: 0 0 12px;
	color: #4b5563;
	font-size: 15px;
	line-height: 1.55;
	max-height: 70px;
	overflow: hidden;
}

.post-overview-card .po-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.post-overview-card .po-read-more {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #0066cc;
	font-weight: 600;
	text-decoration: none;
}

.post-overview-card .po-read-more:hover {
	text-decoration: underline;
}

.post-overview-card .po-media {
	position: relative;
}

.post-overview-card .po-image {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 65%;
	overflow: hidden;
	border-radius: 16px;
	background: #f3f4f6;
	cursor: pointer;
}

.post-overview-card .po-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.post-overview-card:hover .po-image img {
	transform: scale(1.02);
}

.po-play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 30%;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
	display: grid;
	place-items: center;
	transition: transform 0.25s ease;
}

.po-play-icon svg {
	width: 48px;
	height: 48px;
	fill: #0066cc;
}

.post-overview-card:hover .po-play-icon {
	transform: translate(-50%, -50%) scale(1.06);
}

/* Modal styles */
.po-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 99999;
}

.po-modal.is-active {
	display: flex;
}

.po-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(2px);
}

.po-modal__dialog {
	position: relative;
	background: #ffffff;
	border-radius: 16px;
	max-width: 960px;
	width: 92%;
	max-height: 90vh;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto 1fr;
}

.po-modal__dialog .po-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    border: none;
    background: #f3f4f6;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    line-height: 0px;
}

.po-modal__image img {
	width: 100%;
	display: block;
	max-height: 340px;
	object-fit: cover;
}

.po-modal__body {
	padding: 18px 20px 24px;
	overflow-y: auto;
	max-height: calc(90vh - 80px);
}

.po-modal__title {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
	color: #111827;
}

.po-modal__content {
	color: #374151;
	line-height: 1.65;
}
h2.investment_objective_title,
.investment_objective h2,
h2.investment_objective_title strong,
.investment_objective h2 strong{
	font-size: 16px;
    font-weight: 600;
}
.investment_objective a{

    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}
.investment_objective a:hover{
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
	.post-overview-card .po-card-inner {
		grid-template-columns: 1fr;
	}

	.post-overview-card .po-media {
		order: 1;
	}

	.post-overview-card .po-text {
		order: 2;
	}

	.po-modal__body {
		max-height: calc(90vh - 40px);
	}
}
