.scpr-page {
    background: #f6f8fb;
    padding: 28px 16px 48px;
}
.scpr-page-container,
.scpr-wrap {
    width: min(1180px, 100%);
    margin-inline: auto;
}
.scpr-wrap {
    --scpr-border: #e2e8f0;
    --scpr-muted: #64748b;
    --scpr-text: #0f172a;
    --scpr-soft: #f8fafc;
    color: var(--scpr-text);
}
.scpr-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 14px;
}
.scpr-breadcrumb a {
    text-decoration: none;
}
.scpr-brand-article,
.scpr-archive-header {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: clamp(20px, 4vw, 36px);
    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);
}
.scpr-archive-header {
    margin-bottom: 24px;
}
.scpr-lead {
    max-width: 850px;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}
.scpr-summary {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin: 24px 0 14px;
    padding: 16px 18px;
    background: var(--scpr-soft);
    border: 1px solid var(--scpr-border);
    border-radius: 14px;
}
.scpr-summary strong {
    display: block;
    font-size: 20px;
}
.scpr-summary span,
.scpr-updated {
    color: var(--scpr-muted);
    font-size: 14px;
}
.scpr-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}
.scpr-filter input {
    min-width: 0;
    flex: 1;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    font: inherit;
}
.scpr-filter button,
.scpr-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 10px;
    background: #0f172a;
    color: #fff;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.scpr-table-scroll {
    overflow-x: auto;
    border: 1px solid var(--scpr-border);
    border-radius: 14px;
    background: #fff;
}
.scpr-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 15px;
}
.scpr-table th,
.scpr-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--scpr-border);
    text-align: left;
    vertical-align: top;
}
.scpr-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #0f172a;
    color: #fff;
    font-size: 14px;
}
.scpr-table tbody tr:hover {
    background: #f8fafc;
}
.scpr-table tbody tr:last-child th,
.scpr-table tbody tr:last-child td {
    border-bottom: 0;
}
.scpr-category th {
    background: #eef2ff;
    font-weight: 800;
}
.scpr-price {
    white-space: nowrap;
    font-weight: 800;
}
.scpr-car-name {
    display: inline-block;
    max-width: 360px;
}
.scpr-pagination ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 18px 0;
}
.scpr-pagination a,
.scpr-pagination span {
    display: inline-flex;
    min-width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--scpr-border);
    border-radius: 9px;
    text-decoration: none;
}
.scpr-pagination .current {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}
.scpr-method,
.scpr-faq {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid var(--scpr-border);
    border-radius: 14px;
    background: #fff;
}
.scpr-method h2,
.scpr-faq h2 {
    margin-top: 0;
    font-size: 22px;
}
.scpr-source {
    font-size: 14px;
    color: var(--scpr-muted);
}
.scpr-faq details {
    padding: 14px 0;
    border-bottom: 1px solid var(--scpr-border);
}
.scpr-faq details:last-child {
    border-bottom: 0;
}
.scpr-faq summary {
    cursor: pointer;
    font-weight: 800;
}
.scpr-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.scpr-brand-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.scpr-brand-card h2 {
    margin: 0 0 8px;
    font-size: 21px;
}
.scpr-brand-card h2 a {
    color: inherit;
    text-decoration: none;
}
.scpr-brand-card p {
    margin: 6px 0;
}
.scpr-card-link {
    margin-top: 12px;
    min-height: 40px;
}
@media (max-width: 800px) {
    .scpr-brand-grid {
        grid-template-columns: 1fr 1fr;
    }
    .scpr-summary,
    .scpr-filter {
        align-items: stretch;
        flex-direction: column;
    }
}
@media (max-width: 520px) {
    .scpr-page {
        padding-inline: 10px;
    }
    .scpr-brand-grid {
        grid-template-columns: 1fr;
    }
    .scpr-brand-article,
    .scpr-archive-header {
        padding: 18px;
        border-radius: 14px;
    }
}