.edit-section {
    width: 1340px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 100px 0 50px; 
}

.edit-title {
    margin-top: 20px;
}
.edit-title h6 {
    margin-top: 10px;
}

.edit-desc {
    margin-top: 30px;
}

.edit-desc-sub-title {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
.edit-desc-title {
    margin-bottom: 15px;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.edit-desc-price {
    font-family: 'Neo_Heavy';
    font-size: 16px;
}
.edit-desc-price span {
    font-size: 14px;
}

.edit-desc-btn {
    margin-top: 50px;
}
.edit-desc-btn a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 100px;
    border: 1px solid #000;
    font-size: 16px;
}

.edit-content-item-img {
    width: 100%;
}
.edit-content-item-img img {
    width: 100%;
    object-fit: cover;
}

.edit-content-item-sub-title {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
.edit-content-item-title {
    margin-bottom: 15px;
    font-size: 15px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
}
.edit-content-item-price {
    font-family: 'Neo_Heavy';
    font-size: 16px;
}
.edit-content-item-price span {
    font-size: 14px;
}

.edit-content-item-desc.mo {
    display: none;
}


@media (max-width: 768px) {
    .edit-section {
        width: 100%;
        padding: 0 15px;
        flex-direction: column;
    }
    .edit-title {
        margin-bottom: 15px;
    }
    .edit-content-item-desc.mo {
        display: flex;
        justify-content: space-between;
        margin-top: 1rem;
    }
    .edit-content-item-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
        border: 1px solid #000;
        font-size: 12px;
    }
    .edit-desc {
        display: none;
    }
}