/* =========================
   FILTER WRAPPER
========================= */
.blog-filter-wrapper {
  display: flex;
  flex-direction: column;

}

/* =========================
   FILTER FORM (ROW INPUT)
========================= */
.blog-filter-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr)) minmax(220px, 1.2fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}

.blog-filter-form select,
.blog-filter-form input {
  height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid #E5E7EB;
  background: #fff;
  font-size: 14px;
  color: #111827; 
  outline: none;
}

.blog-filter-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 36px;
}

.blog-filter-form input::placeholder {
  color: #9CA3AF;
}

/* Ẩn nút không dùng */
#blog-filter-submit,
#blog-filter-reset {
  display: none;
}

/* =========================
   TAG LIST
========================= */
.blog-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* =========================
   TAG ITEM
========================= */
.blog-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #F3F4F6;
  color: #111827;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

/* =========================
   TAG CLOSE BUTTON
========================= */
.blog-filter-tag button {
  appearance: none;
  border: none;
  background: transparent;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  color: #6B7280;
  padding: 0;
}

.blog-filter-tag button:hover {
  color: #111827;
}

/* =========================
   SEARCH INPUT ICON
========================= */

#blog-search-input {
  padding-right: 42px; /* chừa chỗ cho icon */
  padding-left: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%239CA3AF' stroke-width='1.8'/%3E%3Cpath d='M20 20L17 17' stroke='%239CA3AF' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}


#blog-search-input:focus {
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='11' cy='11' r='7' stroke='%23111827' stroke-width='1.8'/%3E%3Cpath d='M20 20L17 17' stroke='%23111827' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
}


/* =========================
   CATEGORY PILL STYLE
========================= */
.entry-meta[data-type="simple:slash"] .meta-categories a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;

  background-color: #0052490A; /* nền */
  color: #005249;              /* chữ */

  font-size: 14px;
  font-weight: 400;
  line-height: 1;

  text-decoration: none;
}

/* =========================
   HOVER (OPTIONAL)
========================= */
.entry-meta[data-type="simple:slash"] .meta-categories a:hover {
  background-color: #0052491A; /* đậm nhẹ khi hover */
  color: #005249;
}

/* =========================
   LOAD MORE BUTTON
========================= */
.blog-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.blog-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: transparent;
  border: none;
  cursor: pointer;

  color: #005249;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  padding: 8px 12px;

  transition: all .25s ease;
}

/* ICON (mũi tên xuống) */
.blog-load-more::after {
  content: "";
  width: 16px;
  height: 16px;
  display: inline-block;

  background-color: currentColor;
  mask: url("/wp-content/themes/blocksy-child/images/dropdown-icon.svg.svg") no-repeat center;
  -webkit-mask: url("/wp-content/themes/blocksy-child/images/dropdown-icon.svg") no-repeat center;
  mask-size: contain;
  -webkit-mask-size: contain;

  transition: transform .25s ease;
}

/* HOVER */
.blog-load-more:hover {
  opacity: 0.85;
}

/* hover icon nhúc nhích nhẹ */
.blog-load-more:hover::after {
  transform: translateY(2px);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .blog-filter-form {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .blog-filter-form {
    grid-template-columns: 1fr;
  }
}
