.asfa-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

.asfa-filters button {
    border: 1px solid #e53935;
    border-radius: 30px;
    padding: 6px 16px;
    background: #fff;
    color: #e53935;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px
}

.asfa-filters button.active {
    background: #e53935;
    color: #fff
}

.asfa-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Mobile */
@media (max-width: 767px) {
  .asfa-results {
    grid-template-columns: 1fr;
  }
}

.asfa-thumb {
    background: #00064C;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center
}

.asfa-pagination {
    text-align: center;
    margin-top: 20px
}

.asfa-pagination .page {
    display: inline-block;
    margin: 0 5px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    border-radius: 50%;
    background: #eee;
    cursor: pointer
}

.asfa-pagination .page.active {
    background: #e53935;
    color: #fff
}
.asfa-content {
    padding: 10px 0;
}

span.asfa-flag {
    padding: 0 10px;
}

h3.asfa-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
    vertical-align: middle;
}