.posis-block .pos-item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}
.posis-block .pos-img {
    display: flex;
    height: auto;
    max-height: 290px;
    width: 100%;
}
.posis-block .pos-img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.posis-block .pos-info {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: var(--bg-primary-main);
    flex-grow: 1;
}
.posis-block .pos-name {
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    margin-bottom: 15px;
}
.posis-block .pos-desc {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    color: var(--text-primary-main);
}
.posis-block .nav {
    width: fit-content;
}

@media (max-width: 996px) {
    .posis-block .pos-info {
        padding: 10px;
    }
    .posis-block .pos-name {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .posis-block .pos-desc {
        font-size: 14px;
    }
}