.djrnvpcc-wrapper {

    .djrnvpcc-section {
        margin: 1em 0;
        background-color: white;
        padding: 0.9em 1em 1em;
        box-shadow: 0 0 4px rgba(200, 200, 200, 0.25);
    }

    .djrnvpcc-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.5em;

        .djrnvpcc-title {
            margin: 0;
        }
    }

    .djrnvpcc-button-group {
        display: flex;
        justify-content: flex-end;
        gap: 0.5em;

        .btn-left,
        .btn-right {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            width: 2rem;
            height: 2rem;
            background: rgba(32, 32, 32, 0.75);
            border: none;
            color: white;
            cursor: pointer;

            &:hover,
            &:hover {
                background: rgba(16, 16, 16, 0.9);
            }
        }
    }


    .row {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 16px;
        overflow-x: scroll;
    }

    .item {
        background-size: cover;
        position: relative;
        overflow: hidden;
        flex: 0 0 200px;
        height: 200px;
        box-shadow: 0 0 4px rgba(50, 50, 50, 0.25);

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(45, 45, 45, 0.6);
            pointer-events: none;
        }

        .item-title {
            display: block;
            position: relative;
            top: 50%;
            transform: translateY(calc(-50%));
            text-align: center;
            z-index: 1;
        }

        a {
            font-size: 24px;
            color: white;
            text-shadow: 0px 0px 1px grey;
            text-decoration: none;
        }

        @media (min-width: 921px) {
            flex: 0 0 300px;
            height: 300px;
        }
    }

}