@charset "UTF-8";

.file-kunst .kunst-card {
	background: #fff;
	border: 1px solid #dde1e6;
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 1px 2px rgba(17, 24, 39, 0.06);
}

.file-kunst .kunst-card__media {
	display: block;
	background: #f3f4f6;
	overflow: hidden;
}

.file-kunst .kunst-card__media img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	transition: transform 0.25s ease;
}

.file-kunst .kunst-card__media:hover img {
	transform: scale(1.03);
}

.file-kunst .kunst-card__media--video iframe {
	border: 0;
	width: 100%;
	height: 100%;
}

.file-kunst .kunst-card__body {
	padding: 1rem 1.1rem 1.15rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	flex: 1 1 auto;
}

.file-kunst .kunst-card__title {
	margin: 0;
	color: #203a1d;
	font-weight: 600;
	line-height: 1.35;
}

.file-kunst .kunst-card__meta {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.file-kunst .kunst-card__meta img {
	flex: 0 0 auto;
	margin-top: 0.2rem;
}

.file-kunst .kunst-card__text {
	color: #4b5563;
	font-size: 0.95rem;
	line-height: 1.45;
}

.file-kunst .kunst-card--panel,
.file-kunst .kunst-card--link {
	padding: 1.25rem 1.2rem;
	background: #f7f8f5;
}

.file-kunst .kunst-card--quote {
	padding: 0;
	background:
		linear-gradient(160deg, rgba(32, 58, 29, 0.06) 0%, rgba(121, 173, 75, 0.08) 100%),
		#fbfcf8;
	border-color: #d5ddd0;
	position: relative;
	overflow: hidden;
}

.file-kunst .kunst-quote {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1.25rem;
	height: 100%;
	margin: 0;
	padding: 1.5rem 1.35rem 1.35rem;
	border: 0;
	border-left: 3px solid #79ad4b;
	position: relative;
}

.file-kunst .kunst-quote::before {
	content: "\201C";
	position: absolute;
	top: 0.45rem;
	left: 0.85rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 3.75rem;
	line-height: 1;
	color: rgba(32, 58, 29, 0.14);
	pointer-events: none;
	user-select: none;
}

.file-kunst .kunst-quote__text {
	margin: 0;
	padding-top: 1.35rem;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.05rem, 1.8vw, 1.2rem);
	font-style: italic;
	line-height: 1.55;
	color: #203a1d;
	quotes: none;
}

.file-kunst .kunst-quote__footer {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	padding: 0.7rem 0 0;
	border-top: 1px solid rgba(32, 58, 29, 0.12);
	background: transparent;
	color: #203a1d;
	font-size: 0.9rem;
}

.file-kunst .kunst-quote__footer::before {
	content: none;
}

.file-kunst .kunst-quote__flag {
	flex: 0 0 auto;
	width: 18px;
	height: 12px;
	border-radius: 2px;
	box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.12);
}

.file-kunst .kunst-quote__cite {
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.01em;
	color: #203a1d;
}

.file-kunst .kunst-quote__cite::before {
	content: "— ";
	font-weight: 400;
	color: #6b7a66;
}

.file-kunst .kunst-card__link {
	display: block;
	text-decoration: none;
	color: inherit;
	height: 100%;
}

.file-kunst .kunst-card__link:hover .kunst-card__title {
	text-decoration: underline;
}

@media (prefers-reduced-motion: reduce) {
	.file-kunst .kunst-card__media img {
		transition: none;
	}
}
