.grid-item {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 20px;
}

.spacer {
    height: 50px;
}

.bottom-nav-links {
    margin-bottom: 0px !important;
}

@media (max-width: 1100px) {
    .spacer {
        height: 35px;
    }
}

@media (max-width: 900px) {
    .spacer {
        height: 35px;
    }
    .ls-contact-title-container img {
        padding-bottom: 30px;
    }
    .contact-title {
        position: relative;
        display: inline-block;
        width: 100%;
    }
    .contact-title::before {
        content: '';
        position: absolute;
        width: 48px;
        height: 100%;
        background: url('../assets/texture/rhombus.svg');
        background-repeat: no-repeat;
        background-size: contain;
    }
    .contact-title::after {
        content: '';
        position: absolute;
        width: 48px;
        height: 100%;
        background: url('../assets/texture/rhombus.svg');
        background-repeat: no-repeat;
        background-size: contain;
    }
    .contact-title::before {
        left: calc(-30px - 24px);
        top: 10px;
        /* Moves the decoration to the left outside the main content. Adjust the value as necessary */
    }
    .contact-title::after {
        right: calc(-30px - 24px);
        top: 10px;
        /* Moves the decoration to the right outside the main content. Adjust the value as necessary */
    }
}