/* ==================================================
   TRANG CHI TIẾT XE — OJ
================================================== */

.oj-car-detail {
    background: #ffffff;
}

/* ==================================================
   PHẦN ĐẦU TRANG CHI TIẾT XE
================================================== */

.oj-car-overview {
    padding: 55px 0 46px;
    background: #ffffff;
}

.oj-car-overview__heading {
    margin-bottom: 28px;
    text-align: center;
}

.oj-car-overview__heading p {
    margin: 0 0 7px;
    color: var(--oj-blue-dark);
    font-size: 10px;
    line-height: 1.5;
    font-weight: 750;
    letter-spacing: 0.18em;
}

.oj-car-overview__heading h1 {
    margin: 0;
    color: var(--oj-black);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 750;
    letter-spacing: -0.035em;
}

/* Bố cục hai cột */

.oj-car-overview__layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(360px, 0.85fr);
    align-items: stretch;
    gap: 48px;
    max-width: 1120px;
    margin: 0 auto;
}

/* ==================================================
   CỘT ẢNH XE
================================================== */

.oj-car-product {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.oj-car-product__visual {
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px 18px;
}

.oj-car-product__image {
    display: block;
    width: 100%;
    max-width: 590px;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(
        0 18px 14px rgba(17, 17, 17, 0.15)
    );
}

.oj-car-product__placeholder {
    width: 100%;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--oj-light);
    color: var(--oj-muted);
}

/* Hộp giá */

.oj-car-product__price {
    width: 100%;
    max-width: 600px;
    margin: 3px auto 0;
    padding: 17px 24px;
    border: 1.5px dashed #ff4b4b;
    border-radius: 12px;
    text-align: center;
}

.oj-car-product__price p {
    margin: 0;
    color: #17233d;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 650;
    font-style: italic;
}

.oj-car-product__price strong {
    margin-left: 5px;
    color: #f0212d;
    font-size: clamp(23px, 2.5vw, 31px);
    line-height: 1.2;
    font-weight: 850;
}

.oj-car-product__note {
    width: 100%;
    max-width: 600px;
    margin: 11px auto 0;
    color: #e5252a;
    font-size: 11px;
    line-height: 1.55;
    font-weight: 550;
    font-style: italic;
}

/* Hai nút */

.oj-car-product__actions {
    width: 100%;
    max-width: 600px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 22px auto 0;
}

.oj-car-product__button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 8px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.oj-car-product__button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.oj-car-product__button--rolling {
    background: linear-gradient(
        90deg,
        #061447 0%,
        #0064b5 100%
    );
    box-shadow: 0 10px 22px rgba(0, 50, 130, 0.16);
}

.oj-car-product__button--quote {
    background: linear-gradient(
        90deg,
        #ff4d52 0%,
        #ffc51c 100%
    );
    box-shadow: 0 10px 22px rgba(255, 105, 30, 0.18);
}

.oj-car-product__button:hover {
    filter: brightness(1.04);
}

/* ==================================================
   HỘP KHUYẾN MÃI
================================================== */

.oj-car-promotion {
    min-width: 0;
    height: 100%;
    padding: 25px 25px 27px;
    border: 1.5px dashed #183e78;
    border-radius: 2px;
    background:
        linear-gradient(
            145deg,
            #f8fafc 0%,
            #e7ebf2 100%
        );
    color: #27364e;
}

.oj-car-promotion__heading {
    text-align: center;
}

.oj-car-promotion__heading p {
    margin: 0;
    color: #0e2d5d;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 750;
}

.oj-car-promotion__heading h2 {
    margin: 3px 0 0;
    color: #082c68;
    font-size: clamp(22px, 2.5vw, 29px);
    line-height: 1.2;
    font-weight: 850;
    text-shadow: 0 1px 0 #ffffff;
}

.oj-car-promotion__intro {
    margin-top: 19px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(15, 44, 93, 0.12);
}

.oj-car-promotion__intro p {
    margin: 0 0 5px;
    color: #566278;
    font-size: 12px;
    line-height: 1.45;
}

.oj-car-promotion__intro p:last-child {
    margin-bottom: 0;
}

/* Danh sách */

.oj-car-promotion__list {
    padding: 17px 0 0;
    margin: 0;
    list-style: none;
}

.oj-car-promotion__list li {
    position: relative;
    margin-bottom: 7px;
    padding-left: 25px;
    color: #3c4b62;
    font-size: 13px;
    line-height: 1.45;
}

.oj-car-promotion__list li::before {
    content: "✓";
    position: absolute;
    top: 1px;
    left: 0;
    width: 17px;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #008c1c;
    border-radius: 2px;
    background: #08b52a;
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.oj-car-promotion__empty {
    margin: 18px 0 0;
    color: #4f5d72;
    font-size: 13px;
    line-height: 1.6;
}

.oj-car-promotion__notice {
    margin: 15px 0 0;
    color: #44536a;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 700;
    text-transform: uppercase;
}

/* Nút Hotline */

.oj-car-promotion__phone {
    width: max-content;
    max-width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 22px auto 0;
    padding: 6px 20px 6px 8px;
    border-radius: 35px;
    background: linear-gradient(
        90deg,
        #ff4d52 0%,
        #ffc51c 100%
    );
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 9px 22px rgba(255, 94, 50, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.oj-car-promotion__phone:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 13px 27px rgba(255, 94, 50, 0.25);
}

.oj-car-promotion__phone-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 3px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.oj-car-promotion__phone > span:last-child {
    display: flex;
    flex-direction: column;
}

.oj-car-promotion__phone small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 650;
}

.oj-car-promotion__phone strong {
    margin-top: 3px;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 850;
}

/* Tablet */

@media (max-width: 1024px) {
    .oj-car-overview__layout {
        grid-template-columns: 1fr;
        max-width: 760px;
        gap: 38px;
    }

    .oj-car-product__visual {
        min-height: 300px;
    }

    .oj-car-promotion {
        height: auto;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .oj-car-overview {
        padding: 38px 0 30px;
    }

    .oj-car-overview__heading {
        margin-bottom: 20px;
    }

    .oj-car-overview__heading h1 {
        font-size: 34px;
    }

    .oj-car-overview__layout {
        gap: 28px;
    }

    .oj-car-product__visual {
        min-height: 210px;
        padding: 0 0 12px;
    }

    .oj-car-product__image {
        max-height: 240px;
    }

    .oj-car-product__price {
        padding: 14px 12px;
    }

    .oj-car-product__price p {
        font-size: 14px;
    }

    .oj-car-product__price strong {
        display: block;
        margin: 3px 0 0;
        font-size: 25px;
    }

    .oj-car-product__actions {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
    }

    .oj-car-promotion {
        padding: 22px 18px;
    }

    .oj-car-promotion__heading h2 {
        font-size: 23px;
    }
}

/* ==================================================
   THANH HÀNH ĐỘNG
================================================== */

.oj-car-quick-actions {
    background: #0b2f69;
}

.oj-car-quick-actions__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oj-car-quick-actions a {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease;
}

.oj-car-quick-actions a:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.oj-car-quick-actions a:hover {
    background: rgba(255, 255, 255, 0.11);
    color: #ffffff;
}

.oj-car-quick-actions__icon {
    font-size: 18px;
    font-weight: 800;
}

/* ==================================================
   ANCHOR NAV
================================================== */

.oj-car-anchor-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    overflow-x: auto;
    background: #ffffff;
    border-bottom: 1px solid var(--oj-border);
    box-shadow: 0 4px 15px rgba(17, 17, 17, 0.05);
}

.admin-bar .oj-car-anchor-nav {
    top: 32px;
}

.oj-car-anchor-nav__inner {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    white-space: nowrap;
}

.oj-car-anchor-nav a {
    color: var(--oj-text);
    font-size: 13px;
    font-weight: 650;
    text-decoration: none;
}

.oj-car-anchor-nav a:hover {
    color: var(--oj-blue-dark);
}

/* ==================================================
   NỘI DUNG ELEMENTOR
================================================== */

.oj-car-detail-content {
    width: 100%;
    background: #ffffff;
}

.oj-car-detail-content .elementor {
    width: 100%;
}

/* ==================================================
   FORM
================================================== */

.oj-car-detail-register {
    padding: 90px 0;
    background: #111111;
    color: #ffffff;
}

.oj-car-detail-register__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.8fr);
    align-items: center;
    gap: 70px;
}

.oj-car-detail-register__label {
    margin: 0;
    color: #67cfff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.oj-car-detail-register h2 {
    margin: 15px 0 0;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.12;
}

.oj-car-detail-register__content > p:not(
    .oj-car-detail-register__label
) {
    max-width: 600px;
    margin: 22px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.75;
}

.oj-car-detail-register__content > a {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
}

.oj-car-detail-register__form {
    padding: 35px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--oj-text);
}

/* Tablet */

@media (max-width: 1100px) {
    .oj-car-overview__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
    }

    .oj-car-promotion {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .oj-car-overview__grid,
    .oj-car-detail-register__grid {
        grid-template-columns: 1fr;
    }

    .oj-car-overview__image-wrap {
        min-height: 260px;
    }

    .oj-car-quick-actions__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .oj-car-anchor-nav__inner {
        justify-content: flex-start;
    }
}

/* Mobile */

@media (max-width: 767px) {
    .oj-car-overview {
        padding: 42px 0 25px;
    }

    .oj-car-overview__grid {
        gap: 22px;
    }

    .oj-car-overview__visual h1 {
        font-size: 45px;
    }

    .oj-car-overview__image-wrap {
        min-height: 210px;
        margin-top: 10px;
    }

    .oj-car-price-card,
    .oj-car-promotion {
        padding: 22px;
    }

    .oj-car-quick-actions__grid {
        grid-template-columns: 1fr 1fr;
    }

    .oj-car-quick-actions a {
        min-height: 66px;
        flex-direction: column;
        gap: 5px;
        font-size: 12px;
    }

    .oj-car-anchor-nav__inner {
        min-height: 48px;
        gap: 18px;
    }

    .oj-car-detail-register {
        padding: 65px 0;
    }

    .oj-car-detail-register__form {
        padding: 24px 18px;
    }
}
/* Khoảng cách khi bấm menu anchor */
#tong-quan,
#thiet-ke,
#noi-that,
#van-hanh,
#an-toan,
#hinh-anh,
#thong-so {
    scroll-margin-top: 110px;
}
/* ==================================================
   CÁC SECTION NỘI DUNG XE TỪ ACF
================================================== */

.oj-car-sections {
    width: 100%;
}

.oj-car-section {
    padding: 96px 0;
    background: #ffffff;
    scroll-margin-top: 120px;
}

.oj-car-section--light {
    background: #f6f7f9;
}

.oj-car-section--dark {
    background: #111111;
    color: #ffffff;
}

.oj-car-section__label {
    margin: 0 0 13px;
    color: var(--oj-blue-dark);
    font-size: 11px;
    line-height: 1.5;
    font-weight: 750;
    letter-spacing: 0.18em;
}

.oj-car-section--dark .oj-car-section__label {
    color: #67cfff;
}

.oj-car-section h2 {
    margin: 0 0 34px;
    color: var(--oj-black);
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1.1;
    font-weight: 750;
    letter-spacing: -0.035em;
}

.oj-car-section--dark h2 {
    color: #ffffff;
}

.oj-car-section__content {
    color: var(--oj-muted);
    font-size: 16px;
    line-height: 1.8;
}

.oj-car-section--dark .oj-car-section__content {
    color: rgba(255, 255, 255, 0.75);
}

.oj-car-section__content > *:first-child {
    margin-top: 0;
}

.oj-car-section__content > *:last-child {
    margin-bottom: 0;
}

.oj-car-section__content h2,
.oj-car-section__content h3,
.oj-car-section__content h4 {
    color: var(--oj-black);
}

.oj-car-section--dark .oj-car-section__content h2,
.oj-car-section--dark .oj-car-section__content h3,
.oj-car-section--dark .oj-car-section__content h4 {
    color: #ffffff;
}

.oj-car-section__content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 32px auto;
    border-radius: 10px;
}

.oj-car-section__content ul,
.oj-car-section__content ol {
    padding-left: 22px;
}

/* Gallery 1 ảnh lớn + 2 ảnh nhỏ */

.oj-car-section--gallery {
    background: #ffffff;
}

.oj-car-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.oj-car-gallery__item {
    margin: 0;
}

.oj-car-gallery__item--featured {
    grid-column: 1 / -1;
}

.oj-car-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 300px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.oj-car-gallery__item--featured img {
    min-height: 480px;
}

.oj-car-gallery__item figcaption {
    padding: 14px 8px 0;
    color: var(--oj-text);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* Bảng thông số */

.oj-car-specs table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.oj-car-specs th,
.oj-car-specs td {
    padding: 15px 18px;
    border: 1px solid var(--oj-border);
    text-align: left;
}

.oj-car-specs th {
    width: 38%;
    background: #edf1f5;
    color: var(--oj-black);
    font-weight: 700;
}

/* Mobile */

@media (max-width: 767px) {
    .oj-car-section {
        padding: 68px 0;
        scroll-margin-top: 105px;
    }

    .oj-car-section h2 {
        margin-bottom: 25px;
    }

    .oj-car-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .oj-car-gallery__item--featured {
        grid-column: auto;
    }

    .oj-car-gallery__item img,
    .oj-car-gallery__item--featured img {
        min-height: 0;
        aspect-ratio: auto;
        object-fit: contain;
    }

    .oj-car-specs {
        overflow-x: auto;
    }

    .oj-car-specs table {
        min-width: 620px;
    }
}
.oj-car-gallery__item:last-child:nth-child(even) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
    justify-self: center;
}

@media (max-width: 767px) {
    .oj-car-gallery__item:last-child:nth-child(even) {
        grid-column: auto;
        width: 100%;
    }
}
/* ==================================================
   NỘI DUNG CHI TIẾT XE — GUTENBERG
================================================== */

.oj-car-editor-content {
    width: 100%;
    padding: 0;
    background: #ffffff;
}

.oj-car-editor-content .wp-block-group {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 90px max(
        24px,
        calc((100vw - var(--oj-container)) / 2 + 24px)
    );
    scroll-margin-top: 120px;
}

.oj-car-editor-content .wp-block-group:nth-of-type(even) {
    background: #f6f7f9;
}

/* Tiêu đề chính của từng phần */

.oj-car-editor-content .wp-block-group > h2,
.oj-car-editor-content h2.wp-block-heading {
    margin: 0 0 32px;
    color: var(--oj-black);
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.12;
    font-weight: 800 !important;
    letter-spacing: -0.035em;
}

/* Tiêu đề phụ */

.oj-car-editor-content h3.wp-block-heading {
    margin: 38px 0 16px;
    color: var(--oj-black);
    font-size: clamp(23px, 2.5vw, 32px);
    line-height: 1.25;
    font-weight: 750 !important;
}

.oj-car-editor-content h4.wp-block-heading {
    margin: 28px 0 12px;
    color: var(--oj-black);
    font-size: 21px;
    line-height: 1.35;
    font-weight: 700 !important;
}

/* Nội dung chữ */

.oj-car-editor-content p,
.oj-car-editor-content li {
    color: var(--oj-muted);
    font-size: 16px;
    line-height: 1.8;
}

.oj-car-editor-content ul,
.oj-car-editor-content ol {
    padding-left: 24px;
}

/* Ảnh */

.oj-car-editor-content .wp-block-image {
    margin-top: 32px;
    margin-bottom: 32px;
}

.oj-car-editor-content .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.oj-car-editor-content figcaption {
    margin-top: 12px;
    color: var(--oj-text);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

/* Columns */

.oj-car-editor-content .wp-block-columns {
    align-items: stretch;
    gap: 26px;
    margin-top: 32px;
    margin-bottom: 32px;
}

.oj-car-editor-content .wp-block-column {
    min-width: 0;
}

/* Gallery */

.oj-car-editor-content .wp-block-gallery {
    gap: 22px;
    margin-top: 34px;
    margin-bottom: 34px;
}

.oj-car-editor-content .wp-block-gallery img {
    border-radius: 10px;
}

/* Bảng thông số */

.oj-car-editor-content .wp-block-table {
    overflow-x: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.oj-car-editor-content .wp-block-table table {
    width: 100%;
    min-width: 650px;
    border-collapse: collapse;
    background: #ffffff;
}

.oj-car-editor-content .wp-block-table th,
.oj-car-editor-content .wp-block-table td {
    padding: 15px 18px;
    border: 1px solid var(--oj-border);
    color: var(--oj-text);
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

.oj-car-editor-content .wp-block-table th {
    background: #edf1f5;
    color: var(--oj-black);
    font-weight: 750;
}

/* Khoảng cách anchor */

#tong-quan,
#thiet-ke,
#noi-that,
#van-hanh,
#an-toan,
#hinh-anh,
#thong-so {
    scroll-margin-top: 120px;
}

@media (max-width: 767px) {
    .oj-car-editor-content .wp-block-group {
        padding-top: 64px;
        padding-bottom: 64px;
        padding-left: 16px;
        padding-right: 16px;
        scroll-margin-top: 105px;
    }

    .oj-car-editor-content .wp-block-columns {
        flex-direction: column;
        gap: 18px;
    }

    .oj-car-editor-content .wp-block-table table {
        min-width: 600px;
    }
}
/* ==================================================
   KHỐI THÔNG SỐ NỔI BẬT
================================================== */

.oj-car-stats {
    width: 100%;
    max-width: var(--oj-container);
    margin: 0 auto;
    padding: 64px 24px;
}

.oj-car-stats .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
    margin: 0;
}

.oj-car-stats .wp-block-column {
    min-width: 0;
    padding: 25px 18px;
    border: 1px solid var(--oj-border);
    border-radius: 10px;
    background: #ffffff;
    text-align: center;
}

.oj-car-stats h2,
.oj-car-stats h3,
.oj-car-stats h4 {
    margin: 0;
    color: var(--oj-black);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    font-weight: 800;
}

.oj-car-stats p {
    margin: 10px 0 0;
    color: var(--oj-muted);
    font-size: 13px;
    line-height: 1.55;
    text-align: center;
}

/* ==================================================
   VÌ SAO NÊN CHỌN XE
================================================== */

.oj-car-why {
    width: 100%;
    max-width: var(--oj-container);
    margin: 0 auto;
    padding: 72px 24px;
}

.oj-car-why h2 {
    margin: 0 0 24px;
    color: var(--oj-black);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.oj-car-why p {
    max-width: 100%;
    margin: 0 0 16px;
    color: var(--oj-muted);
    font-size: 16px;
    line-height: 1.8;
}

.oj-car-why p:last-child {
    margin-bottom: 0;
}

/* Tablet */

@media (max-width: 900px) {
    .oj-car-stats .wp-block-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */

@media (max-width: 767px) {
    .oj-car-stats,
    .oj-car-why {
        padding-left: 16px;
        padding-right: 16px;
    }

    .oj-car-stats {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .oj-car-stats .wp-block-columns {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .oj-car-stats .wp-block-column {
        padding: 20px 15px;
    }

    .oj-car-why {
        padding-top: 55px;
        padding-bottom: 55px;
    }
}