@media (max-width: 1199px) {

    .splash {
        cursor: pointer;
        background-color: #000;
        background-image:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.1) 50%,
                rgba(0, 0, 0, 0.7) 60%,
                rgba(0, 0, 0, 1.0) 100%),
            var(--background-image);
        --background-image: url('/img/splash/default.jpg');
        background-size: auto 100%;
        background-position: center center;
        background-repeat: no-repeat;
        height: 480px;
        width: 100%;
        position: relative;
        color: #fff;
        transition: filter 0.6s;
        filter: brightness(1);
    }

    .splash.reduced {
        height: 80px;
    }

    .splash .badge {
        position: absolute;
        top: 315px;
        left: 20px;
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    .splash .badge .icon {
        width: 60px;
        height: 60px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 12px;
        border: solid 1px #fff;
    }

    .splash .title {
        position: absolute;
        top: 387px;
        left: 20px;
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        width: calc(100% - 40px);
    }

    .splash .title .text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: fit-content;
        max-width: calc(100% - 40px);
    }

    .splash .author {
        position: absolute;
        top: 420px;
        left: 20px;
        font-size: 16px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: fit-content;
        max-width: calc(100% - 40px);
    }

    .splash .time {
        position: absolute;
        top: 315px;
        left: 120px;
        width: 150px;
    }

    .splash .price {
        position: absolute;
        top: 315px;
        left: 280px;
        width: 100px;
    }

    .splash .label {
        font-size: 12px;
        font-weight: 400;
        margin-bottom: 5px;
        color: rgba(255, 255, 255, 0.7);
    }

    .splash .value {
        font-size: 16px;
        font-weight: 400;

    }

    .splash .value.now {
        margin-top: 4px;
        margin-left: -4px;
        font-size: 13px;
        font-weight: 400;
        color: rgb(136, 255, 180);
        background-color: rgba(118, 238, 161, 0.4);
        padding: 2px 14px;
        border-radius: 4px;
        width: fit-content;
        display: flex;
        flex-wrap: wrap;
    }

}



@media (min-width: 1200px) and (max-width: 1399px) {

    /* larger screen 1200-1399 */

    .splash {
        cursor: pointer;
        background-color: #000;
        background-image:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.1) 70%,
                rgba(0, 0, 0, 0.7) 80%,
                rgba(0, 0, 0, 1.0) 100%),
            var(--background-image);
        --background-image: url('/img/splash/default.jpg');
        background-size: auto 100%;
        background-position: center center;
        background-repeat: no-repeat;
        height: 480px;
        width: 100%;
        position: relative;
        color: #fff;
        transition: filter 0.6s;
        filter: brightness(1);
    }

    .splash.reduced {
        height: 100px;
    }

    .splash .badge {
        position: absolute;
        top: 380px;
        left: 40px;
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    .splash .badge .icon {
        width: 80px;
        height: 80px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 16px;
        border: solid 1px #fff;
    }

    .splash .title {
        position: absolute;
        top: 387px;
        left: 140px;
        font-size: 28px;
        font-weight: 600;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    .splash .title .text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: fit-content;
        max-width: calc(600px - 40px);
    }

    .splash .author {
        position: absolute;
        top: 427px;
        left: 140px;
        font-size: 18px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 1000px;
    }

    .splash .time {
        position: absolute;
        top: 400px;
        left: 900px;
        width: 150px;
    }

    .splash .price {
        position: absolute;
        top: 400px;
        left: 1050px;
        width: 150px;
    }

    .splash .label {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 5px;
        color: rgba(255, 255, 255, 0.7);
    }

    .splash .value {
        font-size: 22px;
        font-weight: 400;
    }

    .splash .value.now {
        margin-top: 4px;
        margin-left: -4px;
        font-size: 13px;
        font-weight: 400;
        color: rgb(136, 255, 180);
        background-color: rgba(118, 238, 161, 0.4);
        padding: 2px 14px;
        border-radius: 4px;
        width: fit-content;
        display: flex;
        flex-wrap: wrap;
    }


}



@media (min-width: 1400px) {

    /* larger screen 1400+ */

    .splash {
        cursor: pointer;
        background-color: #000;
        background-image:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.1) 70%,
                rgba(0, 0, 0, 0.7) 80%,
                rgba(0, 0, 0, 1.0) 100%),
            var(--background-image);
        --background-image: url('/img/splash/default.jpg');
        background-size: auto 100%;
        background-position: center center;
        background-repeat: no-repeat;
        height: 480px;
        width: 100%;
        position: relative;
        color: #fff;
        max-width: 2200px;
        margin: 0 auto;
        transition: filter 0.6s;
        filter: brightness(1);
    }

    .splash.reduced {
        height: 100px;
    }


    .splash .badge {
        position: absolute;
        top: 380px;
        left: 40px;
        font-size: 24px;
        font-weight: 600;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    .splash .badge .icon {
        width: 80px;
        height: 80px;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        border-radius: 16px;
        border: solid 1px #fff;
    }

    .splash .title {
        position: absolute;
        top: 387px;
        left: 140px;
        font-size: 28px;
        font-weight: 600;
        color: #fff;
        display: flex;
        flex-wrap: wrap;
    }

    .splash .title .text {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: fit-content;
        max-width: calc(800px - 40px);
    }

    .splash .author {
        position: absolute;
        top: 427px;
        left: 140px;
        font-size: 18px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 800px;
    }

    .splash .time {
        position: absolute;
        top: 400px;
        right: 180px;
        width: 150px;
    }

    .splash .price {
        position: absolute;
        top: 400px;
        right: 30px;
        width: 150px;
    }

    .splash .label {
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 5px;
        color: rgba(255, 255, 255, 0.7);
    }

    .splash .value {
        font-size: 22px;
        font-weight: 400;
    }

    .splash .value.now {
        margin-top: 4px;
        margin-left: -4px;
        font-size: 13px;
        font-weight: 400;
        color: rgb(136, 255, 180);
        background-color: rgba(118, 238, 161, 0.4);
        padding: 2px 14px;
        border-radius: 4px;
        width: fit-content;
        display: flex;
        flex-wrap: wrap;
    }


}


.splash .title .icon {
    margin-top: 2px;
}

.splash .title .icon img {
    height: 24px;
    margin-left: 10px;
}

.splash .author span {
    color: rgba(255, 255, 255, 0.4);
}


.splash .value.now .icon {
    margin-top: 2px;
}

.splash .value.now .icon img {
    width: 20px;
}

.splash .value.now .text {
    margin-top: 5px;
    margin-left: 2px;
}