
.mini-hero {
  padding-top: 160px;
  margin-bottom: 40px;
}

.mini-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 4px;
}

.mini-hero img {
  width: 100%;
  height: 300px; 
  object-fit: cover;
  display: block;
  margin: 0;
}

.mini-hero-overlay {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: #fff;
}

.mini-hero-overlay h1 {
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: 600;
}

.mini-hero-overlay p {
  font-size: 15px;
  opacity: 0.9;
}

.mini-hero-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.1)
  );
}

.mini-hero-overlay {
  position: absolute;
  z-index: 2;
}


/* INVESTITORI SEKCIJA */
.investitori {
  padding: 50px 20px 20px;
  background: #ffffff;
}

.investitori .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Naslovi */
.investitori h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #222;
  line-height: 1.3;
}

.investitori h3 {
  font-size: 20px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 12px;
  color: #333;
}

/* Tekst */
.investitori p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* Liste */
.investitori ul {
  margin: 15px 0 25px;
  padding-left: 0;
  list-style: none;
}

.investitori ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 15px;
  color: #444;
}

.investitori ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #999;
}

/* CTA dugme - u stilu sajta */
.investitori .cta {
  text-align: center;
  margin-top: 50px;
}

.investitori .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #222;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.25s ease;
}

.investitori .btn:hover {
  background: #000;
}

/* Blaga sekcija razdvajanja */
.investitori h3 + p {
  margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mini-hero-inner {
        border-radius: 0;
    }
    .mini-hero{
    margin-bottom: 0;  
  }
  .mini-hero img {
    height: 200px;
  }

  .mini-hero-overlay h1 {
    font-size: 22px;
  }
  .investitori h2 {
    font-size: 26px;
  }

  .investitori h3 {
    font-size: 18px;
  }
}