.header.container {
    min-height: unset;
    height: 124px;
}
.content {
    background-image: none;
    min-height: 87vh;
    display: flex;
    justify-content: flex-start;
}

.num > a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    letter-spacing: -0.1px;
    cursor: pointer;
    transition: 0.15s;
    text-decoration: none;
    padding: 10px;
    outline: 5px solid hsla(0, 0%, 0%, 0);
    border-radius: 6px;
    border: 1px solid #272727;
    background: #1C1C1C;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    color: #9d9e9f;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;

    &:hover {
        color: white;
        border: 1px solid #BF0AFF;
        background: rgba(191, 10, 255, 0.19);
        box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    }
}

td.number_id {
    color: #858C95;
}

.nums {
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
}
.num.active > a {
    color: white;
    border: 1px solid #BF0AFF;
    background: rgba(191, 10, 255, 0.19);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    pointer-events: none;
}

num {
    color: #B7BBCC;

    font-size: 16px;
    
    font-weight: 700;
    line-height: 132.5%;
}

a.object-news-main {
    text-decoration: none;
}

.list-pages {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 50px;
}

h1.rules-h1 {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
}

p.rules-p {
    color: #FBFBFB;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    opacity: 0.84;
}

.list-news-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 21px;
}

button.custom-button-3 {
    min-width: 40px;
    min-height: 40px;
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #272727;
    background: #1C1E20;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    color: #9d9e9f;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
}

button.custom-button-3:hover,  button.custom-button-3.active{
    border: 1px solid #BF0AFF;
    background: rgba(191, 10, 255, 0.19);
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    color: #BF0AFF;
}
button.custom-button-3:active{
    transform: scale(0.9);
}

.pages-number {
    display: flex;
    gap: 12px;
    margin-top: 36px;
}

@media (max-width: 1175px) {
    .list-news-main {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1050px) {
    .list-news-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .list-news-main {
        grid-template-columns: repeat(1, 1fr);
    }
}