.pk-nearest-page {
    background: #f2f4f7;
    padding-bottom: 40px;
}

.pk-nearest-tab-title {
    background: #d8e4ec;
    border-top: 1px solid #c6d4de;
    border-bottom: 1px solid #c6d4de;
}

.pk-nearest-tab-title h1 {
    margin: 0;
    padding: 16px 0;
    font-size: 34px;
    color: #2d3c4b;
}

.pk-nearest-layout {
    margin-top: 22px;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
}

.pk-nearest-filter-card {
    background: #f1f3f6;
    border: 1px solid #d3d9e0;
    border-radius: 6px;
    padding: 12px;
}

.pk-filter-head h2 {
    font-size: 22px;
    margin: 0 0 10px;
    color: #163a5c;
}

.pk-nearest-filter-card form {
    display: grid;
    gap: 10px;
}

.pk-current-location {
    border: 0;
    border-radius: 4px;
    background: #f9c800;
    color: #0f1a27;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 10px;
    cursor: pointer;
}

.pk-nearest-filter-card select {
    height: 38px;
    border: 1px solid #c3ccd6;
    border-radius: 4px;
    background: #fff;
    color: #24384a;
    padding: 0 10px;
}

.pk-filter-types {
    display: flex;
    gap: 14px;
    font-weight: 600;
    color: #1f3448;
}

.pk-search-btn {
    border: 0;
    border-radius: 4px;
    background: #1c4d75;
    color: #fff;
    font-weight: 700;
    padding: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.pk-nearest-banner {
    min-height: 268px;
    background: linear-gradient(120deg, #cde1ef 0%, #f8f5eb 100%);
    border: 1px solid #d3d9e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
}

.pk-nearest-banner-copy p {
    margin: 0 0 6px;
    color: #224b72;
    font-size: 19px;
}

.pk-nearest-banner-copy h2 {
    margin: 0;
    color: #173f63;
    font-size: 44px;
    line-height: 1.05;
}

.pk-nearest-banner-copy span {
    display: block;
    margin-top: 8px;
    color: #395a75;
}

.pk-nearest-banner img {
    width: 40%;
    max-width: 360px;
    border-radius: 6px;
}

.pk-nearest-results {
    margin-top: 20px;
}

.pk-nearest-results h3 {
    margin: 0 0 12px;
    background: #1b4e78;
    color: #fff;
    padding: 10px 12px;
    font-size: 30px;
}

.pk-nearest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pk-nearest-card {
    border: 1px solid #d5dbe2;
    background: #fff;
    padding: 12px;
}

.pk-nearest-card-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.pk-nearest-card-top strong {
    display: block;
    color: #102b45;
    font-size: 14px;
}

.pk-nearest-card-top span {
    display: inline-block;
    background: #2d5c83;
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    margin-top: 4px;
}

.pk-nearest-card p {
    margin: 8px 0;
    font-size: 13px;
    color: #1d3248;
}

.pk-nearest-rating {
    color: #1d4f78;
    font-weight: 600;
}

.pk-nearest-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.pk-nearest-actions a {
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    padding: 9px 10px;
}

.pk-nearest-actions a:first-child {
    background: #f9c800;
    color: #161f2c;
}

.pk-nearest-actions a:last-child {
    background: #1c4d75;
    color: #fff;
}

.pk-nearest-empty {
    border: 1px dashed #b7c5d3;
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    color: #2d4660;
}

.pk-nearest-pagination {
    margin-top: 14px;
}

@media (max-width: 1024px) {
    .pk-nearest-layout {
        grid-template-columns: 1fr;
    }

    .pk-nearest-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pk-nearest-banner img {
        display: none;
    }
}

@media (max-width: 640px) {
    .pk-nearest-tab-title h1 {
        font-size: 28px;
    }

    .pk-nearest-results h3 {
        font-size: 22px;
    }

    .pk-nearest-grid {
        grid-template-columns: 1fr;
    }
}

