.common-spot-card__image {
    width: 100%;
    aspect-ratio: 380 / 284;
    border-radius: 4px;
}

@media screen and (max-width: 1024px) {
    .common-spot-card__image {
        aspect-ratio: 308.53 / 205.69;
    }
}

.common-spot-card__image-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.common-spot-card__labels {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    width: 100%;
}

.common-spot-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-spot-card__tags {
        column-gap: 1.05px;
        font-size: 12px;
        letter-spacing: 0.6px;
    }
}

.common-spot-card__tag {
    border-radius: 4px;
    display: block;
    padding: 8px;
}

.common-spot-card__tag--orange {
    background-color: #EB8E22;
}

.common-spot-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-spot-card__more {
        display: flex;
        column-gap: 6px;
        align-items: center;
        padding: 12px 10px 10px 14px;
    }

    .common-spot-card__more::after {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #2B9B7D;

    }
}

.common-spot-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-spot-card__title {
        margin-bottom: 12px;
        font-size: 18px;
        letter-spacing: 1.8px;
        line-height: calc(32 / 18);
    }
}

.common-spot-card__spec {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: 2;
    display: flex;
    column-gap: 10.24px;
    align-items: flex-start;
}

.common-spot-card__spec svg {
    width: 24.75px;
    color: #EB8E22;
}

@media screen and (max-width: 1024px) {
    .common-spot-card__spec {
        font-size: 15px;
        letter-spacing: 1.5px;
        line-height: calc(30 / 15);
    }
}

.common-spot-card__body {
    margin-bottom: 16px;
}

@media screen and (max-width: 1024px) {
    .common-spot-card__body {
        margin-bottom: 13px;
    }
}

.common-spot-card__comment {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1.6px;
    line-height: calc(24 / 16);
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

@media screen and (max-width: 1024px) {
    .common-spot-card__comment {
        text-overflow: clip;
        -webkit-line-clamp: 2;
    }
}