/*
|--------------------------------------------------------------------------
| Base
|--------------------------------------------------------------------------
*/

* {

    box-sizing: border-box;

}


body {

    margin: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #07070d;

    color: #111827;

}


.vehicle-database-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding-left: 20px;

    padding-right: 20px;

}


/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.vehicle-database-header {

    background: #ffffff;

    border-bottom:
        1px solid #e5e7eb;

}


.vehicle-database-header-content {

    padding:
        40px 0;

}


.vehicle-database-header h1 {

    margin: 0 0 8px;

    font-size: 32px;

    line-height: 1.2;

    color: #111827;

}


.vehicle-database-header p {

    margin: 0;

    color: #6b7280;

    font-size: 15px;

    line-height: 1.6;

}


/*
|--------------------------------------------------------------------------
| Main
|--------------------------------------------------------------------------
*/

.vehicle-database main {
    
    position: relative;
     
    padding:
        20px 0 45px;

}


/*
|--------------------------------------------------------------------------
| Breadcrumb
|--------------------------------------------------------------------------
*/

.vehicle-database-breadcrumb {

    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 18px;

    font-size: 13px;
    color: rgba(255,255,255,.55);

}


.vehicle-database-breadcrumb a {

    color: rgba(255,255,255,.55);
    
    transition:
        color .2s ease;

    text-decoration: none;

}


.vehicle-database-breadcrumb a:hover {

    color: #ef1111;

}


.vehicle-database-breadcrumb .current {

    color: #ffffff;

    font-weight: 600;

}


/*
|--------------------------------------------------------------------------
| Loading
|--------------------------------------------------------------------------
*/

.vehicle-loading {

    padding: 60px 20px;

    text-align: center;

    color: #6b7280;

}


/*
|--------------------------------------------------------------------------
| Responsive
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    .vehicle-database-header-content {

        padding:
            30px 0;

    }


    .vehicle-database-header h1 {

        font-size: 26px;

    }


    .vehicle-database main {

        padding-top: 20px;

    }

}

/*
|--------------------------------------------------------------------------
| Vehicle Types
|--------------------------------------------------------------------------
*/

.vehicle-types-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 20px;

}


.vehicle-type-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    width: 100%;

    min-height: 150px;

    padding: 24px;

    border:
        1px solid #e5e7eb;

    border-radius: 14px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.vehicle-type-card:hover {

    transform:
        translateY(-3px);

    border-color:
        #d1d5db;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .07);

}


.vehicle-type-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 64px;

    height: 64px;

    flex-shrink: 0;

    border-radius: 12px;

    background: #f3f4f6;

    font-size: 32px;

}


.vehicle-type-info {

    min-width: 0;

}


.vehicle-type-info h2 {

    margin: 0 0 5px;

    font-size: 18px;

    color: #111827;

}


.vehicle-type-info p {

    margin: 0;

    font-size: 13px;

    color: #6b7280;

}


.vehicle-type-arrow {

    margin-left: auto;

    color: #9ca3af;

    font-size: 22px;

}


.vehicle-error,
.vehicle-empty {

    padding: 50px 20px;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    background: #ffffff;

    text-align: center;

    color: #6b7280;

}


@media (max-width: 900px) {

    .vehicle-types-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 600px) {

    .vehicle-types-grid {

        grid-template-columns: 1fr;

    }

}

/*
|--------------------------------------------------------------------------
| Section Header
|--------------------------------------------------------------------------
*/

.vehicle-section-header {

    margin-bottom: 25px;

}


.vehicle-section-label {

    display: inline-block;

    margin-bottom: 6px;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .05em;

    color: #ffffff;

}


.vehicle-section-header h2 {

    margin: 0 0 6px;

    font-size: 24px;

    color: #ffffff;

}


.vehicle-section-header p {

    margin: 0;

    color: #6b7280;

    font-size: 14px;

}


/*
|--------------------------------------------------------------------------
| Brands
|--------------------------------------------------------------------------
*/

.vehicle-brands-grid {

    display: grid;

    grid-template-columns:
        repeat(5, minmax(0, 1fr));

    gap: 16px;

}


.vehicle-brand-card {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 170px;

    padding: 20px;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    background: #ffffff;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.vehicle-brand-card:hover {

    transform:
        translateY(-3px);

    border-color:
        #d1d5db;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, .06);

}


.vehicle-brand-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 90px;

    height: 90px;

    margin-bottom: 15px;

}


.vehicle-brand-logo img {

    display: block;

    max-width: 80px;

    max-height: 70px;

    width: auto;

    height: auto;

    object-fit: contain;

}


.vehicle-brand-logo span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 64px;

    height: 64px;

    border-radius: 50%;

    background: #f3f4f6;

    color: #374151;

    font-size: 28px;

    font-weight: 700;

}


.vehicle-brand-name {

    font-size: 14px;

    font-weight: 600;

    color: #111827;

    text-align: center;

}


@media (max-width: 1000px) {

    .vehicle-brands-grid {

        grid-template-columns:
            repeat(4, minmax(0, 1fr));

    }

}


@media (max-width: 800px) {

    .vehicle-brands-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));

    }

}


@media (max-width: 600px) {

    .vehicle-brands-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}

/*
|--------------------------------------------------------------------------
| Models
|--------------------------------------------------------------------------
*/

.vehicle-models-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

}


.vehicle-model-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 16px;

    width: 100%;

    min-height: 100px;

    padding: 18px;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.vehicle-model-card:hover {

    transform:
        translateY(-2px);

    border-color:
        #d1d5db;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .06);

}


.vehicle-model-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 10px;

    background: #f3f4f6;

    color: #374151;

}


.vehicle-model-info {

    min-width: 0;

}


.vehicle-model-info h3 {

    margin: 0 0 5px;

    font-size: 15px;

    color: #111827;

}


.vehicle-model-info span {

    font-size: 12px;

    color: #9ca3af;

}


.vehicle-model-arrow {

    margin-left: auto;

    color: #9ca3af;

    font-size: 20px;

}


/*
|--------------------------------------------------------------------------
| Generations
|--------------------------------------------------------------------------
*/

.vehicle-generations-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;

}


.vehicle-generation-card {

    display: flex;

    align-items: center;

    gap: 16px;

    width: 100%;

    min-height: 100px;

    padding: 18px;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.vehicle-generation-card:hover {

    transform:
        translateY(-2px);

    border-color:
        #d1d5db;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .06);

}


.vehicle-generation-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 10px;

    background: #f3f4f6;

    color: #374151;

}


.vehicle-generation-info {

    min-width: 0;

}


.vehicle-generation-info h3 {

    margin: 0 0 5px;

    font-size: 15px;

    color: #111827;

}


.vehicle-generation-info span {

    font-size: 12px;

    color: #9ca3af;

}


.vehicle-generation-arrow {

    margin-left: auto;

    color: #9ca3af;

    font-size: 20px;

}


@media (max-width: 900px) {

    .vehicle-models-grid,
    .vehicle-generations-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 600px) {

    .vehicle-models-grid,
    .vehicle-generations-grid {

        grid-template-columns: 1fr;

    }

}

/*
|--------------------------------------------------------------------------
| Engines
|--------------------------------------------------------------------------
*/

.vehicle-engines-grid {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 16px;

}


.vehicle-engine-card {

    display: flex;

    align-items: center;

    gap: 18px;

    width: 100%;

    min-height: 105px;

    padding: 18px 20px;

    border:
        1px solid #e5e7eb;

    border-radius: 12px;

    background: #ffffff;

    text-align: left;

    cursor: pointer;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.vehicle-engine-card:hover {

    transform:
        translateY(-2px);

    border-color:
        #d1d5db;

    box-shadow:
        0 8px 24px
        rgba(0, 0, 0, .06);

}


.vehicle-engine-main {

    display: flex;

    align-items: center;

    gap: 15px;

    min-width: 0;

    flex: 1;

}


.vehicle-engine-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 10px;

    background: #f3f4f6;

    color: #374151;

}


.vehicle-engine-info {

    min-width: 0;

}


.vehicle-engine-info h3 {

    margin: 0 0 5px;

    font-size: 15px;

    color: #111827;

}


.vehicle-engine-info span {

    font-size: 12px;

    color: #6b7280;

}


.vehicle-engine-performance {

    display: flex;

    align-items: center;

    gap: 18px;

}


.vehicle-engine-performance div {

    display: flex;

    align-items: baseline;

    gap: 3px;

}


.vehicle-engine-performance strong {

    font-size: 15px;

    color: #111827;

}


.vehicle-engine-performance span {

    font-size: 11px;

    color: #6b7280;

}


.vehicle-engine-arrow {

    color: #9ca3af;

    font-size: 20px;

}


@media (max-width: 900px) {

    .vehicle-engines-grid {

        grid-template-columns: 1fr;

    }

}


@media (max-width: 600px) {

    .vehicle-engine-card {

        flex-wrap: wrap;

    }


    .vehicle-engine-performance {

        width: 100%;

        padding-left: 63px;

    }

}


/* ==========================================================
   Vehicle Database Banner
   ========================================================== */

.vehicle-database-banner {

    min-height: 300px;
    height: 300px;

    display: flex;
    align-items: center;

}


.vehicle-database-banner .header-text {

    margin-top: 0;

}


.vehicle-database-banner .header-text h2 {

    font-size: 44px;

    line-height: 1.05;

    letter-spacing: 0.5px;

}

/* ==========================================================
   Vehicle Database Content Spacing
   ========================================================== */

.vehicle-database-content {

    margin-top: 0 !important;

}

#vehicleDatabaseContent {

    margin-top: 0 !important;

    padding-top: 0 !important;

}



.vehicle-type-icon {
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.vehicle-type-icon img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    display: block;
}

.vehicle-engine-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-engine-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.vehicle-generation-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.vehicle-model-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}







/* ==========================================================
   ENGINE DETAIL
   ========================================================== */

.vehicle-database main {
    padding: 20px 0 45px;
}

.vehicle-database-breadcrumb {
    margin-bottom: 14px;
}


/* ----------------------------------------------------------
   Engine detail wrapper
   ---------------------------------------------------------- */

.vehicle-engine-detail {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* ----------------------------------------------------------
   Top cards
   ---------------------------------------------------------- */

.engine-detail-top {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 18px;
    align-items: stretch;
}


/* ----------------------------------------------------------
   Shared cards
   ---------------------------------------------------------- */

.engine-main-card,
.engine-chart-card,
.engine-specifications,
.engine-ecu-section,
.engine-seo-content {
    border: 1px solid #e1e5ea;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(15, 23, 42, .03);
}


/* ==========================================================
   ENGINE MAIN CARD
   ========================================================== */

.engine-main-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}


/* Header */

.engine-main-header {
    padding: 22px 26px 18px;
    border-bottom: 1px solid #edf0f3;
}

.engine-main-header .vehicle-section-label {
    margin-bottom: 5px;
}

.engine-main-header h2 {
    margin: 0 0 5px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.025em;
    color: #111827;
}

.engine-main-header p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}


/* Performance */

.engine-performance-block {
    padding: 18px 26px 22px;
}

.performance-header {
    margin-bottom: 12px;
}

.performance-header h3 {
    margin: 3px 0 0;
    font-size: 19px;
    line-height: 1.25;
    color: #111827;
}


/* Performance table */

.performance-table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.engine-performance-table {
    width: 100%;
    min-width: 390px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: 12px;
}

.engine-performance-table th,
.engine-performance-table td {
    padding: 12px 13px;
    border-bottom: 1px solid #edf0f3;
    text-align: center;
}

.engine-performance-table thead th {
    background: #f8fafc;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.engine-performance-table thead th:first-child {
    text-align: left;
}

.engine-performance-table tbody tr:last-child th,
.engine-performance-table tbody tr:last-child td {
    border-bottom: 0;
}

.engine-performance-table tbody th {
    width: 90px;
    background: #ffffff;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
}

.engine-performance-table td {
    white-space: nowrap;
}

.engine-performance-table td strong {
    font-size: 21px;
    line-height: 1;
    color: #111827;
}

.engine-performance-table td span {
    margin-left: 3px;
    font-size: 11px;
    color: #64748b;
}

.engine-performance-table .stage-column {
    color: #dc2626;
}

.engine-performance-table .stage-value {
    background: #fffafa;
}

.engine-performance-table .stage-value strong {
    color: #dc2626;
}


/* Gain */

.performance-gain {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 12px;
    padding: 11px 14px;
    border: 1px solid #fee2e2;
    border-radius: 10px;
    background: #fffafa;
}

.performance-gain-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #991b1b;
}

.performance-gain-values {
    display: flex;
    align-items: center;
    gap: 20px;
}

.performance-gain-item {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.performance-gain-item strong {
    font-size: 18px;
    color: #dc2626;
}

.performance-gain-item span {
    font-size: 11px;
    color: #7f1d1d;
}


/* ==========================================================
   CHART
   ========================================================== */

.engine-chart-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.engine-chart-header {
    padding: 20px 26px 8px;
}

.engine-chart-header h3 {
    margin: 3px 0 0;
    font-size: 19px;
    color: #111827;
}

.engine-chart {
    width: 100%;
    height: 320px;
    padding: 0 14px 12px;
    overflow: hidden;
}

#engineChartCanvas {
    display: block;
    width: 100% !important;
    height: 300px !important;
    max-width: 100%;
}


/* ==========================================================
   ENGINE SPECIFICATIONS
   ========================================================== */

.engine-specifications {
    padding: 22px 26px 24px;
}

.engine-specifications-header {
    margin-bottom: 14px;
}

.engine-specifications-header h3 {
    margin: 3px 0 0;
    font-size: 19px;
    color: #111827;
}

.engine-specifications-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.engine-specification {
    padding: 13px 15px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #f8fafc;
}

.engine-specification span {
    display: block;
    margin-bottom: 5px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .045em;
    color: #64748b;
}

.engine-specification strong {
    display: block;
    font-size: 14px;
    color: #111827;
    word-break: break-word;
}


/* ==========================================================
   ECU
   ========================================================== */

.engine-ecu-section {
    padding: 22px 26px 24px;
}

.engine-ecu-header {
    margin-bottom: 14px;
}

.engine-ecu-section h3 {
    margin: 3px 0 0;
    font-size: 19px;
    color: #111827;
}

.engine-ecu-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.engine-ecu-card {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid #dfe4ea;
    border-radius: 10px;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.engine-ecu-card .material-symbols-outlined {
    font-size: 20px;
    color: #64748b;
}

.engine-no-ecu {
    font-size: 13px;
    color: #94a3b8;
}


/* ==========================================================
   SEO CONTENT
   ========================================================== */

.engine-seo-content {
    width: 100%;
    margin: 0 auto 30px;
    padding: 28px;
}

.engine-seo-header {
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #edf0f3;
}

.engine-seo-eyebrow {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.engine-seo-header h2 {
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.25;
    color: #111827;
}

.engine-seo-header p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

.engine-seo-body {
    max-width: none;
}

.engine-seo-body p {
    margin: 0 0 15px;
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
}

.engine-seo-body h3 {
    margin: 24px 0 8px;
    font-size: 18px;
    color: #111827;
}


/* ==========================================================
   DATABASE RESET
   ========================================================== */

.vehicle-database {
    margin: 0;
    padding: 0;
}

.vehicle-database main {
    margin: 0;
}

.vehicle-database section {
    margin-top: 0;
    padding-top: 0;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

    .engine-detail-top {
        grid-template-columns: 1fr;
    }

    .engine-chart {
        height: 320px;
    }

    #engineChartCanvas {
        height: 300px !important;
    }

    .engine-specifications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .vehicle-database main {
        padding: 15px 0 35px;
    }

    .vehicle-database-breadcrumb {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .vehicle-engine-detail {
        gap: 14px;
    }

    .engine-main-header {
        padding: 20px;
    }

    .engine-main-header h2 {
        font-size: 26px;
    }

    .engine-performance-block {
        padding: 18px 20px 20px;
    }

    .engine-chart-header {
        padding: 18px 20px 7px;
    }

    .engine-chart {
        height: 290px;
        padding: 0 5px 8px;
    }

    #engineChartCanvas {
        height: 270px !important;
    }

    .engine-specifications,
    .engine-ecu-section {
        padding: 20px;
    }

    .engine-specifications-grid {
        grid-template-columns: 1fr;
    }

    .engine-seo-content {
        padding: 22px 20px;
    }

    .engine-seo-header h2 {
        font-size: 21px;
    }

    .engine-seo-body p {
        font-size: 14px;
        line-height: 1.75;
    }

    .performance-gain {
        align-items: flex-start;
        flex-direction: column;
    }

    .performance-gain-values {
        width: 100%;
        justify-content: space-between;
    }

}

/* ==========================================================
   VEHICLE DATABASE BANNER - VEHICLE INFORMATION
   ========================================================== */

.vehicle-database-banner .header-text h2 {
    margin-bottom: 16px;
}


/* Vehicle information */

.banner-vehicle-info {

    display: flex;

    flex-direction: column;

    align-items: center;

}


/* Brand */

.banner-vehicle-brand {

    margin-bottom: 3px;

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(255,255,255,.72);

}


/* Engine */

.banner-vehicle-engine {

    font-size: 27px;

    line-height: 1.15;

    font-weight: 700;

    color: #ffffff;

}


/* Model / Generation */

.banner-vehicle-details {

    margin-top: 6px;

    font-size: 13px;

    color: rgba(255,255,255,.72);

}


.banner-separator {

    margin:
        0 5px;

    color:
        rgba(255,255,255,.45);

}


/* ----------------------------------------------------------
   Mobile
   ---------------------------------------------------------- */

@media (max-width: 600px) {

    .vehicle-database-banner .header-text h2 {

        margin-bottom:
            12px;

    }


    .banner-vehicle-brand {

        font-size:
            11px;

    }


    .banner-vehicle-engine {

        font-size:
            22px;

    }


    .banner-vehicle-details {

        font-size:
            12px;

    }

}

.banner-vehicle-info {

    display: flex;

    flex-direction: column;

    align-items: center;

}


.banner-vehicle-logo {

    width: 58px;

    height: 58px;

    margin-bottom: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

}


.banner-vehicle-logo img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.banner-vehicle-brand {

    margin-bottom: 3px;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: rgba(255,255,255,.72);

}


.banner-vehicle-engine {

    font-size: 27px;

    line-height: 1.15;

    font-weight: 700;

    color: #ffffff;

}


.banner-vehicle-details {

    margin-top: 6px;

    font-size: 13px;

    color: rgba(255,255,255,.72);

}


.banner-separator {

    margin: 0 5px;

    color: rgba(255,255,255,.45);

}

/* ==========================================================
   ENGINE SEO CONTENT
   ========================================================== */

.engine-seo-content {

    width: 100%;

    margin: 0 auto;

    padding: 28px;

    border: 1px solid #e1e5ea;

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 3px 14px rgba(15, 23, 42, .03);

}


/* ----------------------------------------------------------
   Header
   ---------------------------------------------------------- */

.engine-seo-header {

    padding-bottom: 18px;

    margin-bottom: 20px;

    border-bottom: 1px solid #edf0f3;

}


.engine-seo-eyebrow {

    display: block;

    margin-bottom: 7px;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .05em;

    color: #6b7280;

}


.engine-seo-header h1 {

    margin: 0 0 9px;

    font-size: 25px;

    line-height: 1.25;

    font-weight: 700;

    letter-spacing: -.02em;

    color: #111827;

}


.engine-seo-header p {

    max-width: 900px;

    margin: 0;

    font-size: 14px;

    line-height: 1.65;

    color: #6b7280;

}


/* ----------------------------------------------------------
   Body
   ---------------------------------------------------------- */

.engine-seo-body {

    max-width: 1000px;

}


.engine-seo-body p {

    margin: 0 0 16px;

    font-size: 14px;

    line-height: 1.75;

    color: #4b5563;

}


.engine-seo-body p:last-child {

    margin-bottom: 0;

}


/* ----------------------------------------------------------
   Headings
   ---------------------------------------------------------- */

.engine-seo-body h2 {

    margin: 26px 0 9px;

    font-size: 18px;

    line-height: 1.35;

    font-weight: 700;

    color: #111827;

}


.engine-seo-body h2:first-child {

    margin-top: 0;

}


.engine-seo-body h3 {

    margin: 0 0 7px;

    font-size: 14px;

    line-height: 1.45;

    font-weight: 700;

    color: #111827;

}


/* ----------------------------------------------------------
   Strong Text
   ---------------------------------------------------------- */

.engine-seo-body strong {

    font-weight: 700;

    color: #374151;

}


/* ==========================================================
   FAQ
   ========================================================== */

.engine-faq {

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid #edf0f3;

}


.engine-faq > h2 {

    margin-top: 0;

    margin-bottom: 14px;

}


.engine-faq-item {

    margin-bottom: 9px;

    padding: 14px 16px;

    border: 1px solid #e5e7eb;

    border-radius: 10px;

    background: #f8fafc;

}


.engine-faq-item:last-child {

    margin-bottom: 0;

}


.engine-faq-item h3 {

    margin: 0 0 6px;

    font-size: 14px;

    line-height: 1.45;

    color: #111827;

}


.engine-faq-item p {

    margin: 0;

    font-size: 13px;

    line-height: 1.65;

    color: #4b5563;

}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 950px) {

    .engine-seo-content {

        padding: 24px;

    }

}


/* ==========================================================
   MOBILE
   ========================================================== */

@media (max-width: 600px) {

    .engine-seo-content {

        padding: 20px;

        border-radius: 12px;

    }


    .engine-seo-header {

        padding-bottom: 15px;

        margin-bottom: 17px;

    }


    .engine-seo-eyebrow {

        font-size: 11px;

    }


    .engine-seo-header h1 {

        font-size: 21px;

        line-height: 1.3;

    }


    .engine-seo-header p {

        font-size: 13px;

        line-height: 1.65;

    }


    .engine-seo-body p {

        font-size: 13px;

        line-height: 1.7;

    }


    .engine-seo-body h2 {

        margin-top: 23px;

        font-size: 17px;

    }


    .engine-faq {

        margin-top: 24px;

        padding-top: 19px;

    }


    .engine-faq-item {

        padding: 13px 14px;

    }


    .engine-faq-item h3 {

        font-size: 13px;

    }


    .engine-faq-item p {

        font-size: 12.5px;

        line-height: 1.65;

    }

}

/* ==========================================================
   VEHICLE DATABASE - FOOTER SPACING
   ========================================================== */

.vehicle-database main {
    padding-bottom: 0 !important;
}

.engine-seo-content {
    margin-bottom: 0 !important;
}

.engine-seo-body {
    max-width: none;
}

.vehicle-database + footer {
    margin-top: 0 !important;
}

/* ==========================================================
   VEHICLE DATABASE - DARK CONTENT BACKGROUND
   ========================================================== */

.vehicle-database {

    position: relative;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(239, 17, 17, .07),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 15%,
            rgba(20, 50, 90, .10),
            transparent 35%
        ),
        #090910;

}