#cards {
    margin-top: 64px;
    margin-left: 198px;
    margin-right: 140px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
}

.card {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 0;
    background-color: var(--color-light-grey);
    border-radius: 20px;
    box-shadow: 0 8px 6px rgba(0, 0, 0, .15), 0 4px 2px rgba(0, 0, 0, .3);
}

.card .text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card .text .heading {
    font-family: "Roboto";
    font-weight: 500;
    font-size: 20px;
    color: var(--color-near-black);
    margin: 0;
}

.card .text .description {
    font-family: "Roboto";
    font-weight: 400;
    font-size: 16px;
    color: var(--color-near-black);
    margin: 0;
    line-height: 1.36;
}

.card .tags {
    margin-top: auto;
    font-family: "Montserrat";
    font-weight: 400;
    font-size: 14px;
    color: var(--color-near-black);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.card .actions {
    display: flex;
    flex-direction: column;
    gap: 66px;
}

.card img {
    width: 217px;
    height: 156px;
    border-radius: 10px;
    object-fit: cover;
}

.card .actions div {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

.card .actions .button {
    height: 40px;
    padding: 0px 20px;
    box-shadow: 0 16px 8px 0 rgba(12, 12, 13, .1), 0 4px 2px 0 rgba(12, 12, 13, .05);
    font-weight: 400;
}

#map img.map {
    width: 100%;
}