.our-hubs {
    padding: 64px 0;
    position: relative;
    z-index: 10;
}

.our-hubs .title {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 400;
    width: 65%;
}

.our-hubs .title em {
    font-family: 'Instrement Serif', serif;
}

.our-hubs .postcards {
    margin-top: 40px;
}

.our-hubs .postcards .postcard {
    position: sticky;
    max-width: 894px;
    margin: 0 auto;
}

.our-hubs .postcards .postcard:nth-child(1) {
    top: 80px;
}

.our-hubs .postcards .postcard:nth-child(2) {
    top: 180px;
}

.our-hubs .postcards .postcard:nth-child(3) {
    top: 310px;
}

.our-hubs .postcards .postcard:nth-child(4) {
    top: 410px;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    z-index: -1;
}

.background-image img {
    position: sticky;
    top: 0;
}

@media (max-width: 480px) {
    .our-hubs {
        padding: 24px 0;
    }

    .our-hubs .title {
        width: 100%;
        font-size: 24px;
    }

    .our-hubs .postcards {
        margin-top: 24px;
    }

    .background-image img {
        top: 100px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 110px;
    }
}