:root {
    --bg: #edf1f7;
    --surface: #ffffff;
    --text: #1b2436;
    --muted: #617086;
    --line: #d6deeb;
    --primary: #2552d9;
    --primary-soft: #e9efff;
    --secondary: #c73b3b;
    --accent-gold: #c6932e;
    --accent-gold-soft: #fff5df;
    --accent-rose-soft: #ffeef0;
    --quality: #1f8f4a;
    --price: #b26b00;
    --header-bg: #ffffff;
    --footer-bg: #0f1728;
    --footer-line: #2a3650;
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    background:
            radial-gradient(1200px 420px at 100% -10%, #d8e5ff 0%, rgba(220, 231, 255, 0) 62%),
            radial-gradient(980px 360px at -10% -8%, #ffe7ea 0%, rgba(255, 230, 230, 0) 56%),
            radial-gradient(880px 320px at 50% 115%, #fff1d9 0%, rgba(255, 241, 217, 0) 58%),
            var(--bg);
    color: var(--text);
    line-height: 1.45;
}

.brand-shell {
    min-height: 100vh;
    position: relative;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
    box-shadow: 0 6px 28px rgba(20, 30, 50, 0.07);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9efff 0%, #f6e9ee 100%);
    color: #234ebf;
    font-size: 1rem;
    border: 1px solid #d5dff0;
}

.logo-text {
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0;
}

.logo-text span {
    color: var(--secondary);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.52rem 0.7rem;
    border-radius: 8px;
    transition: all 180ms ease;
    border: 1px solid transparent;
}

.main-nav a:hover {
    color: var(--primary);
    background: var(--primary-soft);
    border-color: #d7e3ff;
}

.header-cta {
    appearance: none;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #1f4fd7 0%, #2d69ff 52%, #b84343 100%);
    border-radius: 8px;
    padding: 0.54rem 0.82rem;
    font-size: 0.87rem;
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(35, 74, 189, 0.28);
}

.header-search {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-search-input {
    min-width: 230px;
    min-height: 38px;
    border: 1px solid #cfd9ea;
    border-radius: 8px;
    padding: 0.45rem 0.75rem;
    font-size: 0.84rem;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.header-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #d3deee;
    background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
    color: var(--text);
    font-size: 1.2rem;
    align-items: center;
    justify-content: center;
}

.mobile-offcanvas {
    background: #101a2b;
    color: #e8efff;
}

.mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid #2a3b58;
}

.mobile-offcanvas .btn-close {
    filter: invert(1) grayscale(1);
}

.offcanvas-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.offcanvas-search input {
    flex: 1 1 auto;
    min-height: 38px;
    border: 1px solid #344a70;
    border-radius: 8px;
    background: #142036;
    color: #e8efff;
    padding: 0.45rem 0.7rem;
}

.offcanvas-search button {
    border: 0;
    border-radius: 8px;
    min-width: 58px;
    background: linear-gradient(135deg, #3b5fcf 0%, #6d8fff 52%, #b56060 100%);
    color: #fff;
    font-weight: 700;
}

.mobile-nav {
    display: grid;
    gap: 0.4rem;
}

.mobile-nav a {
    color: #d8e3f7;
    text-decoration: none;
    padding: 0.62rem 0.7rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.mobile-nav a:hover {
    background: #192a46;
    border-color: #324a77;
}

.brand-header {
    padding-top: 1.4rem;
    padding-bottom: 1.25rem;
}

.brand-hero {
    background: linear-gradient(142deg, rgba(255, 255, 255, 0.95) 0%, #f6f9ff 58%, #fff5f6 100%);
    border: 1px solid #d3deee;
    border-radius: var(--radius);
    padding: 1.35rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.brand-hero::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(47, 97, 222, 0.18) 0%, rgba(47, 97, 222, 0) 70%);
    pointer-events: none;
}

.card-shadow {
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.brand-identity {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid #d9e2f1;
    background: #fff;
    padding: 0.55rem;
    box-shadow: 0 8px 18px rgba(30, 42, 68, 0.12);
}

.eyebrow {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.brand-name {
    margin: 0.2rem 0 0;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
    color: #162036;
}

.brand-signature {
    margin: 0.35rem 0 0;
    color: #74839b;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brand-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 0.85rem;
    width: min(100%, 670px);
}

.meta-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.meta-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    opacity: 0.95;
}

.meta-item::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 90px;
    height: 90px;
    border-radius: 999px;
    opacity: 0.45;
    pointer-events: none;
}

.meta-country {
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
    border-color: #d7e5f7;
}

.meta-country::before {
    background: linear-gradient(90deg, #2b61df 0%, #86adff 100%);
}

.meta-country::after {
    background: radial-gradient(circle, rgba(64, 118, 233, 0.28) 0%, rgba(64, 118, 233, 0) 72%);
}

.meta-quality {
    background: linear-gradient(180deg, #f6fff8 0%, #ffffff 100%);
    border-color: #d5eadc;
}

.meta-quality::before {
    background: linear-gradient(90deg, #2f8f5c 0%, #7ad8a4 100%);
}

.meta-quality::after {
    background: radial-gradient(circle, rgba(55, 169, 108, 0.28) 0%, rgba(55, 169, 108, 0) 72%);
}

.meta-price {
    background: linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
    border-color: #efdcb5;
}

.meta-price::before {
    background: linear-gradient(90deg, #c7882d 0%, #f0c274 100%);
}

.meta-price::after {
    background: radial-gradient(circle, rgba(210, 145, 46, 0.28) 0%, rgba(210, 145, 46, 0) 72%);
}

.meta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--muted);
    font-size: 0.75rem;
    margin-bottom: 0.45rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.meta-label i {
    font-size: 0.74rem;
}

.meta-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.meta-inline-link {
    color: inherit;
    text-decoration: none;
}

.meta-inline-link:hover {
    text-decoration: underline;
}

.country-flag {
    width: 22px;
    height: 16px;
    border: 1px solid #d5dce9;
    object-fit: cover;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.2fr) minmax(0, 1fr);
    gap: 1rem;
}

.content-main {
    display: grid;
    gap: 1rem;
}

.content-sidebar {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.info-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem;
    transition: border-color 180ms ease, box-shadow 180ms ease;
    position: relative;
    overflow: hidden;
}

.info-card:hover {
    border-color: #c5d5f1;
    box-shadow: 0 14px 30px rgba(26, 34, 51, 0.1);
}

.section-head {
    display: flex;
    align-items: center;
    gap: 0.62rem;
    margin-bottom: 0.85rem;
}

.section-head i {
    color: var(--primary);
    background: linear-gradient(180deg, #edf2ff 0%, #f7e9ec 100%);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dce6f8;
}

.section-head h2 {
    margin: 0;
    font-size: 1.03rem;
    font-weight: 700;
}

.brand-description {
    margin: 0;
    color: #243147;
    line-height: 1.65;
}

.story-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #2e62e3 0%, #c94f4f 52%, #c9932f 100%);
}

.content-sections {
    display: grid;
    gap: 1rem;
}

.narrative-card {
    display: grid;
    gap: 0.9rem;
}

.narrative-block {
    padding-top: 0.7rem;
    border-top: 1px dashed #dbe3f1;
}

.narrative-block:first-of-type {
    margin-top: 0.2rem;
}

.content-block {
    padding: 1.15rem;
}

.content-heading {
    margin: 0 0 0.7rem;
    font-size: 1.08rem;
    font-weight: 700;
}

.section-kicker {
    margin: 0 0 0.45rem;
    color: #7e8ca4;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
}

.content-paragraph {
    margin: 0 0 0.75rem;
    color: #243147;
    line-height: 1.7;
}

.content-paragraph:last-child {
    margin-bottom: 0;
}

.metrics-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.metrics-list li {
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0.7rem 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
}

.metrics-list span {
    color: var(--muted);
    font-size: 0.88rem;
}

.metrics-list strong {
    font-size: 0.95rem;
}

.models-section {
    margin-top: 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fbfcff 100%);
    border: 1px solid #d1ddee;
    border-radius: var(--radius);
    padding: 1.15rem;
    position: relative;
    overflow: hidden;
}

.models-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2956db 0%, #c24444 50%, #c9932f 100%);
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
}

.models-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.9rem 1rem;
}

.models-head .section-head {
    margin-bottom: 0;
}

.models-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.15rem;
}

.control-field {
    display: grid;
    gap: 0.3rem;
}

.control-field label {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
}

.control-select {
    border: 1px solid #cfd9ea;
    border-radius: 8px;
    min-height: 36px;
    min-width: 220px;
    padding: 0.45rem 0.7rem;
    font-size: 0.84rem;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.control-input {
    border: 1px solid #cfd9ea;
    border-radius: 8px;
    min-height: 36px;
    min-width: 220px;
    padding: 0.45rem 0.7rem;
    font-size: 0.84rem;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.control-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.control-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.section-subtitle {
    margin: -0.1rem 0 0.95rem;
    color: var(--muted);
    font-size: 0.86rem;
    border-bottom: 1px dashed #dde5f3;
    padding-bottom: 0.65rem;
}

.specs-section {
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
    background:
            radial-gradient(360px 140px at 8% -8%, rgba(77, 129, 255, 0.16) 0%, rgba(77, 129, 255, 0) 72%),
            radial-gradient(420px 160px at 96% -12%, rgba(209, 94, 94, 0.13) 0%, rgba(209, 94, 94, 0) 72%),
            linear-gradient(180deg, #fdfefe 0%, #f8fbff 100%);
}

.specs-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3f69df 0%, #c95b5b 50%, #c9932f 100%);
    opacity: 0.95;
}

.specs-groups {
    display: grid;
    gap: 0.82rem;
}

.specs-group {
    border: 1px solid #d6e1f1;
    border-radius: 8px;
    padding: 0.78rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
    transition: border-color 200ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.specs-group::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(76, 117, 238, 0.42) 0%, rgba(206, 93, 93, 0.42) 100%);
}

.specs-group:hover {
    transform: translateY(-2px);
    border-color: #c4d6f2;
    box-shadow: 0 14px 28px rgba(34, 47, 80, 0.12);
}

.specs-group-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.62rem;
}

.specs-group-head i {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6e2f7;
    background: linear-gradient(180deg, #ecf2ff 0%, #f8edf0 100%);
    color: #3158b7;
    font-size: 0.84rem;
}

.specs-group-head h3 {
    margin: 0;
    font-size: 0.86rem;
    font-weight: 700;
    color: #2c3a56;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    margin-bottom: 0;
}

.specs-grid-performance {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specs-grid-dimensions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    border: 1px solid #d8e2f1;
    border-radius: 8px;
    padding: 0.72rem 0.78rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.spec-item:hover {
    transform: translateY(-2px);
    border-color: #bfd3f2;
    box-shadow: 0 10px 18px rgba(43, 64, 107, 0.1);
}

.spec-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6e2f7;
    background: linear-gradient(180deg, #ecf2ff 0%, #f8edf0 100%);
    color: #3158b7;
    flex-shrink: 0;
    box-shadow: 0 6px 12px rgba(55, 87, 161, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.spec-item:hover .spec-icon {
    transform: translateY(-1px);
    box-shadow: 0 8px 15px rgba(55, 87, 161, 0.24);
}

.spec-label {
    margin: 0 0 0.2rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.spec-value {
    margin: 0;
    color: #1d2a43;
    font-size: 0.96rem;
    font-weight: 800;
}

.specs-taxonomy {
    border-top: 0;
    padding-top: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.68rem;
}

.spec-tax-item {
    border: 1px solid #d8e2f1;
    border-radius: 8px;
    padding: 0.68rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    display: grid;
    gap: 0.44rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.spec-tax-item:hover {
    transform: translateY(-2px);
    border-color: #bfd3f2;
    box-shadow: 0 10px 18px rgba(43, 64, 107, 0.1);
}

.spec-tax-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d6e2f7;
    background: linear-gradient(180deg, #ecf2ff 0%, #f8edf0 100%);
    color: #3158b7;
    box-shadow: 0 5px 11px rgba(55, 87, 161, 0.15);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.spec-tax-item:hover .spec-tax-icon {
    transform: translateY(-1px);
    box-shadow: 0 7px 13px rgba(55, 87, 161, 0.22);
}

.spec-tax-label {
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 600;
}

.spec-tax-value {
    margin: 0;
    color: #1d2a43;
    font-size: 0.84rem;
    font-weight: 700;
}

.price-trend-section {
    margin-top: 0.95rem;
    padding: 1.15rem;
    background:
            radial-gradient(360px 130px at 8% -8%, rgba(84, 132, 255, 0.14) 0%, rgba(84, 132, 255, 0) 72%),
            radial-gradient(420px 140px at 94% -10%, rgba(206, 101, 101, 0.12) 0%, rgba(206, 101, 101, 0) 72%),
            linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.price-chart-wrap {
    border: 1px solid #d6e2f3;
    border-radius: 8px;
    padding: 0.7rem 0.8rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.price-chart-wrap canvas {
    width: 100%;
    height: 300px;
    display: block;
}

.price-trend-meta {
    margin-top: 0.78rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem;
}

.price-meta-item {
    border: 1px solid #d5e1f1;
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
    padding: 0.55rem 0.62rem;
    display: grid;
    gap: 0.2rem;
}

.price-meta-label {
    margin: 0;
    font-size: 0.73rem;
    color: #7b8aa3;
    font-weight: 600;
}

.price-meta-value {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 800;
    color: #1f2c45;
}

.models-result-info {
    margin: -0.6rem 0 0.9rem;
    color: var(--muted);
    font-size: 0.8rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.model-card {
    border: 1px solid #d6deeb;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    position: relative;
    display: block;
    color: inherit;
    text-decoration: none;
}

.model-card:hover {
    transform: translateY(-3px);
    border-color: #c3d4f0;
    box-shadow: 0 15px 30px rgba(20, 25, 36, 0.14);
}

.model-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.model-image {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
    filter: saturate(1.02) contrast(1.02);
}

.model-body {
    padding: 0.92rem;
    display: grid;
    gap: 0.6rem;
}

.model-meta-row {
    margin-bottom: 0;
}

.model-code {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    min-height: 22px;
    padding: 0 0.52rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(12, 18, 30, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #edf3ff;
    backdrop-filter: blur(4px);
}

.chassis-badge {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 0.62rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #edf3ff 0%, #fbeff1 100%);
    color: #2b4da6;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid #d8e3f7;
}

.model-title {
    margin: 0;
    font-size: 1.04rem;
    font-weight: 800;
    color: #182136;
}

.price-row {
    margin-top: 0.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.62rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
    border: 1px solid #e1e7f3;
    border-radius: 8px;
    padding: 0.52rem 0.62rem;
}

.model-price {
    margin: 0;
    font-weight: 800;
    font-size: 1rem;
    color: #1e2c48;
}

.model-sale-price {
    margin: 0;
    color: #7a8698;
    text-decoration: line-through;
    font-size: 0.84rem;
}

.models-empty {
    margin: 0.95rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.level-badges {
    display: flex;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
}

.level-chip {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 1px solid #d3dbe8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    color: #7b8799;
    font-weight: 600;
}

.level-chip.is-active.quality {
    border-color: #b6e2c6;
    background: #eaf8f0;
    color: var(--quality);
}

.level-chip.is-active.price {
    border-color: #f0d8aa;
    background: #fff5e4;
    color: var(--price);
}

.editor-card {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.75rem;
}

.editor-image {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    object-fit: cover;
}

.editor-name {
    margin: 0 0 0.2rem;
    font-weight: 700;
}

.editor-title {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.editor-mail {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
}

.editor-mail:hover {
    text-decoration: underline;
}

.metric-link {
    text-decoration: none;
}

.metric-link strong {
    color: var(--text);
}

.comments-area {
    padding: 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdff 100%);
}

.comment-list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.7rem;
}

.comment-body {
    border: 1px solid #d8e0ee;
    border-radius: 10px;
    padding: 0.75rem;
    background: #fff;
}

.comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.comment-author .fn {
    font-size: 0.88rem;
}

.comment-metadata time {
    color: var(--muted);
    font-size: 0.78rem;
}

.comment-content p {
    margin: 0;
    color: #2b3445;
    line-height: 1.6;
    font-size: 0.88rem;
}

.comment-reply-title {
    margin: 0 0 0.7rem;
    font-size: 0.95rem;
    font-weight: 700;
}

.comment-form p {
    margin: 0 0 0.7rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"] {
    width: 100%;
    border: 1px solid #cfdaeb;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    font-size: 0.87rem;
    color: var(--text);
    background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
}

.comment-form textarea:focus,
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-soft);
}

.comment-form .submit {
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #2451d8 0%, #2a66fb 50%, #b44141 100%);
    color: #fff;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 18px rgba(35, 74, 188, 0.25);
}

.site-footer {
    margin-top: 1.2rem;
    background:
            radial-gradient(580px 220px at 12% -10%, rgba(46, 100, 230, 0.28) 0%, rgba(46, 100, 230, 0) 70%),
            radial-gradient(620px 220px at 92% -5%, rgba(187, 71, 71, 0.22) 0%, rgba(187, 71, 71, 0) 70%),
            linear-gradient(180deg, #101828 0%, #0d1522 100%);
    color: #d2d9e4;
}

.footer-grid {
    padding-top: 2rem;
    padding-bottom: 1.8rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(180px, 1fr));
    gap: 1.25rem;
}

.footer-brand {
    grid-column: span 2;
}

.footer-logo .logo-text {
    color: #f3f7ff;
}

.footer-text {
    margin: 0.7rem 0 0;
    color: #9da8bc;
    font-size: 0.9rem;
    max-width: 420px;
    line-height: 1.7;
}

.footer-title {
    margin: 0 0 0.7rem;
    font-size: 0.92rem;
    color: #f1f5ff;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.48rem;
}

.footer-links a {
    color: #b7c2d7;
    text-decoration: none;
    font-size: 0.88rem;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--footer-line);
}

.footer-bottom p {
    margin: 0;
    padding: 0.95rem 0;
    color: #9aa6bc;
    font-size: 0.82rem;
}

.model-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.model-page-hero-xl {
    padding: 1.45rem;
}

.model-carousel .carousel-item img {
    height: 460px;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
}

.model-page-summary {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.model-page-title {
    margin: 0;
}

.model-page-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.52rem;
}

.model-page-facts li {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.6rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.55rem;
}

.model-page-facts span {
    color: var(--muted);
    font-size: 0.84rem;
}

.model-page-facts strong {
    font-size: 0.86rem;
}

.sale-on {
    color: #1f8f4a;
}

.model-brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    text-decoration: none;
    color: inherit;
    width: fit-content;
}

.model-brand-link img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.model-brand-link span {
    font-size: 0.84rem;
    font-weight: 600;
}

.parent-model-transition {
    margin-top: 0.15rem;
    border: 1px solid #d7e1f0;
    border-radius: 8px;
    padding: 0.62rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.parent-model-label {
    margin: 0 0 0.55rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #73839e;
    font-weight: 700;
}

.parent-model-track {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.58rem;
}

.parent-model-transition.is-single .parent-model-track {
    grid-template-columns: 1fr;
}

.parent-model-item {
    border: 1px solid #d7e2f2;
    border-radius: 8px;
    padding: 0.58rem 0.65rem;
    text-decoration: none;
    color: inherit;
    background: linear-gradient(180deg, #fdfefe 0%, #f7faff 100%);
    display: grid;
    gap: 0.18rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.parent-item-kicker {
    font-size: 0.68rem;
    color: #7f8da5;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.parent-model-item strong {
    font-size: 0.84rem;
}

.parent-model-item:hover {
    transform: translateY(-1px);
    border-color: #c1d2ee;
    box-shadow: 0 8px 16px rgba(26, 38, 65, 0.1);
}

.parent-model-item.is-active {
    border-color: #9eb8e8;
    background: linear-gradient(180deg, #edf3ff 0%, #f8ecf0 100%);
    box-shadow: 0 10px 20px rgba(55, 82, 136, 0.15);
}

.model-carousel .carousel-control-prev,
.model-carousel .carousel-control-next {
    width: 8%;
}

.hub-model-card .hub-years {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

.model-list-group-title {
    margin: 0.2rem 0 0.8rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--muted);
}

.similar-section .models-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.model-hub-layout {
    align-items: start;
}

.model-hub-layout .content-main > .models-section:first-child {
    margin-top: 0;
}

.gallery-modal .modal-content {
    background: #0b1322;
    color: #e9f0ff;
}

.gallery-modal .carousel-item img {
    object-fit: contain;
    background: #0b1322;
}

.gallery-modal .carousel-item {
    height: 100vh;
}

body.theme-luxury-dark {
    --bg: #0c111a;
    --surface: #101827;
    --text: #eef3ff;
    --muted: #9faec6;
    --line: #26344d;
    --primary: #5b84ff;
    --primary-soft: #192946;
    --secondary: #d16464;
    --accent-gold: #d2a34c;
    background:
            radial-gradient(1200px 420px at 100% -10%, rgba(83, 126, 255, 0.24) 0%, rgba(83, 126, 255, 0) 62%),
            radial-gradient(980px 340px at -10% -8%, rgba(190, 88, 88, 0.2) 0%, rgba(190, 88, 88, 0) 56%),
            radial-gradient(900px 320px at 50% 115%, rgba(211, 162, 74, 0.13) 0%, rgba(211, 162, 74, 0) 58%),
            #0c111a;
}

body.theme-luxury-dark .site-header {
    background: rgba(13, 19, 32, 0.82);
    border-bottom-color: #22324d;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

body.theme-luxury-dark .logo-mark {
    background: linear-gradient(135deg, #1a2a47 0%, #3a1f2a 100%);
    color: #8faeff;
    border-color: #344766;
}

body.theme-luxury-dark .logo-text {
    color: #edf3ff;
}

body.theme-luxury-dark .main-nav a {
    color: #b4c0d6;
}

body.theme-luxury-dark .main-nav a:hover {
    color: #e8eeff;
    background: #1b2a45;
    border-color: #314a77;
}

body.theme-luxury-dark .header-cta {
    background: linear-gradient(135deg, #3b5fcf 0%, #6d8fff 52%, #b56060 100%);
    box-shadow: 0 12px 24px rgba(23, 38, 82, 0.45);
}

body.theme-luxury-dark .header-search-input {
    background: linear-gradient(180deg, #141f31 0%, #111a2a 100%);
    border-color: #324867;
    color: #e9f0ff;
}

body.theme-luxury-dark .header-search-input:focus {
    border-color: #5d86ff;
    box-shadow: 0 0 0 3px rgba(93, 134, 255, 0.22);
}

body.theme-luxury-dark .mobile-menu-toggle {
    border-color: #314a77;
    background: linear-gradient(180deg, #141f31 0%, #111a2a 100%);
    color: #dbe6ff;
}

body.theme-luxury-dark .brand-hero,
body.theme-luxury-dark .info-card,
body.theme-luxury-dark .models-section,
body.theme-luxury-dark .comments-area,
body.theme-luxury-dark .meta-item,
body.theme-luxury-dark .model-card,
body.theme-luxury-dark .comment-body {
    background: linear-gradient(180deg, #111b2c 0%, #0f1726 100%);
    border-color: #283851;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

body.theme-luxury-dark .brand-hero::after {
    background: radial-gradient(circle, rgba(100, 135, 255, 0.25) 0%, rgba(100, 135, 255, 0) 70%);
}

body.theme-luxury-dark .meta-country {
    background: linear-gradient(180deg, #14213a 0%, #101a2b 100%);
    border-color: #34507d;
}

body.theme-luxury-dark .meta-country::before {
    background: linear-gradient(90deg, #5f8dff 0%, #90b0ff 100%);
}

body.theme-luxury-dark .meta-country::after {
    background: radial-gradient(circle, rgba(92, 132, 245, 0.34) 0%, rgba(92, 132, 245, 0) 72%);
}

body.theme-luxury-dark .meta-quality {
    background: linear-gradient(180deg, #12262a 0%, #101d23 100%);
    border-color: #2d5b55;
}

body.theme-luxury-dark .meta-quality::before {
    background: linear-gradient(90deg, #4ebd8b 0%, #8addb7 100%);
}

body.theme-luxury-dark .meta-quality::after {
    background: radial-gradient(circle, rgba(69, 181, 133, 0.34) 0%, rgba(69, 181, 133, 0) 72%);
}

body.theme-luxury-dark .meta-price {
    background: linear-gradient(180deg, #2a2012 0%, #22190f 100%);
    border-color: #6d5430;
}

body.theme-luxury-dark .meta-price::before {
    background: linear-gradient(90deg, #d29d45 0%, #f0c579 100%);
}

body.theme-luxury-dark .meta-price::after {
    background: radial-gradient(circle, rgba(211, 160, 78, 0.35) 0%, rgba(211, 160, 78, 0) 72%);
}

body.theme-luxury-dark .brand-name,
body.theme-luxury-dark .section-head h2,
body.theme-luxury-dark .content-heading,
body.theme-luxury-dark .model-title,
body.theme-luxury-dark .model-price,
body.theme-luxury-dark .editor-name,
body.theme-luxury-dark .comment-author .fn {
    color: #f1f5ff;
}

body.theme-luxury-dark .brand-signature,
body.theme-luxury-dark .section-kicker {
    color: #8ea0bc;
}

body.theme-luxury-dark .brand-description,
body.theme-luxury-dark .content-paragraph,
body.theme-luxury-dark .section-subtitle,
body.theme-luxury-dark .meta-label,
body.theme-luxury-dark .metrics-list span,
body.theme-luxury-dark .editor-title,
body.theme-luxury-dark .comment-content p,
body.theme-luxury-dark .comment-metadata time,
body.theme-luxury-dark .comment-form label,
body.theme-luxury-dark .models-empty {
    color: #aab8ce;
}

body.theme-luxury-dark .section-head i {
    background: linear-gradient(180deg, #1b2b49 0%, #2f2030 100%);
    border-color: #334a70;
    color: #84a5ff;
}

body.theme-luxury-dark .country-flag {
    border-color: #334764;
}

body.theme-luxury-dark .control-select,
body.theme-luxury-dark .control-input,
body.theme-luxury-dark .comment-form textarea,
body.theme-luxury-dark .comment-form input[type="text"],
body.theme-luxury-dark .comment-form input[type="email"] {
    background: linear-gradient(180deg, #141f31 0%, #111a2a 100%);
    border-color: #324867;
    color: #e9f0ff;
}

body.theme-luxury-dark .control-select:focus,
body.theme-luxury-dark .control-input:focus,
body.theme-luxury-dark .comment-form textarea:focus,
body.theme-luxury-dark .comment-form input[type="text"]:focus,
body.theme-luxury-dark .comment-form input[type="email"]:focus {
    border-color: #5d86ff;
    box-shadow: 0 0 0 3px rgba(93, 134, 255, 0.22);
}

body.theme-luxury-dark .chassis-badge {
    background: linear-gradient(180deg, #22355a 0%, #3b2731 100%);
    color: #c6d5ff;
    border-color: #42577d;
}

body.theme-luxury-dark .price-row {
    background: linear-gradient(180deg, #162338 0%, #131f32 100%);
    border-color: #2f4363;
}

body.theme-luxury-dark .model-sale-price {
    color: #8f9eb8;
}

body.theme-luxury-dark .level-chip {
    border-color: #3a4a63;
    color: #95a3bb;
    background: #172131;
}

body.theme-luxury-dark .level-chip.is-active.quality {
    border-color: #36795a;
    background: #163327;
    color: #89dbad;
}

body.theme-luxury-dark .level-chip.is-active.price {
    border-color: #8b6632;
    background: #35260f;
    color: #ffd99b;
}

body.theme-luxury-dark .editor-mail {
    color: #8faeff;
}

body.theme-luxury-dark .comment-form .submit {
    background: linear-gradient(135deg, #446be3 0%, #7b99ff 50%, #b96a6a 100%);
    box-shadow: 0 12px 22px rgba(40, 61, 123, 0.42);
}

body.theme-luxury-dark .story-card::before {
    background: linear-gradient(180deg, #5f86ff 0%, #d86c6c 52%, #d2a34c 100%);
}

body.theme-luxury-dark .narrative-block {
    border-top-color: #2a3b58;
}

body.theme-luxury-dark .model-code {
    background: rgba(15, 26, 44, 0.72);
    border-color: rgba(148, 170, 223, 0.32);
    color: #dce6ff;
}

body.theme-luxury-dark .site-footer {
    background:
            radial-gradient(580px 220px at 12% -10%, rgba(75, 120, 250, 0.24) 0%, rgba(75, 120, 250, 0) 70%),
            radial-gradient(620px 220px at 92% -5%, rgba(175, 88, 88, 0.2) 0%, rgba(175, 88, 88, 0) 70%),
            linear-gradient(180deg, #0b1322 0%, #0a1220 100%);
}

body.theme-luxury-dark .footer-title,
body.theme-luxury-dark .footer-logo .logo-text {
    color: #ecf2ff;
}

body.theme-luxury-dark .footer-links a {
    color: #b1c1dc;
}

body.theme-luxury-dark .footer-links a:hover {
    color: #ffffff;
}

body.theme-luxury-dark .model-page-facts li,
body.theme-luxury-dark .model-brand-link {
    border-color: #2f4363;
    background: linear-gradient(180deg, #162338 0%, #131f32 100%);
}

body.theme-luxury-dark .parent-model-transition {
    border-color: #2f4568;
    background: linear-gradient(180deg, #16253c 0%, #131f33 100%);
}

body.theme-luxury-dark .parent-model-label {
    color: #9fb2d1;
}

body.theme-luxury-dark .parent-model-item {
    border-color: #334b6e;
    background: linear-gradient(180deg, #172841 0%, #142136 100%);
}

body.theme-luxury-dark .parent-item-kicker {
    color: #9eb3d8;
}

body.theme-luxury-dark .parent-model-item strong {
    color: #e8efff;
}

body.theme-luxury-dark .parent-model-item:hover {
    border-color: #3d5b88;
    box-shadow: 0 10px 18px rgba(6, 13, 26, 0.4);
}

body.theme-luxury-dark .parent-model-item.is-active {
    border-color: #5b7fb8;
    background: linear-gradient(180deg, #26395b 0%, #2f2538 100%);
    box-shadow: 0 12px 22px rgba(24, 40, 74, 0.5);
}

body.theme-luxury-dark .spec-item,
body.theme-luxury-dark .spec-tax-item {
    border-color: #314560;
    background: linear-gradient(180deg, #152238 0%, #121c2f 100%);
}

body.theme-luxury-dark .specs-group {
    border-color: #2d3f5b;
    background: linear-gradient(180deg, #111d31 0%, #101a2c 100%);
}

body.theme-luxury-dark .specs-section {
    background:
            radial-gradient(360px 140px at 8% -8%, rgba(93, 134, 255, 0.22) 0%, rgba(93, 134, 255, 0) 72%),
            radial-gradient(420px 160px at 96% -12%, rgba(190, 94, 94, 0.2) 0%, rgba(190, 94, 94, 0) 72%),
            linear-gradient(180deg, #111b2c 0%, #0f1726 100%);
}

body.theme-luxury-dark .specs-group::after {
    background: linear-gradient(90deg, rgba(119, 152, 255, 0.55) 0%, rgba(206, 117, 117, 0.5) 100%);
}

body.theme-luxury-dark .specs-group:hover {
    border-color: #375078;
    box-shadow: 0 16px 28px rgba(4, 9, 18, 0.48);
}

body.theme-luxury-dark .specs-group-head h3 {
    color: #d8e4ff;
}

body.theme-luxury-dark .specs-taxonomy {
    border-top-color: transparent;
}

body.theme-luxury-dark .spec-icon,
body.theme-luxury-dark .spec-tax-icon,
body.theme-luxury-dark .specs-group-head i {
    border-color: #3a5478;
    background: linear-gradient(180deg, #1e2f4d 0%, #2d2233 100%);
    color: #9ab7ff;
}

body.theme-luxury-dark .spec-icon,
body.theme-luxury-dark .spec-tax-icon {
    box-shadow: 0 8px 14px rgba(20, 35, 68, 0.45);
}

body.theme-luxury-dark .spec-value,
body.theme-luxury-dark .spec-tax-value {
    color: #edf3ff;
}

body.theme-luxury-dark .price-trend-section {
    background:
            radial-gradient(360px 130px at 8% -8%, rgba(96, 140, 255, 0.2) 0%, rgba(96, 140, 255, 0) 72%),
            radial-gradient(420px 140px at 94% -10%, rgba(183, 102, 102, 0.16) 0%, rgba(183, 102, 102, 0) 72%),
            linear-gradient(180deg, #111b2c 0%, #0f1726 100%);
}

body.theme-luxury-dark .price-chart-wrap {
    border-color: #304662;
    background: linear-gradient(180deg, #142238 0%, #111b2c 100%);
}

body.theme-luxury-dark .price-meta-item {
    border-color: #314862;
    background: linear-gradient(180deg, #152338 0%, #111b2d 100%);
}

body.theme-luxury-dark .price-meta-label {
    color: #98abc9;
}

body.theme-luxury-dark .price-meta-value {
    color: #ecf2ff;
}

body.theme-luxury-dark .sale-on {
    color: #89dbad;
}

body.theme-luxury-dark .model-list-group-title {
    color: #9fb1cd;
}

@media (max-width: 991px) {
    .header-inner {
        flex-wrap: nowrap;
        padding-top: 0.55rem;
        padding-bottom: 0.55rem;
    }

    .desktop-nav,
    .desktop-search {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .brand-meta {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

    .content-layout {
        grid-template-columns: 1fr;
    }

    .models-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .model-page-hero {
        grid-template-columns: 1fr;
    }

    .model-carousel .carousel-item img {
        height: 360px;
    }

    .parent-model-track {
        grid-template-columns: 1fr;
    }

    .models-head {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .models-toolbar {
        justify-content: flex-start;
        margin-top: 0;
    }

    .control-select {
        min-width: 190px;
    }

    .control-input {
        min-width: 190px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .footer-brand {
        grid-column: span 2;
    }

    .specs-grid-dimensions,
    .specs-taxonomy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-trend-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .brand-header {
        padding-top: 1rem;
    }

    .brand-hero {
        padding: 1rem;
    }

    .brand-meta {
        grid-template-columns: 1fr;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .model-carousel .carousel-item img {
        height: 280px;
    }

    .similar-section .models-grid {
        grid-template-columns: 1fr;
    }

    .models-toolbar {
        justify-content: flex-start;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .control-field {
        width: 100%;
    }

    .control-select {
        width: 100%;
        min-width: 0;
    }

    .control-input {
        width: 100%;
        min-width: 0;
    }

    .specs-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid-dimensions,
    .specs-taxonomy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .price-chart-wrap canvas {
        height: 240px;
    }

    .price-trend-meta {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        padding-top: 1.4rem;
        padding-bottom: 1.2rem;
    }

    .footer-brand {
        grid-column: span 1;
    }
}
