.new-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.new-slot {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    padding: 8px;
    background-color: #242526;
    border-radius: 10px;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.25);
}

.new-slot__label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: absolute;
    top: 8px;
    left: 8px;
    height: 24px;
    padding: 0 8px;
    font-size: 14px;
    line-height: 16px;
    font-weight: bold;
    color: #000000;
    background-color: #54FF1D;
    border-radius: 6px;
    z-index: 1;
}

.new-slot__label--skoro {
    color: #ffffff;
    background-color: #FF7300;
}

.new-slot__label--skoro:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none'%3E%3Cpath fill='%23fff' d='M10 1.333A.667.667 0 0 0 8.821.907l-6.666 8A.667.667 0 0 0 2.667 10H6v4.667a.667.667 0 0 0 1.179.427l6.666-8A.667.667 0 0 0 13.333 6H10V1.333Z'/%3E%3C/svg%3E");
}

.new-slot__poster {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: block;
    padding-top: 66.5%;
    height: 0;
}

.new-slot__poster > img {
    display: block;
    position: absolute;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    border-radius: 10px;
    transform: translate(-50%, -50%);
}

.new-slot__title {
    font-size: 16px;
    line-height: 22px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
}

.new-slot__title:hover {
    text-decoration: underline;
}

.new-slot__date {
    margin-top: auto;
    font-size: 15px;
    line-height: 1;
    font-weight: 400;
    text-align: center;
    color: #818181;
}

.new-slot__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    margin-top: auto;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    color: #28E04B;
    border: 1px solid #28E04B;
    border-radius: 4px;
}

.new-slot__button:hover {
    opacity: 0.8;
}

.new-slots-blocks {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 15px;
}

.new-slots-block {
    display: flex;
    align-items: center;
    position: relative;
    padding: 15px;
    text-decoration: none;
    background: radial-gradient(73.24% 100% at 100% 50%, #00CEFD 0%, rgba(21, 49, 69, 0.50) 100%), #2B0B92;
    border-radius: 5px;
    overflow: hidden;
}

.new-slots-block--auth {
    background: linear-gradient(0deg, #7A60C6 0%, #7A60C6 100%), linear-gradient(180deg, #0C9826 0%, #016C15 100%);
}

.new-slots-block:hover {
    opacity: 0.9;
}

.new-slots-block__info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 210px;
}

.new-slots-block__text-row {
    font-size: 16px;
    line-height: 18px;
    font-weight: bold;
    color: #ffffff;
}

.new-slots-block__text-row--small {
    font-size: 14px;
    line-height: 20px;
    font-weight: normal;
}

.new-slots-block__text-row--medium {
    font-size: 17px;
    line-height: 20px;
}

.new-slots-block__text-row--big {
    font-size: 20px;
    line-height: 28px;
    text-transform: uppercase;
}

.new-slots-block__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    width: min-content;
    padding: 0 20px;
    font-size: 15px;
    line-height: 22px;
    font-weight: bold;
    color: #000000;
    background-color: #FFC530;
    border-radius: 5px;
}

.new-slots-block__image {
    position: absolute;
    right: 0;
    width: auto;
    height: 100%;
}

.new-slots-block--auth .new-slots-block__image {
    right: -40px;
}

/* Responsive */

@media (min-width: 576px) {

    .new-slots-block__info {
        max-width: 400px;
    }

    .new-slots-block--auth .new-slots-block__image {
        right: 0;
    }
}

@media (min-width: 768px) {

    .new-slots {
        grid-template-columns: repeat(4, 1fr);
    }

    .new-slots--main,
    .new-slots--profile {
        grid-template-columns: repeat(3, 1fr);
    }

    .new-slots-blocks {
        flex-direction: row;
    }

    .new-slots-block {
        width: 100%;
    }

    .new-slots-block__info {
        max-width: 240px;
    }

    .new-slots-block--auth .new-slots-block__image {
        right: -20px;
    }
}

@media (min-width: 1025px) {

    .new-slots-blocks {
        flex-direction: column;
    }
}

@media (min-width: 1280px) {

    .new-slots-blocks {
        flex-direction: row;
    }
}