ctg-block {

    flex-wrap: wrap;

    justify-content: space-between;

    width: 90%;

    margin: 40px auto;

    height: 300px;
}

ctg-block ctg-block-parts {
    width: 75%;
}

ctg-block ctg-block-parts:nth-of-type(2) {
    width: 25%;
}

ctg-block ctg-block-parts ctg-info {
    cursor: pointer;
    position: relative;
}

ctg-block ctg-info ctg-img {
    width: 60%;
    height: 100%;
}

ctg-block ctg-info ctg-img img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

ctg-block ctg-info ctg-text {
    width: 40%;
    flex-direction: column;
    padding: 0 4%;
}

ctg-block ctg-info ctg-title {
    padding: 4px 0 16px 8px;
    font-size: 130%;
    font-weight: bold;
}

ctg-block ctg-info ctg-description {
    color: var(--scheme-8);
}

ctg-block ctg-advertisement {
    width: 100%;
    padding: 5%;
}

ctg-block ctg-advertisement a {
    width: 100%;
    background-color: #444765;
    padding: 12px;
    border-radius: 12px;
}

ctg-block ctg-advertisement img {
    width: 100%;
}

ctg-block ctg-posts {
    width: 100%;
}

ctg-block ctg-hover-btn {
    position: absolute;
    display: flex;
    transform: translate(-50%, 0);
    width: 50px;
    height: 16px;
    background-color: red;
    right: 50%;
    bottom: 5%;
    clip-path: polygon(0 0, 10% 0, 48% 90%, 52% 90%, 80% 0, 100% 0, 100% 5%, 53% 100%, 47% 100%, 0 5%, 0 0);
}