/* --- IMG Widget Post Filtro --- */

/* Contenedor principal */
.imgwpf-wrapper {
  display: block;
  width: 100%;
  margin: 0 auto;
}

/* Filtros */
.imgwpf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.imgwpf-filter-btn {
  border: 1px solid #ccc;
  background: #f7f7f7;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s;
}

.imgwpf-filter-btn:hover {
  background: #eee;
}

.imgwpf-filter-btn.is-active {
  background: #222;
  color: #fff;
  border-color: #222;
}

/* Grilla */
.imgwpf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}

/* Item */
/* Transición sutil de transform para evitar saltos al desaparecer/aparecer */
.imgwpf-item {
  transition: transform 0.2s ease;
  will-change: transform, opacity;
}


.imgwpf-item {
  border: 1px solid #e5e5e5;
  padding: 10px;
  transition: transform 0.2s ease;
}

.imgwpf-item:hover {
  transform: translateY(-3px);
}

/* Imagen */
.imgwpf-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

/* Título */
.imgwpf-title {
  font-size: 1.1em;
  margin: 10px 0 6px 0;
}

/* Campos ACF */
.imgwpf-acf {
  font-size: 0.9em;
  color: #555;
}

/* Mensajes / avisos */
.imgwpf-notice {
  background: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 10px 15px;
  margin-bottom: 15px;
}
