/* Verhaal Layout Styles */
.verhaal_article {
	height: 100%;
}

.verhaal-wrapper {
	position: relative;
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
	overflow: hidden;
	border-radius: var(--pk-button-radius);
}

.verhaal-wrapper::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 2;
	background: linear-gradient(0deg, var(--pk-color-secondary) 0%, rgba(0, 0, 0, 0) 60%);
	opacity: 0.95;
}

.verhaal-wrapper .verhaal-image {
	position: relative;
	z-index: 1;
	height: 100%;
}

.verhaal-wrapper .verhaal-image img {
	width: 100%;
	height: 100%;
	min-height: 460px;
	object-fit: cover;
	display: block;
}

.verhaal-wrapper .verhaal-content {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
	width: 100%;
	padding: 2rem;
	color: #ffffff;
}

.verhaal-wrapper .verhaal-content .verhaal-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0;
	color: var(--pk-color-tertiary);
}

.verhaal-wrapper .verhaal-content .verhaal-excerpt {
	font-size: 0.95rem;
	line-height: 1.5;
	margin: 0;
	color: #ffffff;
	opacity: 0.95;
}

.verhaal-wrapper .verhaal-content .read-more {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--pk-color-tertiary);
	transition: gap 0.3s ease;
}

.verhaal-wrapper:hover .verhaal-content .read-more {
	gap: 0.75rem;
}

.verhaal-wrapper .verhaal-content .read-more .read-more-icon {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.verhaal-wrapper .verhaal-content .read-more .read-more-icon svg {
	width: 100%;
	height: 100%;
	fill: var(--pk-color-tertiary);
}

@media screen and (max-width: 767px) {
	.verhaal-wrapper .verhaal-content {
		padding: 1.5rem;
	}
	
	.verhaal-wrapper .verhaal-content .verhaal-title {
		font-size: 1.25rem;
	}
	
	.verhaal-wrapper .verhaal-image img {
		min-height: 380px;
	}
}
