@import '/styles/global.css';
@import '/styles/HeaderManager.css';
@import '/styles/FooterManager.css';
@import '/styles/SignupElement.css';
@import '/styles/PTCarousel.css';
@import '/styles/CookieConsent/CookieConsent.css';
@import '/styles/CookieConsent/CookiePreferences.css';

/* ------------ */
/*  Public Transit Hero Section */
/* ------------ */
.public-transit-hero-section {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background-color: var(--color-black);
}

/* Large desktop screens: moderate height */
.public-transit-hero-image {
    position: relative;
    min-height: 500px;
    max-height: 55vh;
    background-image: url('/assets/images-v3/Hero_Public_Transportation.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
}
.public-transit-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 0.0) 50%
    );
    z-index: 1; /* sits above background, below content */
}
.public-transit-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding-inline: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: clamp(3rem, 8vh, 6rem);
}
.hero-title {
    font-size: clamp(1rem, 1vw, 1.4rem);
    max-width: 50%;
    color: var(--color-white);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-left: 0; 
}
.public-transit-hero-content h1 {
    max-width: 50%;
    color: var(--color-white);
    margin-left: 0; 
    font-weight: 500;
    padding-bottom: 30px;
}
.public-transit-hero-content p {
    max-width: 45%;
    color: var(--color-white);
    margin-left: 0;
}

/*------------*/
.public-transit-hero-navigation-section {
    background-color: var(--color-blue-nav-carousel);
    height: 55px;
    display: flex; 
    width: 100%;
    margin: 0 auto;
}
.public-transit-hero-navigation-section.is-sticky {
    position: fixed;
    top: 105px; /* your header height */
    left: 0;
    width: 100%;
    z-index: 50;
}
/*------------*/
.public-transit-sub-nav {
    max-width: 1500px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 auto;
    padding-inline: 120px; 
}
.public-transit-sub-nav a {
    margin-left: 0;
    margin-right: 26px;
    text-decoration: none;
    position: relative;
    padding-bottom: 1px;
}
.public-transit-sub-nav a:last-child {
    margin-right: 0px;
}
.public-transit-sub-nav a h5 {
    color: var(--color-white);
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: .8rem;
    margin: 0;
}
.public-transit-sub-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-underline-cta);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.public-transit-sub-nav a:not(.active):hover::after {
    transform: scaleX(1);
}

.public-transit-sub-nav a.active::after {
    transform: scaleX(1);
}


/* ------------ */
/*  Overview — AURA for Public Tansportation  */
/* ------------ */

.public-transit-overview-background {
    width: 100%;
}

.public-transit-overview-section {
    max-width: 1500px;
    padding: 80px 120px;
    margin: 0 auto; /* ADD THIS - centers the section */ 
}

.what-is-aura {
    display: flex;
    align-items: center;
}
.aura-transportation-text {
    width: 60%;
    padding-right: 50px;
}

/*------------*/
.inline-links {
    margin-left: 0;
}
.inline-links a {
    color: var(--color-underline-cta);
    font-weight: 700;
}
.inline-links a:hover {
    text-decoration: underline !important;
}
.inline-link-1 {
    margin-right: 40px;
}

.external-link {
    color: var(--color-underline-cta);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.external-link:hover {
    text-decoration: underline !important;
}
.external-link img {
    vertical-align: middle;
    width: 13px;
    margin-left: 4px;
}
/*------------*/
.aura-transportation-image {
    width: 40%;
}


/* ------------ */
/*  Hands-Free Fare Collection (Be-In/Be-Out)  */
/* ------------ */

.bein-beout {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
    padding-inline: 20px;
}
.bein-beout-content h5 {
    text-align: center;
    padding-top: 30px;
}
.bein-beout-content h2 {
    text-align: center;
    padding-bottom: 20px;
}
.bein-beout-text {
    margin: 0 auto;
}
.bein-beout-assets {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bein-beout-list {
    display: inline-flex;
    list-style: none;
    padding-block: 30px 20px;
    margin: 0 auto;
}


.bein-beout-list li {
    position: relative;
    padding-left: 1.5rem; /* spacing between icon and text */
    padding-right: 3rem; /* spacing between icon and text */
    padding-bottom: 5px;
    font-weight: 700;
}

.bein-beout-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3em;

    width: 1rem;
    height: 1rem;

    background: url("/assets/icons-v3/Black_Checkmark.svg") no-repeat center;
    background-size: contain;
}
.bein-beout a:hover {
    text-decoration: underline;
}

/* ------------ */
/* Grey Card Containers */
/* ------------ */
.grey-card-container {
    text-align: center;
    width: 100%;
    max-width: 1500px;
    padding: 0px 120px 50px 120px;
    margin: auto;
}
.grey-card-container h2 {
    max-width: 600px;
}
.grey-card-container p {
    max-width: 900px;
}
.card-grid {
    max-width: 1500px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    box-sizing: border-box;
    gap: 0;
    padding-top: 30px;
}
.card-item-1 {
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    grid-column: 1 / 2;
    grid-row: 1 / 2; 
    margin-right: 25px;
    margin-bottom: 25px;
}
.card-item-2 {
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin-right: 25px;
}
.card-item-3 {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    width: 100%;
    background-color: var(--color-grey-card-bckgrnd);
    border-radius: 20px;
    padding: 60px 60px 0px 60px;
}


.card-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    box-sizing: border-box;
}
.card-item h3 {
    font-weight: 700;
    
    
}
.enlarged h2,
.enlarged p {
    transform: scale(1.1); /* Enlarge text by 10% */
}
.card-title {
    font-weight: 500;
    text-transform: capitalize;
    color: var(--color-black);
    padding-bottom: 20px;
    text-align: left;
    margin-left: 0;
    line-height: 1.4;
}
.card-text {
    color: var(--color-black);
    text-align: left;
}

.card-item-flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 40px 0px 40px;
}

.card-item-flex-top h3 {
    font-weight: 700;    
}
.card-item-flex-top p {
    padding-bottom: 20px;
}
.card-item-flex-bottom {
    display: flex;
    align-items: flex-end;
    width: 100%;
}
.card-item-flex-bottom img {
    width: auto;
  min-height: 200px;
  max-height: 250px;
  height: auto; /* Optional but good to include */
}

/* ------------ */
/*  Communication — Context-Aware Messaging (Offline-Capable)  */
/* ------------ */

.communication-background {
    width: 100%;
}

.communication-section {
    max-width: 1500px;
    padding: 80px 120px;
    margin: 0 auto; /* ADD THIS - centers the section */ 
}

.offline-capable {
    display: flex;
    align-items: center;
    gap: 20px
}
.offline-capable-text {
    width: 60%;
}

/*------------*/
.inline-links {
    margin-left: 0;
}
.inline-links a {
    color: var(--color-underline-cta);
    font-weight: 700;
}
.inline-links a:hover {
    text-decoration: underline !important;
}
.inline-link-1 {
    margin-right: 40px;
}

.external-link {
    color: var(--color-underline-cta);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.external-link:hover {
    text-decoration: underline !important;
}
.external-link img {
    vertical-align: middle;
    width: 13px;
    margin-left: 4px;
}
/*------------*/
.offline-capable-image-desktop {
    width: 40%;
}
.offline-capable-image-mobile {
    display: none;
}

/* ------------ */
/*--- Analytics - Know Where Every Passenger Goes---*/
/* ------------ */
.full-width {
    background-color: #f7f8f9;
    height: fit-content;
}
.analytic-content {
    max-width: 1500px;
    padding: 60px 120px;
    display: flex;
    column-gap: 70px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.analytic-text {
    width: 50%;
}
.analytic-text img {
    display: none;
}
.analytic-image {
    width: 50%;
}


/* ------------ */
/*  Navigation - Validation  */
/* ------------ */
.nav-val-section {
    max-width: 1500px;
    padding-inline: 120px;
    margin: 0 auto;
}
/* -----------*/ 
.nav-val-assets {
    display: flex;
    gap: 50px;
    max-width: 1500px;
    align-items: stretch; /* key for equal height */
    padding-top: 50px;
}

.nav-val-asset-box {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* background: var(--color-white);
    box-shadow: var(--box-shadow-light-grey);
    border-radius: 8px; */
}
.nav-val-asset-box img {
    width: 100%;
    padding-bottom: 30px;
    margin-left: 0;
}
.nav-val-asset-box h5 {
    padding-bottom: 0;
}
.nav-val-asset-box h3 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    padding-block: 15px;
    text-align: left;
    margin-left: 0;
}
.nav-val-asset-box p {
    margin: auto;
    text-align: left;
    margin-left: 0;
}
.nav-val-asset-box .transparent-cta-button {
    margin-left: 0;
}
.last-p {
    padding-bottom: 26px;
}
/* ------------ */
/* Benefits - Improve Rider Experiences */
/* ------------ */
.transit-benefits-background {
    max-width: 1500px;
    padding: 160px 120px 0px;
    text-align: center;
    margin: 0 auto;
}
.transit-benefits-section {
    padding-top: 40px;
}

/*------------------*/
/*  A New Standard in Transit Wayfinding   */

.transit-wayfinding {
    max-width: 1500px;
    padding: 80px 120px; 
}
.transit-wayfinding--text {
    width: 100%;
}
.transit-wayfinding--text h2 {
    line-height: 1.4;
}
.transit-wayfinding--text h2,
.transit-wayfinding--text p {
    padding-right: 20px;
}
.transit-wayfinding--table-mobile {
    display: none;
}
.transit-wayfinding--table-desktop {
    width: 100%;
    padding-top: 10px;
}

/*---   Table   -----*/
table {
    border-collapse: separate;
    border-spacing: 0; /* prevent gaps */
    border: 1px solid var(--color-grey-dividers);
    border-radius: 10px;
    overflow: hidden; /* makes the radius clip child backgrounds */
    margin-left: 0;
    margin-right: 0;
    width: 100%;

}

thead th {
    font-weight: 700;
    height: 50px;
    background-color: white;
    padding-inline: 5px;
    text-align: left;
}
tbody th {
    font-size: .8rem;
    font-weight: 500;
    color: var(--color-blue-nav-carousel);
    min-height: 40px;
    padding: 20px 10px;
}

tr:nth-last-of-type(odd){
    background-color: var(--color-grey-card-bckgrnd);
}
td {
    text-align: left;
    font-size: .8rem;
    width: 35%;
}
.cell-content {
    display: inline-flex;
    align-items: center;  /* vertically center icon + text */
    gap: 1rem;          /* spacing between icon and text */
    margin-right: 10px;
  }
  
  .cell-content img {
    width: 18px;          /* keep icons consistent */
    height: 18px;
  }
th[scope="row"] {
    width: 20%;
    text-align: left;
    padding-left: 30px;
    margin-right: 20px;
}

  
  /* -----------*/
  


/* ------------ */
/*  Start Building Today  */
/* ------------ */
.start-today-section {
    max-width: 1500px;
    padding: 160px 120px 160px;
    margin: 0 auto;
}
.get-started {
    display: flex;
    align-items: center;
    gap: 35px;
}
.get-started-text {
    width: 60%;
}
.get-started h5 {
    padding-bottom: 10px;
    font-weight: 700;
    font-family: "Inter", sans-serif;
    font-size: .8rem;
}
.get-started-text p {
    padding-bottom: 20px;
}
.get-started-text img {
    max-width: 60%;
    min-width: 400px;
    margin-left: 0;
    padding-bottom: 20px;
}
.get-started-image {
    width: 40%;
}
.started-icon-images-mobile {
    display: none;
}
.get-started-image img {
    width: 100%;
}
.started-inline-btns-mobile {
    display: none;
}

.transform-text-temp {
    color: var(--color-underline-cta);
    text-decoration: underline;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    margin-top: auto;
    margin-inline: auto;
}

.transform-text-temp::before {
    content: 'Learn More';
}

.transform-text-temp:hover::before {
    content: 'Coming Q1 2026';
}

.transform-text-temp:hover {
    color: var(--color-black);
    text-decoration: none;
}



/*--------------*/
/*----  Frequently Asked Questions SECTION --------------*/
/*--------------*/
.faq-container {
    max-width: 1500px;
    margin: auto;
    margin-block: 100px;
    padding-inline: 120px;
  }
  .faq-container h2 {
      text-align: center;
      text-transform: capitalize;
      padding-top: 30px;
      padding-bottom: 20px;
  }
  
  /*------------------*/
  .faq__accordion {
        border-bottom: 1px solid #011038;
  }
  .faq__accordion.active .panel {
        max-height: 300px;
        animation: fade 0.5s ease-in-out;
  }
  
  .faq__accordion-title {
        margin-left: 0;
        margin-right: 0;
        padding: 18px 0px;
        cursor: pointer;
        transition: 0.4s;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-left: 0;
    }
    .faq__accordion-title h4 {
        margin-left: 0;
        margin-right: 20px;
        font-family: "Inter";
        font-weight: 700;
        text-transform: normal;
    }
    .faq__accordion-title svg {
        margin-right: 20px;
    }
    .faq__accordion.active svg {
        transform: rotate(180deg);
    }
    svg {
        transition: transform 0.5s ease-in;
    }
   
    .faq__accordion p {
        font-family: 'Inter';
        font-size: .3rem;
        padding: 30px 0px;   
    }
    
    .panel {
        padding: 0px;
        margin: auto;
        max-height: 0;
        overflow: hidden;
        transition: 0.5s ease-in;
    }

    .faq__accordion .panel p {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        padding: 0px 0px 20px 0px;
    }

    .faq__accordion .panel ul {
        padding-left: 20px;
        margin: 0;
    }

    .faq__accordion .panel li {
        font-family: "Inter", sans-serif;
        font-size: 1rem;
        padding-bottom: 7px;
        list-style: disc;
        list-style-position: outside;
        margin-left: 0;
    }

    @keyframes fade {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0px);
      }
    }



@media (max-width: 1440px) {
    .public-transit-hero-image {
        max-height: 60vh;
        min-height: 650px;
    }
   
    /*------------------*/
    /*  A New Standard in Transit Wayfinding   */
    /*---   Table   -----*/
    th[scope="row"] {
        width: 170px;
        text-align: left;
        padding-left: 10px;
    }
    
}



@media (max-width: 1024px) {

    /* ------------ */
    /*  Public Transit Hero Section */
    /* ------------ */

    .public-transit-hero-content {
        padding-inline: 20px;
    }
    .public-transit-sub-nav {
        padding-inline: 20px;
    }


    /* ------------ */
    /*  Overview — AURA for Public Tansportation  */
    /* ------------ */
    .public-transit-overview-section {
        max-width: 1500px;
        padding: 50px 20px; 
    }
    /*----------------*/
    /*  Hands-Free Container*/
    /*----------------*/
    .bein-beout-list {
        display: block;
        text-align: center;
        list-style: none;
        padding-block: 30px 20px;
        margin: 0 auto;
    }
    
    .bein-beout-list li {
        position: relative;
        display: block;
        width: fit-content;  /* shrinks to text width */
        margin: 0 auto;      /* centers the block */
        padding-left: 1.5rem;
    }
    
    .bein-beout-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0.3em;
        width: 1rem;
        height: 1rem;
        background: url("/assets/icons-v3/Black_Checkmark.svg") no-repeat center;
        background-size: contain;
    }
    /* ------------ */
    /* Grey Card Containers */
    /* ------------ */
    .grey-card-container {
        padding: 0px 20px 50px 20px;
    }
    .card-item {
        padding: 30px;
    }
    .card-item-flex {
        padding: 30px 30px 0px 30px;
    }

    /* ------------ */
    /*--- Analytics - Know Where Every Passenger Goes---*/
    /* ------------ */
    .analytic-content {
        padding: 60px 20px;
        column-gap: 20px;
    }

    /* ------------ */
    /*  Communication — Context-Aware Messaging (Offline-Capable)  */
    /* ------------ */
    .communication-section {
        max-width: 1500px;
        padding-inline: 20px;
        margin: 0 auto; /* ADD THIS - centers the section */ 
    }

    /* ------------ */
    /*  Navigation - Validation  */
    /* ------------ */
    .nav-val-background {
        padding-top: 120px;
        background-image: none;
    }
    .nav-val-section {
        padding-inline: 20px; 
    }
    /* -----------*/ 
    .nav-val-assets {
        gap: 20px;
    }
    

    /* ------------ */
    /* Benefits - Improve Rider Experiences */
    /* ------------ */
    .transit-benefits-background {
        padding: 80px 20px 0px;
        margin-top: 30px;
    }
    .transit-benefits-section {
        background-color: none;
        padding-inline: 0;
        padding-top: 0px;
    }
    .transit-benefits-section h2 {
        padding-bottom: 20px;
    }
    /*--------------*/
    /* A New Standard in Transit Wayfinding   */
   
    th[scope="row"] {
        width: 120px;
        padding-left: 10px;
    }

    
    
    /* ------------ */
    /*  Start Building Today  */
    /* ------------ */
    .start-today-section {
        max-width: 1500px;
        padding: 80px 20px 160px;
    }
    .get-started {
        display: flex;
        align-items: center;
        gap: 35px;
    }
    .get-started-text {
        width: 50%;
    }
    .get-started-text img {
        max-width: 50%;
        min-width: 350px;

    }
    .get-started-image {
        width: 50%;
    }
    .inline-btns a {
        margin-right: 30px;
    }


    /*--------------*/
    /*----  Frequently Asked Questions SECTION --------------*/
    /*--------------*/
    .faq-container {
        padding-inline: 20px;
    }

}





 /* SMALLER TABLETS LARGE PHONES  */
@media (max-width: 768px) {
    /* ------------ */
    /*  Public Transit Hero Section */
    /* ------------ */
    .public-transit-hero-section {
        min-height: 45svh;
        display: flex;
        flex-direction: column;
        background-color: transparent; /* Remove black background on mobile */
    }
    .public-transit-hero-image {
        flex: 1;
        min-height: 45vh;
        max-height: 1000px;
        background-position: bottom;
    }
    .public-transit-hero-image::before {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0.0) 50%
        );
    }
    .hero-title {
        font-weight: 700;
        text-align: center;
        margin-inline: auto;
        font-size: 2rem;
        line-height: 1.5;
        max-width: 450px;
        padding-bottom: 0%;
    }
    .public-transit-hero-content h1 {
        display: none;
    }
    .public-transit-hero-content p {
        display: none;
    }
    .public-transit-hero-content a {
        display: none;
    }

   /* for mobile-leading-text see global.css */

    .public-transit-hero-navigation-section {
        height: 30px;
    }
    .public-transit-sub-nav {
        display: none;
    }
   

    /* ------------ */
    /*  Overview — AURA for Public Tansportation  */
    /* ------------ */
    .public-transit-overview-section {
        padding: 0px 20px;
    }

    
    .bein-beout-list li {
        position: relative;
        padding-left: 1.5rem; /* spacing between icon and text */
        padding-right: 0; /* spacing between icon and text */
        padding-bottom: 5px;
        font-weight: 700;
    }
    
    
    /* ------------ */
    /* Benefits - Improve Rider Experiences */
    /* ------------ */
    .transit-benefits-background {
        padding: 80px 20px 0px;
        margin-top: 0px;
    }
    .transit-wayfinding--table {
        width: 100%;
    }
    /*---   Table   -----*/
    caption {
        caption-side: bottom;
        font-weight: bold;
    }
    table {
        border-collapse: separate;
        border-spacing: 0; /* prevent gaps */
        border: 1px solid var(--color-grey-dividers);
        border-radius: 10px;
        overflow: hidden; /* makes the radius clip child backgrounds */
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    thead th {
        font-weight: 700;
        height: 50px;
        background-color: white;
        text-align: center;
    }
    tbody th {
        font-size: .8rem;
        font-weight: 500;
        color: var(--color-blue-nav-carousel);
        min-height: 40px;
        padding: 20px 10px;
    }

    tr:nth-last-of-type(even){
        background-color: var(--new-light-green-backgrd);
    }
    td {
        text-align: left;
    }
    th[scope="row"] {
        width: 120px;
        text-align: left;
        padding-left: 30px;
    }



    /*------------------*/
    /*  A New Standard in Transit Wayfinding   */

    .transit-wayfinding {
        max-width: 1500px;
        padding: 100px 20px 0px 20px;
        display: block;
    }
    .transit-wayfinding--text {
        width: 100%;
        margin-top: 50px;
    }
    .transit-wayfinding--text h2 {
        line-height: 1.4;
    }
    .transit-wayfinding--text h2,
    .transit-wayfinding--text p {
        padding-right: 0px;
    }

    
    
    
    
    

}


@media (max-width: 576px) {
    /* ------------ */
    /*  Overview — AURA for Public Tansportation  */
    /* ------------ */
    
    .what-is-aura {
        display: flex;
        flex-direction: column-reverse;
    }
    .aura-transportation-text {
        width: 100%;
        padding-right: 20px;
    }
    .aura-transportation-image {
        width: 100%;
        padding-bottom: 50px;
    }
    /* ------------ */
    /*  Hands-Free Fare Collection (Be-In/Be-Out)  */
    /* ------------ */
    .bein-beout-list {
        display: block;
        text-align: left;
        margin-left: 0;
    }
    .bein-beout-list li {
        width: auto;
        margin: 0;
    }
    .bein-beout-content h5 {
        text-align: left;
        padding-top: 30px;
    }
    .bein-beout-content h2 {
        text-align: left;
        padding-bottom: 50px;
    }
    .bein-beout-assets {
        padding-inline: 0;
    }
    .bein-beout {
        text-align: left;
    }
    .bein-beout .section-heading {
        padding-bottom: 20px;
    }
    .bein-beout {
        padding-top: 40px;
    }
    .bein-beout-content h2 {
        padding-bottom: 40px;
    }
    
    /*----------------*/
    /*  Grey Card Containers*/
    /*----------------*/
    
    .card-grid {
        grid-template-columns: 1fr;
        /* grid-template-rows will automatically be auto */
    }
    /* Reset all items to auto-placement */
    .card-item-1,
    .card-item-2 {
        grid-column: auto;
        grid-row: auto;
        margin-right: 0; /* Remove side margins in mobile */
        margin-bottom: 25px; /* Keep consistent spacing */
        padding: 30px; /* Adjust padding if needed */
    }
    .card-item-3 {
        grid-column: auto;
        grid-row: auto;
        margin-right: 0;
        padding: 30px 30px 0px 30px; 
    }
    
    /* ------------ */
    /*  Communication — Context-Aware Messaging (Offline-Capable)  */
    /* ------------ */
    .offline-capable {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px
    }
    .offline-capable-text {
        width: 100%;
    }
    .offline-capable-image-desktop {
        width: 100%;
    }
    .offline-capable-image-desktop {
        display: none;
    }
    .offline-capable-image-mobile {
        display: none;
        width: 100%
    }



    /*----------------*/
    /* Analytics - Know Where Every Passenger Goes*/
    /*----------------*/
    .analytic-content {
        display: flex;
        flex-direction: column;
        column-gap: 70px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    .analytic-text {
        width: 100%;
        margin-inline: 0px;
        text-align: left;
    }
    .analytic-text h2 {
        text-align: left;
        line-height: 1.4;
        width: 100%;
        padding-bottom: 20px;
    }
    .analytic-text p {
        padding-top: 0px;
    }
    .analytic-image {
        width: 100%;
    }
    .analytic-text img {
        display: block;
        width: 100%;
        padding-bottom: 0px;
    }
    .button-small-color-link {
        background-color: transparent;
        color: var(--color-underline-cta);
        font-weight: 700;
        padding-inline: 0px;
        text-align: center;
        margin-top: 20px;
    }
    


    /* ------------ */
    /* Benefits - Improve Rider Experiences */
    /* ------------ */
    .transit-benefits-background {
        max-width: 1500px;
        padding: 60px 20px 0px;
        text-align: center;
        margin: 0 auto;
    }
    .transit-benefits-section h5, 
    .transit-benefits-section h2 {
        text-align: center;
    }
    .transit-benefits-section h2 {
        padding-bottom: 25px;
    }
    .transit-wayfinding--table-desktop {
        display: none;
    }
    .transit-wayfinding--table-mobile {
        display: block;
        width: 100%;
        padding-top: 10px;
    }
    td {
        text-align: center;
        font-size: .8rem;
        width: 35%;
    }
    
    /* ------------ */
    /*  Navigation - Validation  */
    /* --------------*/ 
    .nav-val-assets {
        display: flex;
        flex-direction: column;
        gap: 60px;
        width: 100%;
    }
    .nav-val-asset-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        margin-inline: 0;
        padding: 0px;
    }
    
    .nav-val-asset-box img {
        width: 100%;
        height: auto; /* let the natural aspect ratio breathe */
        object-fit: cover;
    }
    .nav-val-asset-box h3 {
        font-family: "Inter", sans-serif;
        font-weight: 700;
        padding-block: 15px;
        text-align: left;
        margin-left: 0;
    }
    .nav-val-asset-box p {
        margin: auto;
        text-align: left;
        margin-left: 0;
    }
    /* ------------ */
    /*  Start Building Today  */
    /* ------------ */

    .start-today-section {
      height: 670px;
      padding-inline: 20px;
      margin-bottom: 60px;
    }
    .get-started {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 0px;
    }
    .get-started-text {
        width: 100%;
        padding-top: 25px;
        text-align: center;
    }
    .get-started-text img {
        margin-inline: auto;
        padding-block: 0 25px;
        min-width: 180px;
        max-width: 200px;
    }
    .get-started-image {
        width: 80%;
    }
    .started-icon-images-desktop {
      display: none;
    }
    .started-icon-images-mobile {
      display: block;
      text-align: center;
    }
    .started-inline-btns-desktop {
        display: none;
    }
    .started-inline-btns-mobile {
        display: block;
        text-align: center;
    }
    .started-inline-btns-mobile a {
        margin-top: 0px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .transparent-cta-button {
        padding-top: 10px;
        margin-inline: auto;
    }
   
    
}

