/* ==========================================================================
   CUSTOM HERO POST WIDGET (template.css)
   ========================================================================== */

.hero-post-item {
	position: relative;
	width: 100%;
	min-height: 740px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 50px 20px;
}

.hero-post-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.15); /* Rahla zatemnitev za berljivost teksta */
	z-index: 1;
}

.hero-post-content-box {
	position: relative;
	z-index: 2;
	background-color: #ffffff;
	padding: 40px 60px;
	text-align: center;
	max-width: 700px;
	width: 100%;
	box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.hero-post-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 46px;
	font-weight: 700;
	margin: 0 0 15px 0;
	line-height: 1.1;
}

.hero-post-title a {
	color: #111111;
	text-decoration: none;
	transition: color 0.3s ease;
}

.hero-post-title a:hover {
	color: #bc9f84;
}

.hero-post-excerpt p {
	font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #666666;
	margin: 0;
}



/* Odzivnost (Telefoni in tablice) */
@media (max-width: 768px) {
	.hero-post-item { min-height: 400px; }
	.hero-post-content-box { padding: 30px 20px; }
	.hero-post-title { font-size: 32px; }
}