.galery-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 1 / 1; /* kvadratne slike */
}

.galery-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.4s ease;
  display: block;
  border-radius: 12px;
}

.galery-thumb:hover img {
  transform: scale(1.05);
}

.galery-thumb::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px;
}

.galery-thumb:hover::before {
  opacity: 1;
}

.galery-thumb::after {
  content: "\f002";
  font-family: "bootstrap-icons";
  font-size: 26px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galery-thumb:hover::after {
  opacity: 1;
}
.seo-tekst {
  font-size: 1.2rem; /* ili npr. 18px */
  font-weight: 400;
  line-height: 1.6;
  color: #444;
}
.seo-tekst strong {
  color: #000;
}
