/* /skateparks/ listing — hero, filter bar and card grid */

.skateparks-hero {
    background: linear-gradient(135deg, #1e266d 0%, #040470 100%);
    color: #ffffff;
    padding: 60px 0 40px;
    margin-bottom: 30px;
}

.skateparks-hero h1 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 8px;
}

.skateparks-hero .skateparks-lead {
    font-size: 18px;
    opacity: .85;
    margin-bottom: 18px;
}

.skateparks-hero a {
    color: #ff9142;
}

.gap-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
    background: #ffffff;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 20px;
    position: sticky;
    top: var(--navbar-h, 80px);
    z-index: 20;
    box-shadow: 0 4px 16px rgba(4, 4, 112, .06);
}

.gap-filter-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 160px;
    min-width: 150px;
}

.gap-filter-search {
    flex: 2 1 240px;
}

.gap-filter-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: #515867;
    margin: 0;
}

.gap-filter-field input,
.gap-filter-field select {
    border: 1px solid #d0dae2;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: #222222;
    background: #f9f9f9;
    height: 42px;
}

.gap-filter-field input:focus,
.gap-filter-field select:focus {
    outline: none;
    border-color: #ff6c02;
    background: #ffffff;
}

.gap-filter-clear {
    height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #d0dae2;
    background: #f9f9f9;
    color: #515867;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.gap-filter-clear:hover {
    background: #ff6c02;
    border-color: #ff6c02;
    color: #ffffff;
}

.gap-filter-count {
    color: #515867;
    font-size: 14px;
    margin: 0 0 16px;
}

.gap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.gap-card {
    display: flex;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e6e9ef;
    border-radius: 14px;
    padding: 18px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.gap-card:hover,
.gap-card:focus {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(4, 4, 112, .12);
    border-color: #ff6c02;
    text-decoration: none;
}

.gap-card-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
}

.gap-icon-privada { background: #1d79fb; }
.gap-icon-publica { background: #ff6c02; }
.gap-icon-particular { background: #1e266d; }
.gap-icon-loja { background: #22a06b; }
.gap-icon-espaco { background: #515867; }

.gap-card-body {
    flex: 1 1 auto;
    min-width: 0;
}

.gap-card-title {
    font-size: 17px;
    font-weight: 700;
    color: #222222;
    margin: 0 0 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gap-card-address {
    font-size: 13px;
    color: #515867;
    margin: 0 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gap-card-address i {
    color: #ff6c02;
    margin-right: 4px;
}

.gap-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.gap-tag {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px;
    border-radius: 999px;
    background: #f9f9f9;
    color: #515867;
    white-space: nowrap;
}

.gap-tag-type {
    background: #eef1ff;
    color: #1e266d;
}

.gap-tag-status-ok {
    background: #e5f6ee;
    color: #22a06b;
}

.gap-tag-status-warning {
    background: #fff4e5;
    color: #d98200;
}

.gap-tag-status-danger {
    background: #fdecec;
    color: #d94848;
}

.gap-tag-verified {
    background: rgba(29, 121, 251, 0.12);
    color: #1d79fb;
}

.gap-tag-verified i {
    margin-right: 2px;
}

.gap-empty-state {
    text-align: center;
    color: #515867;
    padding: 60px 20px;
    font-size: 16px;
}

.gap-empty-state i {
    display: block;
    font-size: 32px;
    margin-bottom: 12px;
    color: #d0dae2;
}

.gap-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 10px 0 30px;
}

.gap-page-btn {
    height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    border: 1px solid #d0dae2;
    background: #f9f9f9;
    color: #515867;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.gap-page-btn:hover:not(:disabled) {
    background: #ff6c02;
    border-color: #ff6c02;
    color: #ffffff;
}

.gap-page-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.gap-page-info {
    color: #515867;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .skateparks-hero {
        padding: 40px 0 24px;
    }
    .gap-filters {
        position: static;
        flex-direction: column;
        align-items: stretch;
    }
    .gap-filter-field,
    .gap-filter-search {
        flex: 1 1 auto;
        min-width: 0;
    }
    .gap-filter-clear {
        width: 100%;
    }
    .gap-card-title,
    .gap-card-address {
        white-space: normal;
    }
}
