/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 16 2026 | 14:40:15 */
.read-more-enable{
	position: relative;
	max-height: 180px; /* promijeni visinu po želji */
	overflow: hidden;
	transition: max-height .3s ease;
}

.read-more-enable.is-expanded{
	max-height: 2000px; /* dovoljno veliko da otvori sadržaj */
}

.read-more-enable + .read-more-toggle{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 12px;
	cursor: pointer;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: underline;
	text-transform: uppercase;
	color: #D3A74D;
	background: none;
	border: 0;
	padding: 0;
	letter-spacing: .6px;
}

.read-more-enable + .read-more-toggle:hover{
	opacity: .8;
}

.read-more-enable:not(.is-expanded)::after{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60px;
	background: linear-gradient(to bottom, rgba(255,255,255,0), #fff);
	pointer-events: none;
}