.cpf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}


.cpf-filters select,
.cpf-filters input {
  padding: 0.5rem;
  width: 200px;
}
.cpf-filters input[type="text"] {
    max-width: 350px;
}
.cpf-filters .select2-container .select2-selection--single {
    height: 42px;
/* 	border-color:#666; */
}
.cpf-filters .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

.cpf-post-grid a {
    text-decoration: none!important;
}
.cpf-excerpt {
    margin-bottom: 20px;
}
 a.cpf-btn:hover {
    background-color: #c36;
    color: #fff;
    text-decoration: none;
}
 a.cpf-btn {
    background-color: transparent;
    border: 1px solid #c36;
    border-radius: 3px;
    color: #c36;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    padding: .5rem 1rem;
    text-align: center;
    transition: all .3s;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.cpf-post-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
}

.cpf-post-card {
  display: block;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.3s;
  text-decoration: none;
  color: inherit;
}

.cpf-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cpf-content {
  padding: 1rem;
}

.cpf-title {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cpf-date {
  font-size: 0.9rem;
  color: #777;
}

/* Tablet View: 2 cards */
@media (min-width: 768px) {
  .cpf-post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop View: 3 cards */
@media (min-width: 1024px) {
  .cpf-post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


