.related-places {
    margin-top: 34px;
    grid-row: 4;
    grid-column: 1 / span 3;
}

.report-block {
    grid-row: 5;
    grid-column: 1 / span 3;
    background: #F4F4F4;
    padding: 24px;
    border-radius: 10px;
    margin-top: 24px;
}

.report-block-title {
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
    font-size: 14px;
}

.report-block-button {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999999px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    color: white;
    position: relative;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
}

.related-places-list {
    margin-top: 18px;
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 22px;
    width: 100%;
    justify-content: space-between;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.related-place {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.related-place img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.related-places h3 {
    font-weight: 500;
}

.related-place h4 {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin-top: 10px;
    text-align: left;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.copyright {
    grid-row: 6;
    grid-column: 1 / span 3;
    margin-top: 34px;
    margin-bottom: 34px;
    font-size: 14px;
    color: #000;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .related-places-list {
        grid-template-columns: 1fr 1fr;
    }

    .related-places {
        padding-left: 18px;
        padding-right: 18px;
    }

    .related-place h4 {
        font-size: 16px;
    }

    .report-block {
    }

    .report-block-title {
        font-size: 16px;
    }

    .copyright {
        font-size: 14px !important;
        margin-left: 18px;
        margin-right: 18px;
    }
}