/* ── Mobile first: base styles (≤ 479px) ── */

.fleet-show-more {
    display: flex;
    margin: 40px auto 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px;
    gap: 10px;
    width: 36px;
    height: 36px;
    background: #040404;
    border-radius: 28px;
    cursor: pointer;
}
.fleet-show-more svg {
    width: 20px;
    height: 20px;
}

.fleet-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    row-gap: 20px;
    width: 100%;
    margin: 0 auto;
}

.fleet-gallery-item {
    display: none;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.fleet-gallery-item:nth-child(-n+4) {
    display: flex;
}
.fleet-gallery.expanded .fleet-gallery-item {
    display: flex;
}

.fleet-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.fleet-gallery-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fleet-gallery-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
    text-transform: capitalize;
    color: #040404;
}

.fleet-gallery-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 120%;
    color: #4F4F4F;
}

/* ── Tablet: ≥ 768px ── */
@media (min-width: 768px) {
    .fleet-gallery {
        gap: 20px;
        row-gap: 18px;
    }

    .fleet-gallery-item {
        width: 342px;
        gap: 16px;
        display: flex;
    }

    .fleet-show-more {
        display: none;
    }
}

/* ── Desktop: ≥ 1025px ── */
@media (min-width: 1025px) {
    .fleet-gallery {
        gap: 64px;
        row-gap: 69px;
        max-width: 1312px;
    }

    .fleet-gallery-item {
        width: 624px;
        gap: 12px;
    }

    .fleet-gallery-name {
        font-size: 20px;
        line-height: 100%;
    }

    .fleet-gallery-description {
        font-size: 14px;
        line-height: 140%;
    }
}
