.property {
    padding: 64px 32px;
    padding-top: 150px;
    max-width: 1200px;
    margin: 0 auto;
}

.property__grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 32px;
}

.property__gallery {
    display: flex;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
}

.property__image:nth-child(1) {
    width: 100%;
}

.property__image {
    width: 25%;
    padding: 8px;
    box-sizing: border-box;
    cursor: pointer;
}

.property__specs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.property__spec {
    background-color: #4b00e1;
    color: white;
    padding: 4px 16px;
    margin: 8px;
    border-radius: 4px;
}

.property__features {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.property__feature {
    display: flex;
    align-items: center;
    margin: 8px 16px;
}
.property__icon {
    width: 16px;
    margin-right: 8px;
}

.property__map {
    width: 100%;
    height: 50vh;
    z-index: 0;
}

.video {
    position: relative;
    width: 100%;
    margin: 16px 0;
}
.video::after {
    content: "";
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}
.video__frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 1000px) {
    .property__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}