{## Cards ##}

@media(max-width: 1056px) {
    .office-properties-listing.content-wrapper {
        padding: 0;
    }
}

.office-properties-listing__list {
    display: flex;
    padding: 32px 60px;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 48px;
    flex-wrap: wrap;
}

@media(max-width: 1056px) {
    .office-properties-listing__list {
        padding: 42px 0;
        gap: 16px;
    }

    .office-properties-listing__list #hs_cos_wrapper_card:nth-child(n+7) {
        display: none;
    }
}

.office-properties-card {
    display: flex;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    border-radius: 4px;
    border: 1px solid #D9DEE8;
    background: #FFF;
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.05);
    transition: all 100ms 0s ease;
}

.office-properties-card.scale-animation {
    box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, 0.0);
    transform: scale(1.05);
}

@media(max-width: 1056px) {
    .office-properties-card {
        width: 172px;
    }
}

.office-properties-card__headline {
    display: flex;
    height: 180px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

@media(max-width: 1056px) {
    .office-properties-card__headline {
        height: 130px;
    }
}

.office-properties-card__headline img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    display: block;
    border: solid 0px #fff;
    border-radius: 3px 3px 0 0;
}

@media(max-width: 1056px) {
    .office-properties-card__headline img {
        height: 130px;
    }
}

.office-properties-card h3 {
    margin: 0;
}

.office-properties-card__contents {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

@media(max-width: 1056px) {
    .office-properties-card__contents {
        padding: 12px 8px;
        gap: 4px;
    }
}

@media(max-width: 1056px) {
    .office-properties-card__contents h3 {
        font-size: 20px;
        line-height: 32px;
    }
}

.office-properties-card__tag {
    display: flex;
    padding: 0px 12px;
    align-items: center;
    gap: 7px;
}

@media(max-width: 1056px) {
    .office-properties-card__tag {
        padding: 4px 8px;
        gap: 4px;
    }

    .office-properties-card__tag svg {
        width: 12px;
        height: 16px;
    }
}

.office-properties-card__tag-title {
    display: flex;
    padding-bottom: 3px;
    align-items: center;
    gap: 10px;
}

@media(max-width: 1056px) {
    .office-properties-card__tag-title {
        padding-bottom: 1px;
    }

    .office-properties-card__tag-title span {
        font-size: 14px;
    }
}

.office-properties-card__description {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.office-properties-card__description span {
    flex: 1 0 0;
    font-weight: 300;
    line-height: 28px;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 84px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media(max-width: 1056px) {
    .office-properties-card__description span {
        height: 72px;
        font-size: 14px;
        line-height: 24px;
    }
}