.new-listing-banner {
    .img {
        position: relative;
        height: 436px;
        width: 100%;

        @media screen and (max-width:767px) {
            height: 516px;
        }

        &:before {
            content: "";
            background-color: rgba(0, 0, 0, 0.29);
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom;
        }

        h2 {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            margin: auto;
            height: 48px;
            width: 228px;
            font-size: 32px;
            font-weight: 700;
            font-family: $font-family-sora;
            color: $color-text-white;
        }
    }
}

.new-listing {
    padding: 80px 0;

    @media screen and (max-width:768px) {
        padding: 56px 0;
    }
}

.listing-wrapper {
    margin-top: 74px;

    @media screen and (max-width:767px) {
        margin-top: 50px;
    }

    .listing-flex {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(141, 160, 185, 0.3);
        padding-bottom: 32px;
        margin-bottom: 32px;

        @media screen and (max-width:767px) {
            flex-direction: column;
            align-items: flex-start;
            padding-bottom: 40px;
            margin-bottom: 40px;
        }

        .title {
            h3 {
                font-family: $font-family-sora;
                font-weight: 600;
                color: $color-secondary;
                margin-bottom: 8px;

                @media screen and (max-width:768px) {
                    font-size: 18px;
                    margin-bottom: 16px;
                }
            }

            .tag {
                font-size: 16px;
                font-weight: 500;
                color: $color-dark;

                @media screen and (max-width:767px) {
                    margin-bottom: 16px;
                }
            }
        }
    }

    .view-more-wrap {
        span {
            margin-top: 32px;

            @media screen and (max-width:768px) {
                margin-top: 40px;
            }
        }
    }
}