@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Kanit", sans-serif;
    scroll-behavior: smooth;
}

/* Core business pages: hero load animation */
body:not(.is-page-loaded) .dealership-hero h1,
body:not(.is-page-loaded) .dealership-image-placeholder,
body:not(.is-page-loaded) .dealership-image-placeholder img {
    opacity: 0;
    transform: translateY(18px);
}

.dealership-hero h1,
.dealership-image-placeholder,
.dealership-image-placeholder img {
    transition:
        opacity 1200ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

body.is-page-loaded .dealership-hero h1 { transition-delay: 220ms; }
body.is-page-loaded .dealership-image-placeholder,
body.is-page-loaded .dealership-image-placeholder img { transition-delay: 520ms; }

/* Scroll reveal animations (Core pages) */
.reveal-section .reveal-item {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
    transition:
        opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
        transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-section.is-visible .reveal-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dealership-hero{
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 86px 20px 48px;
}

.dealership-hero__container{
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.dealership-hero h1{
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
}

.dealership-image-section{
    background-color: #ffffff;
    padding: 0 80px 76px;
}

.dealership-image-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.dealership-image-placeholder{
    width: 100%;
    min-height: auto;
}

.dealership-image-placeholder img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dealership-intro-section{
    background-color: #ffffff;
    padding: 50px 80px 72px;
}

.dealership-intro-section__container{
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
    gap: 56px;
    align-items: start;
}

.dealership-intro-section h2{
    color: #0a0a0a;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
    font-weight: 500;
    text-transform: uppercase;
}

.dealership-intro-section p{
    color: #0a0a0a;
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 300;
}

.dealership-intro-section__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-width: 126px;
    height: 38px;
    padding: 0 16px;
    background: #0a0a0a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    margin-top: 0;
}

.dealership-intro-section__cta:hover{
    background: #f1f1f1;
    color: #0a0a0a;
}

.dealership-intro-cta-section{
    background-color: #ffffff;
    padding: 0 80px 44px;
}

.dealership-intro-cta-section .dealership-intro-section__container{
    display: flex;
    justify-content: center;
}

.dealership-benefits-section{
    background-color: #f1f1f1;
    padding: 58px 80px 70px;
}

.dealership-benefits-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.dealership-benefits-section h2{
    color: #0a0a0a;
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.1;
    text-transform: uppercase;
    text-align: center;
    font-weight: 500;
    margin: 0 0 26px;
}

.dealership-benefits-grid{
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.dealership-benefit-chip{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 calc((100% - 30px) / 3);
    max-width: calc((100% - 30px) / 3);
    min-height: 52px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid transparent;
    color: #1a1a1a;
    font-size: 1.2rem;
    line-height: 1.25;
    font-weight: 300;
    text-align: center;
}

.dealership-carousel-section{
    background-color: #ffffff;
    padding: 50px 80px 64px;
}

.dealership-carousel-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.dealership-carousel__viewport{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.dealership-carousel__viewport::-webkit-scrollbar{
    display: none;
}

.dealership-carousel__card{
    flex: 0 0 calc((80% - 18px) / 2);
    min-height: 560px;
    background-color: #cecece;
    scroll-snap-align: start;
}

.dealership-carousel__card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dealership-carousel__actions{
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
}

.dealership-carousel__arrow{
    width: 58px;
    height: 58px;
    border: 0;
    background-color: #f1f1f1;
    color: #0a0a0a;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.dealership-carousel__arrow:hover{
    background-color: #000000;
    color: #ffffff;
}

.dealership-about-section{
    background-color: #ffffff;
    padding: 60px 80px 72px;
}

.dealership-about-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.dealership-about-section p{
    color: #0a0a0a;
    font-size: 1.2rem;
    line-height: 1.45;
    font-weight: 300;
}

.dealership-about-section p + p{
    margin-top: 26px;
}

/* Export-ready vehicle cards */
.export-ready-section{
    background: #f1f1f1;
    padding: 50px 80px 72px;
}

.export-ready-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.export-ready-section__title{
    margin: 0 0 40px;
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    color: #0a0a0a;
    text-transform: uppercase;
}

.export-ready-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.export-ready-card{
    background: #ffffff;
    border: 1px solid #ececec;
    padding: 20px;
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 20px;
}

.export-ready-card__media{
    min-height: 170px;
    background: #d9d9d9;
}

.export-ready-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.export-ready-card__content{
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.export-ready-card__head{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.export-ready-card__name{
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    color: #0a0a0a;
    text-transform: uppercase;
}

.export-ready-card__brand{
    min-width: 118px;
    text-align: right;
}

.export-ready-card__brand img{
    max-width: 180px;
    width: 100%;
    height: auto;
}

.export-ready-card__specs{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
}

.export-ready-card__specs p{
    margin: 0;
    color: #242424;
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 300;
}

.export-ready-card__specs strong{
    font-weight: 500;
    color: #101010;
}

.export-ready-card__footer{
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.export-ready-card__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    height: 32px;
    padding: 0 14px;
    background: #76b72a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
}

.export-ready-card__cta:hover{
    background: #6aa624;
}

.export-ready-empty{
    margin: 0;
    padding: 16px;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    color: #444444;
}

/* Rental fleet cards */
.rental-fleet-section{
    background: #f1f1f1;
    padding: 56px 80px 76px;
}

.rental-fleet-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.rental-fleet-section__title{
    margin: 0 0 40px;
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    color: #0a0a0a;
    text-transform: uppercase;
}

.rental-fleet-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.rental-fleet-card{
    background: #ffffff;
    border: 1px solid #e4e4e4;
    padding: 15px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
}

.rental-fleet-card__media{
    background: #d9d9d9;
    min-height: 190px;
}

.rental-fleet-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rental-fleet-card__content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rental-fleet-card__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rental-fleet-card__name{
    margin: 0;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #101010;
}

.rental-fleet-card__brand{
    min-width: 130px;
    text-align: right;
}

.rental-fleet-card__brand img{
    max-width: 130px;
    max-height: 40px;
    width: auto;
    height: auto;
}

.rental-fleet-card__brand span{
    font-size: 0.85rem;
    color: #444444;
    text-transform: uppercase;
}

.rental-fleet-card__specs{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
}

.rental-fleet-card__specs p{
    margin: 0;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.3;
    color: #0a0a0a;
}

.rental-fleet-card__specs strong{
    font-weight: 500;
    color: #151515;
}

.rental-fleet-card__badges{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rental-fleet-card__badge{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #efefef;
    border: 1px solid #e0e0e0;
    padding: 6px 10px;
    font-size: 0.8rem;
    line-height: 1.2;
    color: #2a2a2a;
}

.rental-fleet-card__footer{
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.rental-fleet-card__price{
    margin: 0;
    color: #101010;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
}

.rental-fleet-card__price span{
    font-size: 1.8rem;
    font-weight: 500;
}

.rental-fleet-card__price small{
    font-size: 1rem;
    font-weight: 400;
    margin-left: 4px;
}

.rental-fleet-card__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    height: 34px;
    padding: 0 14px;
    background: #76b72a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
}

.rental-fleet-card__cta:hover{
    background: #6aa624;
}

.rental-fleet-empty{
    margin: 0;
    padding: 16px;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    color: #444444;
}

/* Used car collection cards */
.used-collection-section{
    background: #f1f1f1;
    padding: 56px 80px 76px;
}

.used-collection-section__container{
    max-width: 1700px;
    margin: 0 auto;
}

.used-collection-section__title{
    margin: 0 0 40px;
    font-size: clamp(1.75rem, 3vw, 3rem);
    line-height: 1.1;
    font-weight: 500;
    color: #0a0a0a;
    text-transform: uppercase;
}

.used-collection-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.used-collection-card{
    background: #ffffff;
    border: 1px solid #e4e4e4;
    padding: 15px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
}

.used-collection-card__media{
    background: #d9d9d9;
    min-height: 190px;
}

.used-collection-card__media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.used-collection-card__content{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.used-collection-card__head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.used-collection-card__name{
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #101010;
}

.used-collection-card__brand{
    min-width: 130px;
    text-align: right;
}

.used-collection-card__brand img{
    max-width: 180px;
    max-height: 50px;
    width: auto;
    height: auto;
}

.used-collection-card__brand span{
    font-size: 0.85rem;
    color: #2e2e2e;
    text-transform: uppercase;
}

.used-collection-card__specs{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 14px;
}

.used-collection-card__specs p{
    margin: 0;
    font-size: 1rem;
    line-height: 1.3;
    color: #0a0a0a;
    font-weight: 300;
}

.used-collection-card__specs p:last-child{
    grid-column: 1 / -1;
}

.used-collection-card__specs strong{
    font-weight: 500;
    color: #151515;
}

.used-collection-card__footer{
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.used-collection-card__cta{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 102px;
    height: 34px;
    padding: 0 14px;
    background: #76b72a;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
}

.used-collection-card__cta:hover{
    background: #6aa624;
}

.used-collection-empty{
    margin: 0;
    padding: 16px;
    border: 1px solid #dfdfdf;
    background: #ffffff;
    color: #444444;
}

/* Brands we represent */
.about-brands {
    padding: 4rem 2rem 4.5rem;
    color: #ffffff;
    background: radial-gradient(1200px 600px at 15% 30%, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 60%),
        linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
}

.about-brands__inner {
    max-width: 1700px;
    margin: 0 auto;
    padding-bottom: 40px;
}

.about-brands__title {
    margin: 0 0 2.25rem 0;
    font-size: clamp(1.35rem, 2.2vw, 3rem);
    font-weight: 500;
    padding-bottom: 40px;
    text-transform: uppercase;
}

.about-brands__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.25rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.about-brands__logo img {
    width: 300px;
    object-fit: cover;
    display: block;
}

/* Brands – tablet */
@media (max-width: 992px) {
    .about-brands {
        padding: 3.25rem 1.5rem 3.75rem;
        text-align: center;
    }

    .about-brands__title {
        font-size: 2rem;
    }
}

/* Brands – mobile */
@media (max-width: 576px) {
    .about-brands {
        padding: 2.75rem 1rem 3.25rem;
    }

    .about-brands__logos {
        gap: 1rem;
    }

    .about-brands__logo img{
        width: 200px;
    }
} 

@media (max-width: 992px){
    .dealership-hero{
        padding: 72px 20px 36px;
    }

    .dealership-hero h1{
        font-size: 2.35rem;
    }

    .dealership-image-section{
        padding: 0 30px 62px;
    }

    .dealership-image-placeholder{
        min-height: auto;
    }

    .dealership-intro-section{
        padding: 0 30px 60px;
    }

    .dealership-intro-section__container{
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dealership-intro-section h2{
        font-size: 2.2rem;
    }

    .dealership-intro-section p{
        font-size: 1.2rem;
    }

    .dealership-intro-cta-section{
        padding: 0 30px 38px;
    }

    .dealership-benefits-section{
        padding: 44px 30px 56px;
    }

    .dealership-benefits-section h2{
        font-size: 2.3rem;
        margin-bottom: 20px;
    }

    .dealership-benefits-grid{
        max-width: 820px;
        gap: 12px;
    }

    .dealership-benefit-chip{
        flex-basis: calc((100% - 12px) / 2);
        max-width: calc((100% - 12px) / 2);
        min-height: 46px;
        font-size: 1.2rem;
    }

    .dealership-carousel-section{
        padding: 0 30px 54px;
    }

    .dealership-carousel__viewport{
        gap: 14px;
    }

    .dealership-carousel__card{
        flex-basis: min(78vw, 440px);
        min-height: 420px;
    }

    .dealership-carousel__arrow{
        width: 52px;
        height: 52px;
        font-size: 1.85rem;
    }

    .dealership-about-section{
        padding: 40px 30px 56px;
    }

    .dealership-about-section p{
        font-size: 1.28rem;
        line-height: 1.5;
    }

    .export-ready-section{
        padding: 40px 30px 56px;
    }

    .export-ready-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .export-ready-card{
        grid-template-columns: 220px 1fr;
    }

    .export-ready-card__name{
        font-size: 1.6rem;
    }

    .rental-fleet-section{
        padding: 48px 30px 62px;
    }

    .rental-fleet-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .rental-fleet-card{
        grid-template-columns: 200px 1fr;
    }

    .rental-fleet-card__name{
        font-size: 1.6rem;
    }

    .rental-fleet-card__price{
        font-size: 1.9rem;
    }

    .rental-fleet-card__price span{
        font-size: 1.5rem;
    }

    .used-collection-section{
        padding: 48px 30px 62px;
    }

    .used-collection-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .used-collection-card{
        grid-template-columns: 200px 1fr;
    }

    .used-collection-card__name{
        font-size: 1.6rem;
    }

    .dealership-brands-section{
        padding: 50px 30px 56px;
    }

    .dealership-brands-section__container{
        gap: 26px;
    }

    .dealership-brand{
        min-height: 74px;
    }

    .dealership-brand img{
        height: 38px;
    }
}

@media (max-width: 640px){
    .dealership-hero{
        padding: 56px 20px 28px;
    }

    .dealership-hero h1{
        font-size: 1.68rem;
        line-height: 1.2;
    }

    .dealership-image-section{
        padding: 0 20px 44px;
    }

    .dealership-image-placeholder{
        min-height: auto;
    }

    .dealership-intro-section{
        padding: 0 20px 42px;
    }

    .dealership-intro-section__container{
        gap: 14px;
    }

    .dealership-intro-section h2{
        font-size: 1.62rem;
        line-height: 1.2;
    }

    .dealership-intro-section p{
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .dealership-intro-cta-section{
        padding: 0 20px 30px;
    }

    .dealership-intro-section__cta{
        min-width: 112px;
        height: 34px;
        font-size: 0.85rem;
    }

    .dealership-benefits-section{
        padding: 34px 20px 42px;
    }

    .dealership-benefits-section h2{
        font-size: 1.7rem;
        margin-bottom: 14px;
    }

    .dealership-benefits-grid{
        gap: 10px;
    }

    .dealership-benefit-chip{
        flex-basis: 100%;
        max-width: 100%;
        min-height: 42px;
        font-size: 0.95rem;
        padding: 10px 12px;
    }

    .dealership-carousel-section{
        padding: 0 20px 38px;
    }

    .dealership-carousel__viewport{
        gap: 10px;
    }

    .dealership-carousel__card{
        flex-basis: 84vw;
        min-height: 300px;
    }

    .dealership-carousel__actions{
        margin-top: 10px;
    }

    .dealership-carousel__arrow{
        width: 44px;
        height: 44px;
        font-size: 1.55rem;
    }

    .dealership-about-section{
        padding: 30px 20px 40px;
    }

    .dealership-about-section p{
        font-size: 0.98rem;
        line-height: 1.6;
    }

    .dealership-about-section p + p{
        margin-top: 16px;
    }

    .export-ready-section{
        padding: 40px 20px 42px;
    }

    .export-ready-section__title{
        margin-bottom: 20px;
        font-size: 1.95rem;
    }

    .export-ready-card{
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }

    .export-ready-card__media{
        min-height: 180px;
    }

    .export-ready-card__head{
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .export-ready-card__brand{
        min-width: 0;
        text-align: left;
    }

    .export-ready-card__name{
        font-size: 1.35rem;
        padding-top: 10px;
    }

    .export-ready-card__specs{
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .export-ready-card__specs p{
        font-size: 0.95rem;
    }

    .export-ready-card__cta{
        min-width: 90px;
        height: 32px;
        font-size: 0.85rem;
    }

    .rental-fleet-section{
        padding: 42px 20px 56px;
    }

    .rental-fleet-section__title{
        margin-bottom: 18px;
        font-size: 1.95rem;
    }

    .rental-fleet-card{
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }
    .rental-fleet-card__name {
        padding-top: 10px;
    }

    .rental-fleet-card__media{
        min-height: 180px;
    }

    .rental-fleet-card__head{
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .rental-fleet-card__brand{
        min-width: 0;
        text-align: left;
    }

    .rental-fleet-card__specs{
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .rental-fleet-card__name{
        font-size: 1.35rem;
    }

    .rental-fleet-card__specs p{
        font-size: 0.95rem;
    }

    .rental-fleet-card__badges{
        gap: 6px;
    }

    .rental-fleet-card__badge{
        font-size: 0.75rem;
        padding: 5px 8px;
    }

    .rental-fleet-card__footer{
        align-items: flex-end;
    }

    .rental-fleet-card__price{
        font-size: 1.6rem;
    }

    .rental-fleet-card__price span{
        font-size: 1.15rem;
    }

    .rental-fleet-card__price small{
        font-size: 0.85rem;
    }

    .rental-fleet-card__cta{
        min-width: 90px;
        height: 32px;
        font-size: 0.85rem;
    }

    .used-collection-section{
        padding: 42px 20px 56px;
    }

    .used-collection-section__title{
        margin-bottom: 18px;
        font-size: 1.95rem;
    }

    .used-collection-card{
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }

    .used-collection-card__media{
        min-height: 180px;
    }

    .used-collection-card__head{
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .used-collection-card__brand{
        min-width: 0;
        text-align: left;
    }

    .used-collection-card__specs{
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .used-collection-card__specs p:last-child{
        grid-column: auto;
    }

    .used-collection-card__name{
        font-size: 1.35rem;
        padding-top: 10px;
    }

    .used-collection-card__specs p{
        font-size: 0.95rem;
    }

    .used-collection-card__cta{
        min-width: 90px;
        height: 32px;
        font-size: 0.85rem;
    }

    .dealership-brands-section{
        padding: 50px 20px 42px;
    }

    .dealership-brands-section__container{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .dealership-brand{
        min-height: 56px;
    }

    .dealership-brand img{
        height: 30px;
    }

    .dealership-brand__fallback{
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section .reveal-item,
    body:not(.is-page-loaded) .dealership-hero h1,
    body:not(.is-page-loaded) .dealership-image-placeholder,
    body:not(.is-page-loaded) .dealership-image-placeholder img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}