.real-estate-single__inc-rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    @media (min-width: 1200px) {
        flex-direction: row;
        gap: 24px;
    }

    .real-estate-single__inc-col {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;

        @media (min-width: 1200px) {
            width: calc(100% / 3 - 12px);
        }
    }

    .real-estate-single__inc-item {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-top: 0;
        gap: 10px;

        p {
            text-align: left;
        }
    }

    .real-estate-single__inc-item_ico {
        width: 13px;
        height: 13px;
        display: flex;
        align-items: center;
        justify-content: center;

        img {
            width: 100%;
            height: auto;
            aspect-ratio: 1;
        }
    }
}

.hidden-link {

    a {
        font-weight: 400;
        text-decoration: underline;
    }

    a:hover {
        color: #065699;
        text-decoration: none;
    }
}