.system {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.system::before {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1098" height="2467" viewBox="0 0 1098 2467" fill="none"><path d="M2275.42 -22.7568L0.353701 2252.31M559.54 868.632L1644.6 1953.69M2489.67 191.497L214.607 2466.56" stroke="%234CB480"/></svg>');
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(-50%);
}

.system .container {
    position: relative;
    z-index: 5;
}

.system_top {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.system_top_item {
    flex-basis: auto;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--black);
    border: 1px solid var(--color);
    font-weight: 500;
    cursor: pointer;
    transition: .3s all;
}

.system_top_item.active,
.system_top_item:hover {
    background: var(--color);
    color: var(--white);
}

.system_posts {
    padding-top: var(--spacing-lg);
}

.system_posts_item {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.system_posts_item.hide {
    opacity: 0;
}

.system_post_item_thumb {
    aspect-ratio: 5 / 4;
    position: relative;
    flex-basis: 100%;

    @media (min-width: 760px) {
        flex-basis: calc(32% - var(--spacing-lg) / 2);
    }
}

.system_post_item_thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color);
    transform: translate(calc(var(--spacing-sm) * -1), calc(var(--spacing-sm) * 1));
}

.system_post_item_content {
    flex-basis: 100%;

    @media (min-width: 760px) {
        flex-basis: calc(68% - var(--spacing-lg) / 2);
    }
}

.system_post_item_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.system_post_item>a {
    font-size: var(--font-size-h6);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    display: block;
    text-align: center;
}

.system_post_item_title {
    font-size: var(--font-size-h5) !important;
    line-height: calc(var(--font-size-h5) * 1.2) !important;
    margin-bottom: var(--spacing-lg) !important;
}

.system_post_item_title::after {
    display: none;
}

.system_post_item_short {
    padding-bottom: var(--spacing-lg);
}

.system_post_item_short p {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}