.home-image {
    width: 100%;
    padding: clamp(20px, 4vw, 60px);
    background: #e8eee9;
}

.home-image img {
    display: block;
    width: 100%;
    height: clamp(520px, 72vh, 900px);
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
    box-shadow: 0 18px 55px #17231e26;
}

.private {
    grid-template-columns: repeat(3, 1fr);
}

.private a:nth-child(3n) {
    border-right: 0;
}

.private a:nth-child(n+4) {
    border-top: 1px solid var(--line);
}

@media (max-width: 800px) {
    .home-image {
        padding: 16px;
    }

    .home-image img {
        height: calc(100vh - 104px);
        min-height: 480px;
    }

    .private {
        grid-template-columns: 1fr;
    }

    .private a {
        border-right: 0;
    }

    .private a:nth-child(n+4) {
        border-top: 0;
    }
}
