.common-estate-card__image {
    width: 100%;
    aspect-ratio: 380 / 284;
    border-radius: 4px;
}

@media screen and (max-width: 1024px) {
    .common-estate-card__image {
        aspect-ratio: 327 / 244.39;
    }
}

.common-estate-card__image-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.common-estate-card__labels {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    width: 100%;
}

.common-estate-card__tags {
    display: flex;
    column-gap: 8px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.7px;
    line-height: 1.5;
    color: #ffffff;
}

@media screen and (max-width: 1024px) {
    .common-estate-card__tags {
        column-gap: 1.05px;
        font-size: 12px;
        letter-spacing: 0.6px;
    }
}

.common-estate-card__tag {
    border-radius: 4px;
    display: block;
    padding: 8px;
}

.common-estate-card__tag--green {
    background-color: #2B9B7D;
}

.common-estate-card__tag--red {
    background-color: #E85959;
}

.common-estate-card__more {
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 20px 0px 0px 0px;
    background-color: #FFFFFF;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.8px;
    padding: 12px 24px 10px 14px;
    color: #2B9B7D;
}

@media screen and (max-width: 1024px) {
    .common-estate-card__more {
        display: flex;
        column-gap: 6px;
        align-items: center;
        padding: 12px 10px 10px 14px;
    }

    .common-estate-card__more::after {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #2B9B7D;
    }
}

.common-estate-card__title {
    font-weight: bold;
    font-size: 24px;
    letter-spacing: 2.4px;
    line-height: calc(36 / 24);
    margin-bottom: 8px;
}

@media screen and (max-width: 1024px) {
    .common-estate-card__title {
        font-size: 20px;
        letter-spacing: 2px;
        line-height: calc(36 / 20);
        margin-bottom: 12px;
    }
}

.common-estate-card__price-block {
    display: flex;
    column-gap: 16px;
    align-items: baseline;
    margin-bottom: 14px;
}

@media screen and (max-width: 1024px) {

    .common-estate-card__price-block {
        column-gap: 5.79px;
        margin-bottom: 10px;
    }
}

.common-estate-card__price {
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 4px;
    line-height: calc(32 / 40);
    color: #2B9B7D;
}

.common-estate-card__price-unit {
    font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
    color: #2B9B7D;
}

@media screen and (max-width: 1024px) {
    .common-estate-card__price-unit {
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: 2;
        color: #2B9B7D;
    }

    .common-estate-card__spec {
        font-size: 16px;
        letter-spacing: 1.6px;
        line-height: calc(14 / 16);
    }
}

.common-estate-card__hash-tags {
    font-size: 14px;
    letter-spacing: 1.4px;
    line-height: calc(32 / 14);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media screen and (max-width: 1024px) {
    .common-estate-card__hash-tags {
        line-height: calc(23 / 14);
    }
}