#ifp-filters, 
#ifp-filters-wp {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin-bottom: 20px;
    }
    #ifp-filters label,
	#ifp-filters-wp label {
        color: #fff !important;
        margin-right: 8px;
        font-weight: 600;
        display: block;
    }
    #ifp-filters select,
    #ifp-filters button, 
    #ifp-filters-wp select, 
    #ifp-filters-wp button {
        padding: 8px 12px !important;
        font-size: 16px !important;
        border-radius: 6px !important;
    }
    #ifp-filters select, 
    #ifp-filters-wp select {
        min-width: 140px;
    }
    #ifp-filters button, 
    #ifp-filters-wp button {
        background: #22c100 !important;
        color: #fff !important;
        border: none !important;
        cursor: pointer;
    }
    #ifp-filters button:hover, 
    #ifp-filters-wp button:hover {
        background: #005f8d !important;
    }
    @media (max-width: 768px) {
        #ifp-filters, #ifp-filters-wp {
            flex-direction: column;
            align-items: stretch;
        }
        #ifp-filters label, #ifp-filters-wp label {
            margin-bottom: 5px;
        }
        #ifp-filters select,
        #ifp-filters button, 
        #ifp-filters-wp select, 
        #ifp-filters-wp button {
            width: 100% !important;
        }
    }

#ifp-filters #reset-filters, 
#ifp-filters-wp #reset-filters {
    margin-left: 20px;
}
@media (max-width: 768px) {
    #ifp-filters #reset-filters, 
    #ifp-filters-wp #reset-filters {
        margin-left: 0 !important;
    }
}

#ifp-no-results {
    display: none;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: #aa0f0a; /* crvena upozorenje */
    padding: 12px 20px;
    border-radius: 6px;
    margin: 20px 0;
	font-style:italic;
    letter-spacing: 5px;
	border: solid 6px #c69595;
}
@media (max-width: 768px) {
    #ifp-no-results {
        font-size: 16px;
        padding: 10px 15px;
        margin: 15px 0;
    }
}

.ifp-element:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.3);
    border-color: #555;
}

.ifp-grid {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* centrirane kartice */
}

/* Sticky post: full width */
.ifp-element.sticky-post {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #2c3e50;
  text-align: center;
}

/* Sticky post thumbnail – desktop */
.ifp-element.sticky-post .ifp-thumb {
  width: 100%;
  height: 380px; /* povećana visina */
  object-fit: cover;
  border-radius: 6px;
}

/* Sticky naslov */
.ifp-element.sticky-post .ifp-title {
  font-weight: bold;
  color: #fff;
  margin-top: 12px;
}

.sticky-help {
  background-color: #28a745;
  color: #fff;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
  margin-bottom: 12px;
  display: inline-block;
  text-align: center;
}

/* Normalni postovi kao kartice */
.ifp-element:not(.sticky-post) {
  display: inline-block;
  width: calc(33.333% - 20px);
  margin: 10px;
  vertical-align: top;
  border: 1px solid #fff;
  border-radius: 6px;
  background: transparent;
  text-align: center;
  padding: 10px;
}

.ifp-element .ifp-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  padding: 3px;
}

/* Responsive */
@media (max-width: 992px) {
  .ifp-element:not(.sticky-post) {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .ifp-element.sticky-post .ifp-thumb {
    height: 150px; /* manja visina sticky-ja za telefone */
  }
}

@media (max-width: 600px) {
  .ifp-element:not(.sticky-post) {
    width: 100%;
  }
}
/* Ispravka centriranja kartica na mobilnom */
@media (max-width: 600px) {
  .ifp-grid {
    justify-content: center !important;
  }

  .ifp-element:not(.sticky-post) {
    margin-left: auto;
    margin-right: auto;
  }
}
