/* Blog Layout Styles */
.blog-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    overflow: visible;
    min-height: 100vh;
}

.blog-content {
    flex: 1;
    min-width: 0;
}

.blog-header {
    margin-bottom: 24px;
}

.blog-title {
    color: #000000;
    margin-bottom: 30px;
    font-family: Jost;
    font-weight: 800;
    font-size: 36px;
    line-height: 36px;
    font-family: 'Jost', sans-serif;
}

.sidebar-title {
    color: #000000;
    margin-bottom: 20px;
    font-family: Jost;
    font-weight: 800;
    font-size: 24px;
}

/* Blog Cards */
.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-card {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 50% - 50% */
    gap: 24px;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #cccccc;
    padding: 24px;
}

.blog-card-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/12; /* Aspect ratio mai echilibrat pentru 50% */
    width: 100%;
}

.blog-card-image:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #3B00DD;
    opacity: .1;
}

.blog-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-post-image {
    transform: scale(1.05);
}

.blog-post-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0;
}

.blog-card-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 16px 0;
    font-family: 'Jost', sans-serif;
}

.blog-card-title a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #3B00DD;
}

.blog-card-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 24px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin-top: auto; */
}

.blog-date {
    font-size: 14px;
    color: #666;
}

.read-more-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
    padding: 12px 14px;
    background-color: #f3f3f3;
    color: #3B00DD;
    border: none;
    border-radius: 6px;
    font-family: 'Jost', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: space-between;
    line-height: 16px;
}

.read-more-link:hover {
    color: #3B00DD;
    background-color: #f3f3f3;
}

.read-more-link svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.read-more-link:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.pagination-list {
    display: inline-flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item a,
.pagination-item span {
    display: block;
    padding: 12px 16px;
    color: #000000;
    text-decoration: none;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.pagination-item a:hover,
.pagination-item .current {
    background: #3B00DD;
    color: white;
    border-color: #3B00DD;
}

/* Sidebar Styles */
.blog-sidebar {
    flex-shrink: 0;
    flex-grow: 0;
    width: 312px;
    max-width: 312px;
    min-height: 100vh;
    height: fit-content;
    margin-bottom: 24px;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
}

/* Popular Cars Widget */
.popular-cars-widget {
    border: 1px solid #e0e0e0;
    padding: 24px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 20px 0;
    font-family: 'Jost', sans-serif;
}

.popular-cars-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.popular-car-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.popular-car-image {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.car-placeholder {
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.car-price-badge {
    position: absolute;
    top: 4px;
    left: 4px;
    background: #10B981;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.car-favorite-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.car-favorite-btn:hover {
    background: #ff4757;
    color: white;
}

.popular-car-info {
    flex: 1;
    min-width: 0;
}

.car-name {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.car-year {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.car-offers {
    font-size: 12px;
    color: #3B00DD;
    font-weight: 500;
}

.view-catalog-btn {
    display: block;
    width: 100%;
    padding: 12px 16px;
    background: #3B00DD;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.view-catalog-btn:hover {
    background: #4711E9;
}

/* Trade-in Widget */
.tradein-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.tradein-content {
    padding: 24px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.tradein-icon {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.tradein-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 4px 0;
    color: white;
    font-family: 'Jost', sans-serif;
}

.tradein-subtitle {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 16px 0;
    opacity: 0.8;
    letter-spacing: 1px;
}

.tradein-description {
    font-size: 16px;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.tradein-cta {
    font-size: 14px;
    margin: 0 0 20px 0;
    opacity: 0.9;
    line-height: 1.4;
}

.tradein-button {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.tradein-button:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
}

/* Partner Widget */
.partner-widget {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

.partner-content {
    padding: 24px;
}

.partner-logo {
    margin-bottom: 16px;
}

.partner-badge {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.garantie-logo {
    max-height: 40px;
    width: auto;
}

.partner-guarantee {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-text {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: #f39c12;
}

.guarantee-subtext {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* No Posts */
.no-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts h2 {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
}

.no-posts p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .blog-content,
    .blog-sidebar {
        width: 100%;
        flex: 1 1 auto;
        max-width: max-content;
        margin-bottom: 12px;
    }

    .blog-layout {
        grid-template-columns: 1fr 280px;
        gap: 24px;
        flex-direction: column;
    }
    
    .blog-card {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    
    .blog-card-image {
        aspect-ratio: 16/12;
    }
    
    .blog-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-card-excerpt {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-layout {
        margin-top: 12px;
        gap: 12px
    }
    
    .blog-header {
        margin-bottom: 12px;
    }
    
    .blog-posts {
        gap: 12px;
    }
    
    .sidebar-widget {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .blog-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .blog-card-image {
        border-radius: 12px;
    }
}


.why-us-container {
    background-color: #3B00DD;
    border-radius: 16px;
    padding: 48px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: relative;
    margin-bottom: 24px;
}

.why-us-content {
    max-width: 55%;
    z-index: 2;
}

.why-us-title {
    font-family: Jost;
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
}

.why-us-subtitle {
    font-family: Jost;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
}

.why-us-text {
    font-family: Jost;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    margin-bottom: 24px;
}

.why-us-button {
    display: inline-flex;
    align-items: center;
    background-color: #00E5B9;
    color: #3B00DD;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s;
}

.why-us-button:hover {
    background-color: #00E5B9;
}

.why-us-button svg {
    margin-left: 8px;
}

.why-us-image {
    position: absolute;
    right: 48px;
    top: 0;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-image img {
    height: 100%;
    max-height: 400px;
    object-fit: contain;
}

/* Responsive styles */
@media (max-width: 992px) {
    .why-us-container {
        padding: 30px 40px;
    }
    
    .why-us-title {
        font-size: 42px;
    }
    
    .why-us-subtitle {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .why-us-container {
        flex-direction: column;
        padding: 30px;
        padding-bottom: 0;
        margin-bottom: 12px;
    }
    
    .why-us-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .why-us-image {
        position: relative;
        width: 100%;
        right: auto;
    }

    .why-us-image img {
        max-height: 200px;
    }
    
    .why-us-title {
        font-size: 36px;
    }
    
    .why-us-subtitle {
        font-size: 20px;
    }
    
    .why-us-text {
        font-size: 16px;
    }
}

/* Stiluri pentru secțiunea de beneficii */
.cipauto-benefits-section {
    width: 100%;
    margin-bottom: 24px;
}

.cipauto-benefits-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.cipauto-benefit-card {
    flex: 1;
    min-width: 160px;
    background-color: #00E5B9;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

/* .cipauto-benefit-card:hover {
    transform: translateY(-5px);
} */

.cipauto-benefit-icon {
    display: inline-block;
}

.cipauto-benefit-icon svg {
    width: 24px;
    height: 24px;
}

.cipauto-benefit-title {
    color: #000;
    font-family: Jost;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 14px;
    margin-bottom: 12px;
    margin-top: 12px;
}

.cipauto-benefit-description {
    color: #000;
    font-family: Jost;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

/* Responsive pentru secțiunea de beneficii */
@media (max-width: 1200px) {
    .cipauto-benefits-container {
        justify-content: center;
    }

    .cipauto-benefit-card {
        flex: 0 0 calc(33.33% - 16px);
    }
}

@media (max-width: 768px) {
    .cipauto-benefit-card {
        flex: 0 0 calc(33.33% - 16px);
        min-width: 107px;
        padding: 16px;
    }
    .cipauto-benefits-container {
        gap: 12px;
        /* margin: 0 -12px; */
        /* width: calc(100% + 24px); */
    }
    .cipauto-benefit-title {
        font-size: 16px;
        margin-bottom: 8px;
        margin-top: 2px;
    }
    .cipauto-benefit-description {
        font-size: 10px;
    }
}



/* Blog Pagination - același stil ca vehiculele */
.blog-layout #vehicles-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 24px 0 48px 0;
}

.blog-layout #vehicles-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    width: 100%;
}

.blog-layout #vehicles-pagination .numbers-container {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.blog-layout #vehicles-pagination .page-numbers li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-layout #vehicles-pagination .page-numbers a,
.blog-layout #vehicles-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid #3B00DD;
    color: #3B00DD;
    background: transparent;
}

.blog-layout #vehicles-pagination .page-numbers .current {
    border-color: #000000 !important;
    color: #000000 !important;
    background: transparent !important;
    font-weight: 600;
}

.blog-layout #vehicles-pagination .page-numbers a:hover {
    border-color: #000000;
    color: #000000;
    background: transparent;
}

.blog-layout #vehicles-pagination .page-numbers .prev,
.blog-layout #vehicles-pagination .page-numbers .next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #3B00DD;
    background: transparent;
    color: #3B00DD;
    font-size: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-layout #vehicles-pagination .page-numbers li:first-child {
    margin-right: auto;
}

.blog-layout #vehicles-pagination .page-numbers li:last-child {
    margin-left: auto;
}

.blog-layout #vehicles-pagination .page-numbers .prev:hover,
.blog-layout #vehicles-pagination .page-numbers .next:hover {
    border-color: #000000;
    background: transparent;
    color: #000000;
}

.blog-layout #vehicles-pagination .page-numbers .prev.disabled,
.blog-layout #vehicles-pagination .page-numbers .next.disabled {
    border-color: #000000;
    color: #000000;
    opacity: 0.2;
    cursor: not-allowed;
    pointer-events: none;
}

/* SVG SĂGEȚI */
.blog-layout #vehicles-pagination .page-numbers .prev::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg);
    width: 18px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9357 0.68042C12.8238 0.680447 12.7144 0.713873 12.6216 0.77642C12.5287 0.838967 12.4567 0.927792 12.4146 1.03153C12.3725 1.13527 12.3623 1.2492 12.3854 1.35875C12.4084 1.4683 12.4636 1.56848 12.5439 1.64648L15.3337 4.43628H1.31661C1.24207 4.43522 1.16806 4.449 1.09889 4.47679C1.02972 4.50459 0.966768 4.54585 0.913685 4.59819C0.860602 4.65053 0.818451 4.71289 0.78968 4.78166C0.76091 4.85043 0.746094 4.92423 0.746094 4.99878C0.746094 5.07332 0.76091 5.14713 0.78968 5.2159C0.818451 5.28467 0.860602 5.34703 0.913685 5.39937C0.966768 5.45171 1.02972 5.49297 1.09889 5.52077C1.16806 5.54856 1.24207 5.56233 1.31661 5.56128H15.3337L12.5439 8.35107C12.4899 8.40291 12.4468 8.46499 12.4171 8.53369C12.3874 8.60238 12.3718 8.67631 12.371 8.75115C12.3702 8.82598 12.3844 8.90022 12.4127 8.9695C12.441 9.03879 12.4828 9.10173 12.5357 9.15465C12.5886 9.20757 12.6516 9.2494 12.7209 9.27769C12.7902 9.30597 12.8644 9.32015 12.9392 9.31939C13.0141 9.31863 13.088 9.30295 13.1567 9.27326C13.2254 9.24357 13.2875 9.20047 13.3393 9.14648L17.0893 5.39648C17.1948 5.29099 17.254 5.14794 17.254 4.99878C17.254 4.84962 17.1948 4.70657 17.0893 4.60107L13.3393 0.851074C13.2869 0.797079 13.2241 0.754154 13.1548 0.724841C13.0855 0.695528 13.011 0.680423 12.9357 0.68042Z' fill='%233B00DD'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blog-layout #vehicles-pagination .page-numbers .next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9357 0.68042C12.8238 0.680447 12.7144 0.713873 12.6216 0.77642C12.5287 0.838967 12.4567 0.927792 12.4146 1.03153C12.3725 1.13527 12.3623 1.2492 12.3854 1.35875C12.4084 1.4683 12.4636 1.56848 12.5439 1.64648L15.3337 4.43628H1.31661C1.24207 4.43522 1.16806 4.449 1.09889 4.47679C1.02972 4.50459 0.966768 4.54585 0.913685 4.59819C0.860602 4.65053 0.818451 4.71289 0.78968 4.78166C0.76091 4.85043 0.746094 4.92423 0.746094 4.99878C0.746094 5.07332 0.76091 5.14713 0.78968 5.2159C0.818451 5.28467 0.860602 5.34703 0.913685 5.39937C0.966768 5.45171 1.02972 5.49297 1.09889 5.52077C1.16806 5.54856 1.24207 5.56233 1.31661 5.56128H15.3337L12.5439 8.35107C12.4899 8.40291 12.4468 8.46499 12.4171 8.53369C12.3874 8.60238 12.3718 8.67631 12.371 8.75115C12.3702 8.82598 12.3844 8.90022 12.4127 8.9695C12.441 9.03879 12.4828 9.10173 12.5357 9.15465C12.5886 9.20757 12.6516 9.2494 12.7209 9.27769C12.7902 9.30597 12.8644 9.32015 12.9392 9.31939C13.0141 9.31863 13.088 9.30295 13.1567 9.27326C13.2254 9.24357 13.2875 9.20047 13.3393 9.14648L17.0893 5.39648C17.1948 5.29099 17.254 5.14794 17.254 4.99878C17.254 4.84962 17.1948 4.70657 17.0893 4.60107L13.3393 0.851074C13.2869 0.797079 13.2241 0.754154 13.1548 0.724841C13.0855 0.695528 13.011 0.680423 12.9357 0.68042Z' fill='%233B00DD'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* HOVER States */
.blog-layout #vehicles-pagination .page-numbers .prev:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9357 0.68042C12.8238 0.680447 12.7144 0.713873 12.6216 0.77642C12.5287 0.838967 12.4567 0.927792 12.4146 1.03153C12.3725 1.13527 12.3623 1.2492 12.3854 1.35875C12.4084 1.4683 12.4636 1.56848 12.5439 1.64648L15.3337 4.43628H1.31661C1.24207 4.43522 1.16806 4.449 1.09889 4.47679C1.02972 4.50459 0.966768 4.54585 0.913685 4.59819C0.860602 4.65053 0.818451 4.71289 0.78968 4.78166C0.76091 4.85043 0.746094 4.92423 0.746094 4.99878C0.746094 5.07332 0.76091 5.14713 0.78968 5.2159C0.818451 5.28467 0.860602 5.34703 0.913685 5.39937C0.966768 5.45171 1.02972 5.49297 1.09889 5.52077C1.16806 5.54856 1.24207 5.56233 1.31661 5.56128H15.3337L12.5439 8.35107C12.4899 8.40291 12.4468 8.46499 12.4171 8.53369C12.3874 8.60238 12.3718 8.67631 12.371 8.75115C12.3702 8.82598 12.3844 8.90022 12.4127 8.9695C12.441 9.03879 12.4828 9.10173 12.5357 9.15465C12.5886 9.20757 12.6516 9.2494 12.7209 9.27769C12.7902 9.30597 12.8644 9.32015 12.9392 9.31939C13.0141 9.31863 13.088 9.30295 13.1567 9.27326C13.2254 9.24357 13.2875 9.20047 13.3393 9.14648L17.0893 5.39648C17.1948 5.29099 17.254 5.14794 17.254 4.99878C17.254 4.84962 17.1948 4.70657 17.0893 4.60107L13.3393 0.851074C13.2869 0.797079 13.2241 0.754154 13.1548 0.724841C13.0855 0.695528 13.011 0.680423 12.9357 0.68042Z' fill='%23000000'/%3E%3C/svg%3E");
}

.blog-layout #vehicles-pagination .page-numbers .next:hover::before {
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='10' viewBox='0 0 18 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.9357 0.68042C12.8238 0.680447 12.7144 0.713873 12.6216 0.77642C12.5287 0.838967 12.4567 0.927792 12.4146 1.03153C12.3725 1.13527 12.3623 1.2492 12.3854 1.35875C12.4084 1.4683 12.4636 1.56848 12.5439 1.64648L15.3337 4.43628H1.31661C1.24207 4.43522 1.16806 4.449 1.09889 4.47679C1.02972 4.50459 0.966768 4.54585 0.913685 4.59819C0.860602 4.65053 0.818451 4.71289 0.78968 4.78166C0.76091 4.85043 0.746094 4.92423 0.746094 4.99878C0.746094 5.07332 0.76091 5.14713 0.78968 5.2159C0.818451 5.28467 0.860602 5.34703 0.913685 5.39937C0.966768 5.45171 1.02972 5.49297 1.09889 5.52077C1.16806 5.54856 1.24207 5.56233 1.31661 5.56128H15.3337L12.5439 8.35107C12.4899 8.40291 12.4468 8.46499 12.4171 8.53369C12.3874 8.60238 12.3718 8.67631 12.371 8.75115C12.3702 8.82598 12.3844 8.90022 12.4127 8.9695C12.441 9.03879 12.4828 9.10173 12.5357 9.15465C12.5886 9.20757 12.6516 9.2494 12.7209 9.27769C12.7902 9.30597 12.8644 9.32015 12.9392 9.31939C13.0141 9.31863 13.088 9.30295 13.1567 9.27326C13.2254 9.24357 13.2875 9.20047 13.3393 9.14648L17.0893 5.39648C17.1948 5.29099 17.254 5.14794 17.254 4.99878C17.254 4.84962 17.1948 4.70657 17.0893 4.60107L13.3393 0.851074C13.2869 0.797079 13.2241 0.754154 13.1548 0.724841C13.0855 0.695528 13.011 0.680423 12.9357 0.68042Z' fill='%23000000'/%3E%3C/svg%3E");
}

.blog-layout #vehicles-pagination .page-numbers .dots {
    width: auto !important;
    height: auto !important;
    border: none !important;
    background: none !important;
    color: #3B00DD;
    font-size: 18px;
    font-weight: bold;
    cursor: default;
    padding: 0 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-layout #vehicles-pagination .page-numbers {
        gap: 15px;
    }
    
    .blog-layout #vehicles-pagination .numbers-container {
        gap: 4px;
    }
    
    .blog-layout #vehicles-pagination .page-numbers a,
    .blog-layout #vehicles-pagination .page-numbers span {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .blog-layout #vehicles-pagination .page-numbers .prev,
    .blog-layout #vehicles-pagination .page-numbers .next {
        width: 36px;
        height: 36px;
    }
}